mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
c6726ecca5
the stack. Patch by Sandeep Patel. llvm-svn: 72106
10 lines
182 B
LLVM
10 lines
182 B
LLVM
; RUN: llvm-as < %s | llc -mtriple=arm-linux-gnueabi | not grep r3
|
|
; PR4058
|
|
|
|
define i32 @f(i64 %z, i32 %a, i64 %b) {
|
|
%tmp = call i32 @g(i64 %b)
|
|
ret i32 %tmp
|
|
}
|
|
|
|
declare i32 @g(i64)
|