You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
172 B
10 lines
172 B
4 months ago
|
; RUN: llc < %s -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)
|