diff options
author | Ed Maste <emaste@freebsd.org> | 2013-08-29 21:02:33 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2013-08-29 21:02:33 +0000 |
commit | c4dff6feeae3c905701e2f81f13444f8afe79188 (patch) | |
tree | bee3905119ff6b996ea3558aaf94b9c0cfbf3937 /lldb/source/Expression/ClangExpressionParser.cpp | |
parent | 393068bb042c360d16805c847f7f46d310d07642 (diff) | |
download | bcm5719-llvm-c4dff6feeae3c905701e2f81f13444f8afe79188.tar.gz bcm5719-llvm-c4dff6feeae3c905701e2f81f13444f8afe79188.zip |
Enable MCJIT on FreeBSD
Testing shows it works for at least trivial cases, while the
USE_STANDARD_JIT case does not even work for those. Thus, don't define
USE_STANDARD_JIT on FreeBSD.
I've left the #if block choosing the appropriate #include in case it's
useful for testing.
llvm-svn: 189611
Diffstat (limited to 'lldb/source/Expression/ClangExpressionParser.cpp')
-rw-r--r-- | lldb/source/Expression/ClangExpressionParser.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index 98c0bfdca87..e2494df9ddf 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -55,10 +55,6 @@ #include "llvm/Support/FileSystem.h" #include "llvm/Support/TargetSelect.h" -#if defined(__FreeBSD__) -#define USE_STANDARD_JIT -#endif - #if defined (USE_STANDARD_JIT) #include "llvm/ExecutionEngine/JIT.h" #else |