aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/InstSimplify/floating-point-arithmetic.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/InstSimplify/floating-point-arithmetic.ll')
-rw-r--r--test/Transforms/InstSimplify/floating-point-arithmetic.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstSimplify/floating-point-arithmetic.ll b/test/Transforms/InstSimplify/floating-point-arithmetic.ll
index f9c364cade..91ce26324b 100644
--- a/test/Transforms/InstSimplify/floating-point-arithmetic.ll
+++ b/test/Transforms/InstSimplify/floating-point-arithmetic.ll
@@ -14,7 +14,7 @@ define float @fsub_0_0_x(float %a) {
; CHECK: @fsub_x_0
define float @fsub_x_0(float %a) {
%ret = fsub float %a, 0.0
-; CHECK ret float %a
+; CHECK: ret float %a
ret float %ret
}
@@ -22,7 +22,7 @@ define float @fsub_x_0(float %a) {
; CHECK: @fadd_x_n0
define float @fadd_x_n0(float %a) {
%ret = fadd float %a, -0.0
-; CHECK ret float %a
+; CHECK: ret float %a
ret float %ret
}