Replace a #include with a forward-declaration.

llvm-svn: 60456
This commit is contained in:
Dan Gohman 2008-12-03 01:53:18 +00:00
parent 0c8df671ac
commit 9810e76b30
1 changed files with 1 additions and 1 deletions

View 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;