mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
5f190b5e4e
In r143502, we renamed getHostTriple() to getDefaultTargetTriple() as part of work to allow the user to supply a different default target triple at configure time. This change also affected the JIT. However, it is inappropriate to use the default target triple in the JIT in most circumstances because this will not necessarily match the current architecture used by the process, leading to illegal instruction and other such errors at run time. Introduce the getProcessTriple() function for use in the JIT and its clients, and cause the JIT to use it. On architectures with a single bitness, the host and process triples are identical. On other architectures, the host triple represents the architecture of the host CPU, while the process triple represents the architecture used by the host CPU to interpret machine code within the current process. For example, when executing 32-bit code on a 64-bit Linux machine, the host triple may be 'x86_64-unknown-linux-gnu', while the process triple may be 'i386-unknown-linux-gnu'. This fixes JIT for the 32-on-64-bit (and vice versa) build on non-Apple platforms. Differential Revision: http://llvm-reviews.chandlerc.com/D254 llvm-svn: 172627
47 lines
486 B
LLVM
47 lines
486 B
LLVM
; RUN: %lli_mcjit %s > /dev/null
|
|
|
|
; test return instructions
|
|
define void @test1() {
|
|
ret void
|
|
}
|
|
|
|
define i8 @test2() {
|
|
ret i8 1
|
|
}
|
|
|
|
define i8 @test3() {
|
|
ret i8 1
|
|
}
|
|
|
|
define i16 @test4() {
|
|
ret i16 -1
|
|
}
|
|
|
|
define i16 @test5() {
|
|
ret i16 -1
|
|
}
|
|
|
|
define i32 @main() {
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @test6() {
|
|
ret i32 4
|
|
}
|
|
|
|
define i64 @test7() {
|
|
ret i64 0
|
|
}
|
|
|
|
define i64 @test8() {
|
|
ret i64 0
|
|
}
|
|
|
|
define float @test9() {
|
|
ret float 1.000000e+00
|
|
}
|
|
|
|
define double @test10() {
|
|
ret double 2.000000e+00
|
|
}
|