blob: e132c6cfdb3d17480f3e7d0e0a6108036d82bd90 [file] [log] [blame]
#include "shared.rsh"
float floatVal;
double val;
long valLong;
double __attribute__((kernel)) foo(float a) {
return a + val + floatVal;
}
double __attribute__((kernel)) goo(double a) {
return a + valLong;
}