repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix an embarassing typo that resulted in llvm-gcc bootstrap miscompare
[llvm/avr.git]
/
test
/
CodeGen
/
ARM
/
arguments.ll
blob
ad5b2d69fab92067c40e6e036907b52987774fbc
1
; RUN: llc < %s -mtriple=arm-linux-gnueabi | \
2
; RUN: grep {mov r0, r2} | count 1
3
; RUN: llc < %s -mtriple=arm-apple-darwin | \
4
; RUN: grep {mov r0, r1} | count 1
5
6
define i32 @f(i32 %a, i64 %b) {
7
%tmp = call i32 @g(i64 %b)
8
ret i32 %tmp
9
}
10
11
declare i32 @g(i64)