float_test.rs revision fef0cd45027f235126d4fb62bda5ea9037450d9c
1#include "shared.rsh"
2
3float floatVal;
4double val;
5long valLong;
6
7double __attribute__((kernel)) foo(float a) {
8    return a + val + floatVal;
9}
10
11double __attribute__((kernel)) goo(double a) {
12    return a + valLong;
13}
14
15