From 17e279405ed20e71369e9c8ee4d8d720d5ead716 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Thu, 6 Oct 2011 22:24:13 +0000 Subject: [PATCH] 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 --- examples/clang-interpreter/main.cpp | 1 + 1 file changed, 1 insertion(+) 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" -- 2.40.0