aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-29 18:56:45 +0000
committerChris Lattner <sabre@nondot.org>2002-04-29 18:56:45 +0000
commite2cbbce6aa756e3453cefb4b907aa534fbb81d03 (patch)
treed445df3ec142d73828efe204404e73e653f4c72e /lib/ExecutionEngine
parent86e9187dccd1ef73cc2d498bb4828162d11dd650 (diff)
downloadexternal_llvm-e2cbbce6aa756e3453cefb4b907aa534fbb81d03.zip
external_llvm-e2cbbce6aa756e3453cefb4b907aa534fbb81d03.tar.gz
external_llvm-e2cbbce6aa756e3453cefb4b907aa534fbb81d03.tar.bz2
Fix #include broken by iMemory.h not including DerivedTypes.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2407 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/Interpreter/Execution.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp
index 2a8c105..fa61298 100644
--- a/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -10,7 +10,7 @@
#include "llvm/iOther.h"
#include "llvm/iTerminators.h"
#include "llvm/iMemory.h"
-#include "llvm/Type.h"
+#include "llvm/DerivedTypes.h"
#include "llvm/Constants.h"
#include "llvm/Assembly/Writer.h"
#include "llvm/Target/TargetData.h"