diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:16:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:16:26 +0000 |
commit | 8043f8c294fbd89dcba0ce75fcdfa93aeb910e4c (patch) | |
tree | 380b4d17139e492c296b77676bcd067245232324 /llvm/lib/CodeGen/MachineCodeForInstruction.cpp | |
parent | 03cbd1ab79297bc969daace2f3992793e61ac52c (diff) | |
download | bcm5719-llvm-8043f8c294fbd89dcba0ce75fcdfa93aeb910e4c.tar.gz bcm5719-llvm-8043f8c294fbd89dcba0ce75fcdfa93aeb910e4c.zip |
Remove use of llvm/CodeGen/InstrSelection.h
llvm-svn: 10749
Diffstat (limited to 'llvm/lib/CodeGen/MachineCodeForInstruction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineCodeForInstruction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineCodeForInstruction.cpp b/llvm/lib/CodeGen/MachineCodeForInstruction.cpp index a0982fe2748..50a54099c5c 100644 --- a/llvm/lib/CodeGen/MachineCodeForInstruction.cpp +++ b/llvm/lib/CodeGen/MachineCodeForInstruction.cpp @@ -25,7 +25,7 @@ #include "llvm/CodeGen/MachineCodeForInstruction.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineInstrAnnot.h" -#include "llvm/CodeGen/InstrSelection.h" +#include "llvm/Instruction.h" using namespace llvm; AnnotationID llvm::MCFI_AID( @@ -48,7 +48,7 @@ void MachineCodeForInstruction::dropAllReferences() { for (unsigned i=0, N=tempVec.size(); i < N; i++) - cast<TmpInstruction>(tempVec[i])->dropAllReferences(); + cast<Instruction>(tempVec[i])->dropAllReferences(); } |