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 | b659dff4eb96a515c5c1f6d14985a599763b03f0 (patch) | |
| tree | 9148bda39f8e9839d7f5efab620aacb8fe861bd8 /llvm/test/CodeGen | |
| parent | 2dcee28a61339b6d5b7e5e20f6a4e626f6bc2a5d (diff) | |
| download | bcm5719-llvm-b659dff4eb96a515c5c1f6d14985a599763b03f0.tar.gz bcm5719-llvm-b659dff4eb96a515c5c1f6d14985a599763b03f0.zip | |
Forgot about ARM::tPUSH. It also has a new writeback operand.
llvm-svn: 83237
Diffstat (limited to 'llvm/test/CodeGen')
| -rw-r--r-- | llvm/test/CodeGen/Thumb/push.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/Thumb/push.ll b/llvm/test/CodeGen/Thumb/push.ll new file mode 100644 index 00000000000..63773c4f6c9 --- /dev/null +++ b/llvm/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 +} |

