mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 06:06:19 +00:00
b191e0ab51
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31312 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
216 B
LLVM
10 lines
216 B
LLVM
; RUN: llvm-as < %s | llc -march=arm
|
|
void %f(uint %a) {
|
|
entry:
|
|
%tmp = alloca sbyte, uint %a
|
|
call void %g( sbyte* %tmp, uint %a, uint 1, uint 2, uint 3 )
|
|
ret void
|
|
}
|
|
|
|
declare void %g(sbyte*, uint, uint, uint, uint)
|