mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Adding tests for multiple GOTs with MCJIT
llvm-svn: 192021
This commit is contained in:
parent
61be434449
commit
c62977e263
13
test/ExecutionEngine/MCJIT/cross-module-sm-pic-a.ll
Normal file
13
test/ExecutionEngine/MCJIT/cross-module-sm-pic-a.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: %lli_mcjit -extra-modules=%p/cross-module-b.ir -relocation-model=pic -code-model=small %s > /dev/null
|
||||
|
||||
declare i32 @FB()
|
||||
|
||||
define i32 @FA() {
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
define i32 @main() {
|
||||
%r = call i32 @FB( ) ; <i32> [#uses=1]
|
||||
ret i32 %r
|
||||
}
|
||||
|
9
test/ExecutionEngine/MCJIT/multi-module-sm-pic-a.ll
Normal file
9
test/ExecutionEngine/MCJIT/multi-module-sm-pic-a.ll
Normal file
@ -0,0 +1,9 @@
|
||||
; RUN: %lli_mcjit -extra-modules=%p/multi-module-b.ir,%p/multi-module-c.ir -relocation-model=pic -code-model=small %s > /dev/null
|
||||
|
||||
declare i32 @FB()
|
||||
|
||||
define i32 @main() {
|
||||
%r = call i32 @FB( ) ; <i32> [#uses=1]
|
||||
ret i32 %r
|
||||
}
|
||||
|
13
test/ExecutionEngine/MCJIT/remote/cross-module-sm-pic-a.ll
Normal file
13
test/ExecutionEngine/MCJIT/remote/cross-module-sm-pic-a.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: %lli_mcjit -extra-modules=%p/cross-module-b.ir -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target -relocation-model=pic -code-model=small %s > /dev/null
|
||||
|
||||
declare i32 @FB()
|
||||
|
||||
define i32 @FA() {
|
||||
ret i32 0
|
||||
}
|
||||
|
||||
define i32 @main() {
|
||||
%r = call i32 @FB( ) ; <i32> [#uses=1]
|
||||
ret i32 %r
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
; RUN: %lli_mcjit -extra-modules=%p/multi-module-b.ir,%p/multi-module-c.ir -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target -relocation-model=pic -code-model=small %s > /dev/null
|
||||
|
||||
declare i32 @FB()
|
||||
|
||||
define i32 @main() {
|
||||
%r = call i32 @FB( ) ; <i32> [#uses=1]
|
||||
ret i32 %r
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user