summaryrefslogtreecommitdiff
path: root/test/CodeGenOpenCL
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2012-05-03 16:53:59 +0000
committerDimitry Andric <dim@FreeBSD.org>2012-05-03 16:53:59 +0000
commit6b9a6e390fbb92c40eb9c6ac9e7abbd88dd7a767 (patch)
tree2e51705e103e92c7be1b21e8bd8ffd5b5d0e4d52 /test/CodeGenOpenCL
parentdbe13110f59f48b4dbb7552b3ac2935acdeece7f (diff)
Notes
Diffstat (limited to 'test/CodeGenOpenCL')
-rw-r--r--test/CodeGenOpenCL/fpmath.cl (renamed from test/CodeGenOpenCL/fpaccuracy.cl)6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGenOpenCL/fpaccuracy.cl b/test/CodeGenOpenCL/fpmath.cl
index d27316a799f3..704fcd739ac4 100644
--- a/test/CodeGenOpenCL/fpaccuracy.cl
+++ b/test/CodeGenOpenCL/fpmath.cl
@@ -4,13 +4,13 @@ typedef __attribute__(( ext_vector_type(4) )) float float4;
float spscalardiv(float a, float b) {
// CHECK: @spscalardiv
- // CHECK: fdiv{{.*}}, !fpaccuracy ![[MD:[0-9]+]]
+ // CHECK: fdiv{{.*}}, !fpmath ![[MD:[0-9]+]]
return a / b;
}
float4 spvectordiv(float4 a, float4 b) {
// CHECK: @spvectordiv
- // CHECK: fdiv{{.*}}, !fpaccuracy ![[MD]]
+ // CHECK: fdiv{{.*}}, !fpmath ![[MD]]
return a / b;
}
@@ -18,7 +18,7 @@ float4 spvectordiv(float4 a, float4 b) {
double dpscalardiv(double a, double b) {
// CHECK: @dpscalardiv
- // CHECK-NOT: !fpaccuracy
+ // CHECK-NOT: !fpmath
return a / b;
}