diff options
Diffstat (limited to 'test/CodeGen/AArch64/fp-dp3.ll')
-rw-r--r-- | test/CodeGen/AArch64/fp-dp3.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/AArch64/fp-dp3.ll b/test/CodeGen/AArch64/fp-dp3.ll index 09d9072..3a9a6fc 100644 --- a/test/CodeGen/AArch64/fp-dp3.ll +++ b/test/CodeGen/AArch64/fp-dp3.ll @@ -46,7 +46,7 @@ define float @test_fnmsub(float %a, float %b, float %c) { define double @testd_fmadd(double %a, double %b, double %c) { ; CHECK-LABEL: testd_fmadd: -; CHECK-NOFAST: testd_fmadd: +; CHECK-NOFAST-LABEL: testd_fmadd: %val = call double @llvm.fma.f64(double %a, double %b, double %c) ; CHECK: fmadd {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}} ; CHECK-NOFAST: fmadd {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}} @@ -55,7 +55,7 @@ define double @testd_fmadd(double %a, double %b, double %c) { define double @testd_fmsub(double %a, double %b, double %c) { ; CHECK-LABEL: testd_fmsub: -; CHECK-NOFAST: testd_fmsub: +; CHECK-NOFAST-LABEL: testd_fmsub: %nega = fsub double -0.0, %a %val = call double @llvm.fma.f64(double %nega, double %b, double %c) ; CHECK: fmsub {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}} @@ -65,7 +65,7 @@ define double @testd_fmsub(double %a, double %b, double %c) { define double @testd_fnmadd(double %a, double %b, double %c) { ; CHECK-LABEL: testd_fnmadd: -; CHECK-NOFAST: testd_fnmadd: +; CHECK-NOFAST-LABEL: testd_fnmadd: %negc = fsub double -0.0, %c %val = call double @llvm.fma.f64(double %a, double %b, double %negc) ; CHECK: fnmadd {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}}, {{d[0-9]+}} @@ -75,7 +75,7 @@ define double @testd_fnmadd(double %a, double %b, double %c) { define double @testd_fnmsub(double %a, double %b, double %c) { ; CHECK-LABEL: testd_fnmsub: -; CHECK-NOFAST: testd_fnmsub: +; CHECK-NOFAST-LABEL: testd_fnmsub: %nega = fsub double -0.0, %a %negc = fsub double -0.0, %c %val = call double @llvm.fma.f64(double %nega, double %b, double %negc) |