mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
0d06582cd5
This adds 'elf' as a recognized target triple environment value and overrides the default generated object format on Windows platforms if that value is present. This patch also enables MCJIT tests on Windows using the new environment value. llvm-svn: 165030
22 lines
424 B
LLVM
22 lines
424 B
LLVM
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit %s > /dev/null
|
|
|
|
declare void @exit(i32)
|
|
|
|
define i32 @test(i8 %C, i16 %S) {
|
|
%X = trunc i16 %S to i8 ; <i8> [#uses=1]
|
|
%Y = zext i8 %X to i32 ; <i32> [#uses=1]
|
|
ret i32 %Y
|
|
}
|
|
|
|
define void @FP(void (i32)* %F) {
|
|
%X = call i32 @test( i8 123, i16 1024 ) ; <i32> [#uses=1]
|
|
call void %F( i32 %X )
|
|
ret void
|
|
}
|
|
|
|
define i32 @main() {
|
|
call void @FP( void (i32)* @exit )
|
|
ret i32 1
|
|
}
|
|
|