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