diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-10-02 05:03:07 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-10-02 05:03:07 +0000 |
commit | 892597943adc02583af32a86b4289f1fb02d2e4f (patch) | |
tree | c4f3e90e90126ddc2856cd01acd39e207dfb8a13 /test/CodeGen/Thumb/push.ll | |
parent | 62a1b5db44e87eaba053483041943905b4a4046c (diff) |
Forgot about ARM::tPUSH. It also has a new writeback operand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83237 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb/push.ll')
-rw-r--r-- | test/CodeGen/Thumb/push.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/Thumb/push.ll b/test/CodeGen/Thumb/push.ll new file mode 100644 index 0000000000..63773c4f6c --- /dev/null +++ b/test/CodeGen/Thumb/push.ll @@ -0,0 +1,10 @@ +; RUN: llc < %s -mtriple=thumb-apple-darwin -disable-fp-elim | FileCheck %s +; rdar://7268481 + +define arm_apcscc void @t() nounwind { +; CHECK: t: +; CHECK-NEXT : push {r7} +entry: + call void asm sideeffect ".long 0xe7ffdefe", ""() nounwind + ret void +} |