Home | History | Annotate | Download | only in P_compute
      1 // RUN: %Slang %s
      2 // RUN: %rs-filecheck-wrapper %s
      3 // CHECK: define void @root(
      4 // CHECK: define void @foo(
      5 // CHECK: define void @.helper_bar(
      6 
      7 #pragma version(1)
      8 #pragma rs java_package_name(compute)
      9 
     10 void root(const int *ain, int *aout, const void *usrData,
     11           uint32_t x, uint32_t y) {
     12 }
     13 
     14 void bar(int i, float f) {
     15 }
     16 
     17 void foo (int *p) {
     18 }
     19