aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/stackmap-frame-setup.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/stackmap-frame-setup.ll')
-rw-r--r--test/CodeGen/AArch64/stackmap-frame-setup.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeGen/AArch64/stackmap-frame-setup.ll b/test/CodeGen/AArch64/stackmap-frame-setup.ll
deleted file mode 100644
index 677ff8dc2530..000000000000
--- a/test/CodeGen/AArch64/stackmap-frame-setup.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: llc -o - -verify-machineinstrs -mtriple=aarch64-apple-darwin -stop-after machine-sink %s | FileCheck %s --check-prefix=ISEL
-; RUN: llc -o - -verify-machineinstrs -mtriple=aarch64-apple-darwin -fast-isel -fast-isel-abort=1 -stop-after machine-sink %s | FileCheck %s --check-prefix=FAST-ISEL
-
-define void @caller_meta_leaf() {
-entry:
- %metadata = alloca i64, i32 3, align 8
- store i64 11, i64* %metadata
- store i64 12, i64* %metadata
- store i64 13, i64* %metadata
-; ISEL: ADJCALLSTACKDOWN 0, 0, implicit-def
-; ISEL-NEXT: STACKMAP
-; ISEL-NEXT: ADJCALLSTACKUP 0, 0, implicit-def
- call void (i64, i32, ...) @llvm.experimental.stackmap(i64 4, i32 0, i64* %metadata)
-; FAST-ISEL: ADJCALLSTACKDOWN 0, 0, implicit-def
-; FAST-ISEL-NEXT: STACKMAP
-; FAST-ISEL-NEXT: ADJCALLSTACKUP 0, 0, implicit-def
- ret void
-}
-
-declare void @llvm.experimental.stackmap(i64, i32, ...)