diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-03 01:53:18 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-03 01:53:18 +0000 |
commit | 92faff2e4cd627ff980be6bd7c91e2f45eb48154 (patch) | |
tree | 18a3c05558119b6c0c4dba72283de9454ad90d27 /include/llvm/CodeGen/MachineConstantPool.h | |
parent | c5a1a220ea3de1a656e91b9de7cba2e587c12eab (diff) |
Replace a #include with a forward-declaration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60456 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineConstantPool.h')
-rw-r--r-- | include/llvm/CodeGen/MachineConstantPool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineConstantPool.h b/include/llvm/CodeGen/MachineConstantPool.h index 280d54dbf8..79f4eef608 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 <cassert> #include <vector> @@ -23,6 +22,7 @@ namespace llvm { class AsmPrinter; class Constant; +class FoldingSetNodeID; class TargetData; class TargetMachine; class Type; |