diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-10-05 01:53:19 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-10-05 01:53:19 +0000 |
commit | 4968ca50e8dc9754aeb35affca274e25adafb177 (patch) | |
tree | 52c308c7d17ee87c2163c38f53c3685837bfb287 /llvm/test/ExecutionEngine/MCJIT/remote/multi-module-sm-pic-a.ll | |
parent | 480dcb3ee716849072b99d9df0ca5d1450b98e80 (diff) | |
download | bcm5719-llvm-4968ca50e8dc9754aeb35affca274e25adafb177.tar.gz bcm5719-llvm-4968ca50e8dc9754aeb35affca274e25adafb177.zip |
Adding tests for multiple GOTs with MCJIT
llvm-svn: 192021
Diffstat (limited to 'llvm/test/ExecutionEngine/MCJIT/remote/multi-module-sm-pic-a.ll')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/remote/multi-module-sm-pic-a.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/remote/multi-module-sm-pic-a.ll b/llvm/test/ExecutionEngine/MCJIT/remote/multi-module-sm-pic-a.ll new file mode 100644 index 00000000000..d92ce4219f5 --- /dev/null +++ b/llvm/test/ExecutionEngine/MCJIT/remote/multi-module-sm-pic-a.ll @@ -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 +} + |