llvm-6502/test/CodeGen/Thumb/push.ll
Benjamin Kramer a2938e7e5f Fix some tests that didn't test anything.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106954 91177308-0d34-0410-b5e6-96231b3b80d8
2010-06-26 20:05:06 +00:00

11 lines
234 B
LLVM

; RUN: llc < %s -mtriple=thumb-apple-darwin -disable-fp-elim | FileCheck %s
; rdar://7268481
define void @t() nounwind {
; CHECK: t:
; CHECK: push {r7}
entry:
call void asm sideeffect ".long 0xe7ffdefe", ""() nounwind
ret void
}