aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/arm64-coalescing-MOVi32imm.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/arm64-coalescing-MOVi32imm.ll')
-rw-r--r--test/CodeGen/AArch64/arm64-coalescing-MOVi32imm.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/AArch64/arm64-coalescing-MOVi32imm.ll b/test/CodeGen/AArch64/arm64-coalescing-MOVi32imm.ll
deleted file mode 100644
index 528d2538bb4a..000000000000
--- a/test/CodeGen/AArch64/arm64-coalescing-MOVi32imm.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llc < %s | FileCheck %s
-
-; CHECK: orr w0, wzr, #0x1
-; CHECK-NEXT: bl foo
-; CHECK-NEXT: orr w0, wzr, #0x1
-; CHECK-NEXT: bl foo
-
-target triple = "aarch64--linux-android"
-declare i32 @foo(i32)
-
-; Function Attrs: nounwind uwtable
-define i32 @main() {
-entry:
- %call = tail call i32 @foo(i32 1)
- %call1 = tail call i32 @foo(i32 1)
- ret i32 0
-}