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 | b50682e1563bc4cde7b9f60ff1009952e024d3d9 (patch) | |
tree | fecd6090f6db0f1e43b1cb94f1b358a5062bc93f /llvm/test/Transforms/InstSimplify/floating-point-arithmetic.ll | |
parent | 3960c1cd56bc1ac58a6da30e018aac7946c5e3ef (diff) | |
download | bcm5719-llvm-b50682e1563bc4cde7b9f60ff1009952e024d3d9.tar.gz bcm5719-llvm-b50682e1563bc4cde7b9f60ff1009952e024d3d9.zip |
Add missing colons to check lines.
llvm-svn: 179277
Diffstat (limited to 'llvm/test/Transforms/InstSimplify/floating-point-arithmetic.ll')
-rw-r--r-- | llvm/test/Transforms/InstSimplify/floating-point-arithmetic.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Transforms/InstSimplify/floating-point-arithmetic.ll b/llvm/test/Transforms/InstSimplify/floating-point-arithmetic.ll index f9c364cade3..91ce26324b8 100644 --- a/llvm/test/Transforms/InstSimplify/floating-point-arithmetic.ll +++ b/llvm/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 } |