1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/ARM/frame_thumb.ll
Lauro Ramos Venancio f9641d332a In Thumb mode, the frame register must be R7.
llvm-svn: 36512
2007-04-27 17:58:03 +00:00

10 lines
265 B
LLVM

; RUN: llvm-as < %s | llc -march=thumb -mtriple=arm-apple-darwin \
; RUN: -disable-fp-elim | not grep {r11}
; RUN: llvm-as < %s | llc -march=thumb -mtriple=arm-linux-gnueabi \
; RUN: -disable-fp-elim | not grep {r11}
define i32 @f() {
entry:
ret i32 10
}