diff options
Diffstat (limited to 'test/CodeGen/Hexagon/opt-fneg.ll')
-rw-r--r-- | test/CodeGen/Hexagon/opt-fneg.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/Hexagon/opt-fneg.ll b/test/CodeGen/Hexagon/opt-fneg.ll index 978957865863..da496c588019 100644 --- a/test/CodeGen/Hexagon/opt-fneg.ll +++ b/test/CodeGen/Hexagon/opt-fneg.ll @@ -3,7 +3,7 @@ define float @foo(float %x) nounwind { entry: -; CHECK: r{{[0-9]+}} = togglebit(r{{[0-9]+}}, #31) +; CHECK: r{{[0-9]+}} = togglebit(r{{[0-9]+}},#31) %x.addr = alloca float, align 4 store float %x, float* %x.addr, align 4 %0 = load float, float* %x.addr, align 4 @@ -13,14 +13,14 @@ entry: define float @bar(float %x) nounwind { entry: -; CHECK: r{{[0-9]+}} = togglebit(r{{[0-9]+}}, #31) +; CHECK: r{{[0-9]+}} = togglebit(r{{[0-9]+}},#31) %sub = fsub float -0.000000e+00, %x ret float %sub } define float @baz(float %x) nounwind { entry: -; CHECK: r{{[0-9]+}} = togglebit(r{{[0-9]+}}, #31) +; CHECK: r{{[0-9]+}} = togglebit(r{{[0-9]+}},#31) %conv1 = fmul float %x, -1.000000e+00 ret float %conv1 } |