diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-07-30 22:42:24 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-07-30 22:42:24 +0000 |
commit | eb72547f09244dc1978768352b2475726b76182f (patch) | |
tree | 42d96c0584c8daf8fde4969cb1692b91a412859d /lldb/source/Expression/ClangExpressionParser.cpp | |
parent | 3ae5a1865627a77405a376b039c1a2f2a7bcb138 (diff) | |
download | bcm5719-llvm-eb72547f09244dc1978768352b2475726b76182f.tar.gz bcm5719-llvm-eb72547f09244dc1978768352b2475726b76182f.zip |
Add reloc arg to standard JIT createJIT()
Fixes non-__APPLE__ build. Patch by Matt Johnson!
llvm-svn: 136580
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionParser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index c8385c2bf94..14d8a70ebb6 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -564,6 +564,7 @@ ClangExpressionParser::MakeJIT (lldb::addr_t &func_allocation_addr, jit_memory_manager, CodeGenOpt::Less, true, + Reloc::Default, CodeModel::Small)); #else EngineBuilder builder(module); |