aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/big-endian-formal-args.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PowerPC/big-endian-formal-args.ll')
-rw-r--r--test/CodeGen/PowerPC/big-endian-formal-args.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/PowerPC/big-endian-formal-args.ll b/test/CodeGen/PowerPC/big-endian-formal-args.ll
deleted file mode 100644
index 3bf2817e035d..000000000000
--- a/test/CodeGen/PowerPC/big-endian-formal-args.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llc -verify-machineinstrs < %s -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
-
-declare void @bar(i64 %x, i64 %y)
-
-; CHECK: li 3, 0
-; CHECK: li 4, 2
-; CHECK: li 5, 0
-; CHECK: li 6, 3
-
-define void @foo() {
- call void @bar(i64 2, i64 3)
- ret void
-}