mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
f9641d332a
llvm-svn: 36512
10 lines
265 B
LLVM
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
|
|
}
|