11 lines
251 B
LLVM
Raw Normal View History

2009-10-14 17:57:32 +00:00
; RUN: llc < %s -mtriple=thumb-apple-darwin -disable-fp-elim | FileCheck %s
; rdar://7268481
2010-07-13 17:19:57 +00:00
define void @t() nounwind {
; CHECK-LABEL: t:
2010-07-13 17:19:57 +00:00
; CHECK: push {r7}
2009-10-14 17:57:32 +00:00
entry:
2010-07-13 17:19:57 +00:00
call void asm sideeffect alignstack ".long 0xe7ffdefe", ""() nounwind
2009-10-14 17:57:32 +00:00
ret void
}