From 8043f8c294fbd89dcba0ce75fcdfa93aeb910e4c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 10 Jan 2004 19:16:26 +0000 Subject: [PATCH] Remove use of llvm/CodeGen/InstrSelection.h llvm-svn: 10749 --- llvm/lib/CodeGen/MachineCodeForInstruction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/CodeGen/MachineCodeForInstruction.cpp b/llvm/lib/CodeGen/MachineCodeForInstruction.cpp index a0982fe2748c..50a54099c5c3 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(tempVec[i])->dropAllReferences(); + cast(tempVec[i])->dropAllReferences(); }