Remove use of llvm/CodeGen/InstrSelection.h

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10749 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-01-10 19:16:26 +00:00
parent e275fe834a
commit ae7fc3aede

View File

@ -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();
}