diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-04-11 12:41:41 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-04-11 12:41:41 +0000 |
commit | 8e708d30a310011f3bcd999fdb34f23bcd268b7d (patch) | |
tree | 11ed31c0eeb23348842d5c2c44ef7d66f271ee8a /test/Transforms/InstSimplify/floating-point-arithmetic.ll | |
parent | 8f6f47ec75da4298067e6abdce0b4f1e68155bc2 (diff) |
Add missing colons to check lines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstSimplify/floating-point-arithmetic.ll')
-rw-r--r-- | test/Transforms/InstSimplify/floating-point-arithmetic.ll | 4 |
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 } |