repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git]
/
llvm
/
test
/
CodeGen
/
ARM
/
arguments-nosplit-i64.ll
blob
02bdc6cc227a067a2b26e9e9b08b6cd7025db25b
1
; RUN: llc -mtriple arm-linux-gnueabi -filetype asm -o - %s | FileCheck %s
2
; PR4058
3
4
declare i32 @g(i64)
5
6
define i32 @f(i64 %z, i32 %a, i64 %b) {
7
%tmp = call i32 @g(i64 %b)
8
ret i32 %tmp
9
}
10
11
; CHECK-LABEL: f:
12
; CHECK-NOT: r3
13