diff options
author | Lang Hames <lhames@gmail.com> | 2015-04-13 22:12:54 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2015-04-13 22:12:54 +0000 |
commit | cd3fd83c3a84dec41b352e526407d8bc8b7a21f3 (patch) | |
tree | aff28ac22c6c42736ae166f0bc03f76f6bd3054a /llvm/test/ExecutionEngine | |
parent | 3e1d483e0efb64e2e6af5407bd3d1c8db2150b35 (diff) | |
download | bcm5719-llvm-cd3fd83c3a84dec41b352e526407d8bc8b7a21f3.tar.gz bcm5719-llvm-cd3fd83c3a84dec41b352e526407d8bc8b7a21f3.zip |
[Orc] Add an Orc layer for applying arbitrary transforms to IR, use it to add
debugging output to the LLI orc-lazy JIT, and update the orc-lazy "hello.ll"
test to actually test for lazy compilation.
llvm-svn: 234805
Diffstat (limited to 'llvm/test/ExecutionEngine')
-rw-r--r-- | llvm/test/ExecutionEngine/OrcLazy/hello.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/ExecutionEngine/OrcLazy/hello.ll b/llvm/test/ExecutionEngine/OrcLazy/hello.ll index dcc6da06386..247d95f0b8d 100644 --- a/llvm/test/ExecutionEngine/OrcLazy/hello.ll +++ b/llvm/test/ExecutionEngine/OrcLazy/hello.ll @@ -1,7 +1,8 @@ -; RUN: lli -jit-kind=orc-lazy %s | FileCheck %s +; RUN: lli -jit-kind=orc-lazy -orc-lazy-debug=funcs-to-stderr %s | FileCheck %s ; ; CHECK: Hello -; CHECK-NEXT: Goodbye +; CHECK: [ main$orc_body ] +; CHECK: Goodbye %class.Foo = type { i8 } |