diff options
| author | Ed Maste <emaste@freebsd.org> | 2014-03-18 18:55:06 +0000 | 
|---|---|---|
| committer | Ed Maste <emaste@freebsd.org> | 2014-03-18 18:55:06 +0000 | 
| commit | a09ed03ce111a4d75ab4ba4d2b283bfbf7ec2cf2 (patch) | |
| tree | 5f1774852aa415c267ef0a50c51d9ed0732730e7 | |
| parent | 4eb7ddb13a6ccacdb40887b3f87d04d50348499e (diff) | |
| download | bcm5719-llvm-a09ed03ce111a4d75ab4ba4d2b283bfbf7ec2cf2.tar.gz bcm5719-llvm-a09ed03ce111a4d75ab4ba4d2b283bfbf7ec2cf2.zip  | |
Fix expression parsing (on FreeBSD, at least)
This reverts part of r204112 (Expression: cleanup unused include).
It looks like MCJIT.h is required to force MCJIT to be linked.
llvm-svn: 204170
| -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 4c5ebd13893..46623c01a5b 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -55,6 +55,7 @@  #include "llvm/Support/FileSystem.h"  #include "llvm/Support/TargetSelect.h" +#include "llvm/ExecutionEngine/MCJIT.h"  #include "llvm/IR/LLVMContext.h"  #include "llvm/IR/Module.h"  #include "llvm/Support/ErrorHandling.h"  | 

