forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding tests for multiple GOTs with MCJIT
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192021 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Andrew Kaylor
committed
Oct 5, 2013
1 parent
9cffedb
commit 95dea01
Showing
4 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 changes: 13 additions & 0 deletions
13
test/ExecutionEngine/MCJIT/remote/cross-module-sm-pic-a.ll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} | ||
|