9 lines
250 B
Plaintext
9 lines
250 B
Plaintext
// RUN: not %{ispc} %s --target=host --nowrap > %t 2>&1
|
|
// RUN: FileCheck --input-file=%t %s
|
|
// CHECK: Error:
|
|
// CHECK-NOT: Please file a bug
|
|
struct s {
|
|
double d;
|
|
};
|
|
export uniform double foo(uniform s &x, uniform double y) { return x - y + y; }
|