[cfe-commits] r141324 - /cfe/trunk/examples/clang-interpreter/main.cpp
Eli Friedman
eli.friedman at gmail.com
Thu Oct 6 15:24:14 PDT 2011
Author: efriedma
Date: Thu Oct 6 17:24:13 2011
New Revision: 141324
URL: http://llvm.org/viewvc/llvm-project?rev=141324&view=rev
Log:
Add missing include to clang-interpreter example, to make it work on Windows. Patch by Dean Pavlekovic.
Modified:
cfe/trunk/examples/clang-interpreter/main.cpp
Modified: cfe/trunk/examples/clang-interpreter/main.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/examples/clang-interpreter/main.cpp?rev=141324&r1=141323&r2=141324&view=diff
==============================================================================
--- cfe/trunk/examples/clang-interpreter/main.cpp (original)
+++ cfe/trunk/examples/clang-interpreter/main.cpp Thu Oct 6 17:24:13 2011
@@ -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"
More information about the cfe-commits
mailing list