[Lldb-commits] [lldb] r189611 - Enable MCJIT on FreeBSD

Ed Maste emaste at freebsd.org
Thu Aug 29 14:02:33 PDT 2013


Author: emaste
Date: Thu Aug 29 16:02:33 2013
New Revision: 189611

URL: http://llvm.org/viewvc/llvm-project?rev=189611&view=rev
Log:
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.

Modified:
    lldb/trunk/source/Expression/ClangExpressionParser.cpp

Modified: lldb/trunk/source/Expression/ClangExpressionParser.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Expression/ClangExpressionParser.cpp?rev=189611&r1=189610&r2=189611&view=diff
==============================================================================
--- lldb/trunk/source/Expression/ClangExpressionParser.cpp (original)
+++ lldb/trunk/source/Expression/ClangExpressionParser.cpp Thu Aug 29 16:02:33 2013
@@ -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





More information about the lldb-commits mailing list