diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-20 07:49:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-20 07:49:54 +0000 |
commit | bcdadf376549b8157a27407fdffd33b47261b528 (patch) | |
tree | eae70c0283c81d53e89d395fd00d17f0f018d1bf /llvm/lib/ExecutionEngine/Interpreter | |
parent | 4c96b0883f6ca1cc48074aba011da2dc3f0cacfe (diff) | |
download | bcm5719-llvm-bcdadf376549b8157a27407fdffd33b47261b528.tar.gz bcm5719-llvm-bcdadf376549b8157a27407fdffd33b47261b528.zip |
Move the IntrinsicLowering header into the CodeGen directory, as per PR346
llvm-svn: 14266
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp index 3348ab48826..a9846705b43 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -16,7 +16,7 @@ #include "llvm/Constants.h" #include "llvm/DerivedTypes.h" #include "llvm/Instructions.h" -#include "llvm/IntrinsicLowering.h" +#include "llvm/CodeGen/IntrinsicLowering.h" #include "llvm/Support/GetElementPtrTypeIterator.h" #include "Support/Statistic.h" #include "Support/Debug.h" diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp index 9780add37d3..adb26aea64e 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -14,7 +14,7 @@ //===----------------------------------------------------------------------===// #include "Interpreter.h" -#include "llvm/IntrinsicLowering.h" +#include "llvm/CodeGen/IntrinsicLowering.h" #include "llvm/DerivedTypes.h" #include "llvm/Module.h" using namespace llvm; |