aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/arm64-fp-contract-zero.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/arm64-fp-contract-zero.ll')
-rw-r--r--test/CodeGen/AArch64/arm64-fp-contract-zero.ll14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/CodeGen/AArch64/arm64-fp-contract-zero.ll b/test/CodeGen/AArch64/arm64-fp-contract-zero.ll
deleted file mode 100644
index 70548cad205f..000000000000
--- a/test/CodeGen/AArch64/arm64-fp-contract-zero.ll
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: llc -mtriple=arm64 -fp-contract=fast -o - %s | FileCheck %s
-
-
-; Make sure we don't try to fold an fneg into +0.0, creating an illegal constant
-; -0.0. It's also good, though not essential, that we don't resort to a litpool.
-define double @test_fms_fold(double %a, double %b) {
-; CHECK-LABEL: test_fms_fold:
-; CHECK: fmov {{d[0-9]+}}, xzr
-; CHECK: ret
- %mul = fmul double %a, 0.000000e+00
- %mul1 = fmul double %b, 0.000000e+00
- %sub = fsub double %mul, %mul1
- ret double %sub
-}