aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/cmp-frameindex.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/cmp-frameindex.ll')
-rw-r--r--test/CodeGen/AArch64/cmp-frameindex.ll19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeGen/AArch64/cmp-frameindex.ll b/test/CodeGen/AArch64/cmp-frameindex.ll
new file mode 100644
index 000000000000..2d01b76e186c
--- /dev/null
+++ b/test/CodeGen/AArch64/cmp-frameindex.ll
@@ -0,0 +1,19 @@
+; RUN: llc -mtriple=aarch64 %s -o - | FileCheck %s
+
+; CHECK: test_frameindex_cmp:
+; CHECK: cmn sp, #{{[0-9]+}}
+define void @test_frameindex_cmp() {
+ %stack = alloca i8
+ %stack.int = ptrtoint i8* %stack to i64
+ %cmp = icmp ne i64 %stack.int, 0
+ br i1 %cmp, label %bb1, label %bb2
+
+bb1:
+ call void @bar()
+ ret void
+
+bb2:
+ ret void
+}
+
+declare void @bar()