mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
859dccec1f
More updating of tests to be explicit about the target triple rather than relying on the default target triple supporting ARM mode. Indicate to lit that object emission is not yet available for Windows on ARM. llvm-svn: 205545
20 lines
739 B
LLVM
20 lines
739 B
LLVM
; RUN: llc -mtriple=arm-eabi %s -o /dev/null
|
|
|
|
define void @f(i32 %a, i32 %b, i32 %c, i32 %d, i32 %e) {
|
|
entry:
|
|
%a_addr = alloca i32 ; <i32*> [#uses=2]
|
|
%b_addr = alloca i32 ; <i32*> [#uses=2]
|
|
%c_addr = alloca i32 ; <i32*> [#uses=2]
|
|
%d_addr = alloca i32 ; <i32*> [#uses=2]
|
|
%e_addr = alloca i32 ; <i32*> [#uses=2]
|
|
store i32 %a, i32* %a_addr
|
|
store i32 %b, i32* %b_addr
|
|
store i32 %c, i32* %c_addr
|
|
store i32 %d, i32* %d_addr
|
|
store i32 %e, i32* %e_addr
|
|
call void @g( i32* %a_addr, i32* %b_addr, i32* %c_addr, i32* %d_addr, i32* %e_addr )
|
|
ret void
|
|
}
|
|
|
|
declare void @g(i32*, i32*, i32*, i32*, i32*)
|