Replace a #include with a forward-declaration.
authorDan Gohman <gohman@apple.com>
Wed, 3 Dec 2008 01:53:18 +0000 (01:53 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 3 Dec 2008 01:53:18 +0000 (01:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60456 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineConstantPool.h

index 280d54dbf804bb34e64af83bbf8958a7599a13cd..79f4eef608e2914a5ae2cdc9f74edb657f7ec7b9 100644 (file)
@@ -15,7 +15,6 @@
 #ifndef LLVM_CODEGEN_MACHINECONSTANTPOOL_H
 #define LLVM_CODEGEN_MACHINECONSTANTPOOL_H
 
-#include "llvm/ADT/FoldingSet.h"
 #include <cassert>
 #include <vector>
 
@@ -23,6 +22,7 @@ namespace llvm {
 
 class AsmPrinter;
 class Constant;
+class FoldingSetNodeID;
 class TargetData;
 class TargetMachine;
 class Type;