Home | History | Annotate | Download | only in F_reflection3264_multifile
      1 #pragma version(1)
      2 #pragma rs java_package_name(foo)
      3 
      4 short v;
      5 
      6 short w;
      7 
      8 void f2(int a) { }
      9 
     10 // error: invokable is only present for 32-bit targets
     11 #ifndef __LP64__
     12 void g() { }
     13 #endif
     14 
     15 // error: 'in2' has different types for 32-bit and 64-bit targets
     16 void RS_KERNEL m(int in1, size_t in2) { }
     17