From: Dan Gohman Date: Wed, 3 Dec 2008 01:53:18 +0000 (+0000) Subject: Replace a #include with a forward-declaration. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=92faff2e4cd627ff980be6bd7c91e2f45eb48154;p=oota-llvm.git Replace a #include with a forward-declaration. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60456 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineConstantPool.h b/include/llvm/CodeGen/MachineConstantPool.h index 280d54dbf80..79f4eef608e 100644 --- a/include/llvm/CodeGen/MachineConstantPool.h +++ b/include/llvm/CodeGen/MachineConstantPool.h @@ -15,7 +15,6 @@ #ifndef LLVM_CODEGEN_MACHINECONSTANTPOOL_H #define LLVM_CODEGEN_MACHINECONSTANTPOOL_H -#include "llvm/ADT/FoldingSet.h" #include #include @@ -23,6 +22,7 @@ namespace llvm { class AsmPrinter; class Constant; +class FoldingSetNodeID; class TargetData; class TargetMachine; class Type;