diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-29 17:30:56 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-29 17:30:56 +0000 |
commit | 47b14a4a6a455c7be169cfd312fcbe796f0ad426 (patch) | |
tree | a6e2b2fdd43f33e304779ba3dc3e77290d9027de /projects/Stacker | |
parent | 879313ae3aa2052cc40ba6f0f25c17e7a5a6f0da (diff) | |
download | external_llvm-47b14a4a6a455c7be169cfd312fcbe796f0ad426.zip external_llvm-47b14a4a6a455c7be169cfd312fcbe796f0ad426.tar.gz external_llvm-47b14a4a6a455c7be169cfd312fcbe796f0ad426.tar.bz2 |
Fix #includes of i*.h => Instructions.h as per PR403.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15334 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects/Stacker')
-rw-r--r-- | projects/Stacker/lib/compiler/StackerCompiler.cpp | 5 | ||||
-rw-r--r-- | projects/Stacker/lib/compiler/StackerParser.y | 5 |
2 files changed, 2 insertions, 8 deletions
diff --git a/projects/Stacker/lib/compiler/StackerCompiler.cpp b/projects/Stacker/lib/compiler/StackerCompiler.cpp index 708ae3c..1ca88da 100644 --- a/projects/Stacker/lib/compiler/StackerCompiler.cpp +++ b/projects/Stacker/lib/compiler/StackerCompiler.cpp @@ -17,10 +17,7 @@ //===----------------------------------------------------------------------===// #include <llvm/Analysis/Verifier.h> -#include <llvm/iMemory.h> -#include <llvm/iOperators.h> -#include <llvm/iOther.h> -#include <llvm/iTerminators.h> +#include <llvm/Instructions.h> #include <Support/Statistic.h> #include "StackerCompiler.h" #include "StackerParser.h" diff --git a/projects/Stacker/lib/compiler/StackerParser.y b/projects/Stacker/lib/compiler/StackerParser.y index 96c7243..2256b30 100644 --- a/projects/Stacker/lib/compiler/StackerParser.y +++ b/projects/Stacker/lib/compiler/StackerParser.y @@ -15,10 +15,7 @@ #include "StackerCompiler.h" #include "llvm/SymbolTable.h" #include "llvm/Module.h" -#include "llvm/iTerminators.h" -#include "llvm/iMemory.h" -#include "llvm/iOperators.h" -#include "llvm/iPHINode.h" +#include "llvm/Instructions.h" #include "Support/STLExtras.h" #include "Support/DepthFirstIterator.h" #include <list> |