aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/qpx-func-clobber.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PowerPC/qpx-func-clobber.ll')
-rw-r--r--test/CodeGen/PowerPC/qpx-func-clobber.ll22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/CodeGen/PowerPC/qpx-func-clobber.ll b/test/CodeGen/PowerPC/qpx-func-clobber.ll
deleted file mode 100644
index 061e36ce491a..000000000000
--- a/test/CodeGen/PowerPC/qpx-func-clobber.ll
+++ /dev/null
@@ -1,22 +0,0 @@
-; RUN: llc -verify-machineinstrs < %s -march=ppc64 -mcpu=a2q | FileCheck %s
-target triple = "powerpc64-bgq-linux"
-
-declare <4 x double> @foo(<4 x double> %p)
-
-define <4 x double> @bar(<4 x double> %p, <4 x double> %q) {
-entry:
- %v = call <4 x double> @foo(<4 x double> %p)
- %w = call <4 x double> @foo(<4 x double> %q)
- %x = fadd <4 x double> %v, %w
- ret <4 x double> %x
-
-; CHECK-LABEL: @bar
-; CHECK: qvstfdx 2,
-; CHECK: bl foo
-; CHECK: qvstfdx 1,
-; CHECK: qvlfdx 1,
-; CHECK: bl foo
-; CHECK: qvlfdx [[REG:[0-9]+]],
-; CHECK: qvfadd 1, [[REG]], 1
-}
-