xref: /llvm-project/llvm/test/CodeGen/Thumb/push.ll (revision b7cef81fd36c85e52b115b9ed6d1fb92d63781d6)
1; RUN: llc < %s -mtriple=thumb-apple-darwin -frame-pointer=all | FileCheck %s
2; rdar://7268481
3
4define void @t() nounwind {
5; CHECK-LABEL: t:
6; CHECK: push {r7, lr}
7entry:
8  call void asm sideeffect alignstack ".long 0xe7ffdefe", ""() nounwind
9  ret void
10}
11