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
This commit is contained in:
Ed Maste 2013-08-29 21:02:33 +00:00
parent 393068bb04
commit c4dff6feea
1 changed files with 0 additions and 4 deletions

View File

@ -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