aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/Thumb/push.ll
blob: 74629effd147a5ea72480136f7972b03564da51f (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llc < %s -mtriple=thumb-apple-darwin -frame-pointer=all | FileCheck %s
; rdar://7268481

define void @t() nounwind {
; CHECK-LABEL: t:
; CHECK: push {r7, lr}
entry:
  call void asm sideeffect alignstack ".long 0xe7ffdefe", ""() nounwind
  ret void
}