diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-10-06 22:24:13 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-10-06 22:24:13 +0000 |
commit | 17e279405ed20e71369e9c8ee4d8d720d5ead716 (patch) | |
tree | b1dafd6dd46a3634b84c7eed3a7346cb0ed59493 /examples | |
parent | 09d26ad913f0b116782da7e350a4a386f66df5b7 (diff) |
Add missing include to clang-interpreter example, to make it work on Windows. Patch by Dean Pavlekovic.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r-- | examples/clang-interpreter/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/clang-interpreter/main.cpp b/examples/clang-interpreter/main.cpp index c04f2b5f25..c9734e5fad 100644 --- a/examples/clang-interpreter/main.cpp +++ b/examples/clang-interpreter/main.cpp @@ -22,6 +22,7 @@ #include "llvm/ADT/OwningPtr.h" #include "llvm/ADT/SmallString.h" #include "llvm/Config/config.h" +#include "llvm/ExecutionEngine/JIT.h" #include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/raw_ostream.h" |