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 | 9810e76b30ca7f938abbea7b258ce2163b328403 (patch) | |
tree | fd9dc450940f9ba01f5d25441235d68cace2b50c | |
parent | 0c8df671ace40e2997a465484ba21bd946b623ba (diff) | |
download | bcm5719-llvm-9810e76b30ca7f938abbea7b258ce2163b328403.tar.gz bcm5719-llvm-9810e76b30ca7f938abbea7b258ce2163b328403.zip |
Replace a #include with a forward-declaration.
llvm-svn: 60456
-rw-r--r-- | llvm/include/llvm/CodeGen/MachineConstantPool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineConstantPool.h b/llvm/include/llvm/CodeGen/MachineConstantPool.h index 280d54dbf80..79f4eef608e 100644 --- a/llvm/include/llvm/CodeGen/MachineConstantPool.h +++ b/llvm/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; |