diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-11 20:38:31 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-11 20:38:31 +0000 |
commit | dc2fbddd9d204e904b8e61d1da1428579e7c55af (patch) | |
tree | b8385213362b0afe5f87a607ababd6d19edad418 /include/llvm/CodeGen/MachineConstantPool.h | |
parent | c45996bf7464d4b5bc038abeff362f47fea401d9 (diff) |
Trim unnecessary #includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineConstantPool.h')
-rw-r--r-- | include/llvm/CodeGen/MachineConstantPool.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineConstantPool.h b/include/llvm/CodeGen/MachineConstantPool.h index 4144d8ca16..ba491ce255 100644 --- a/include/llvm/CodeGen/MachineConstantPool.h +++ b/include/llvm/CodeGen/MachineConstantPool.h @@ -16,8 +16,8 @@ #define LLVM_CODEGEN_MACHINECONSTANTPOOL_H #include "llvm/ADT/FoldingSet.h" -#include "llvm/CodeGen/SelectionDAGNodes.h" #include "llvm/Support/Streams.h" +#include <cassert> #include <vector> #include <iosfwd> @@ -27,6 +27,7 @@ class AsmPrinter; class Constant; class TargetData; class TargetMachine; +class Type; class MachineConstantPool; /// Abstract base class for all machine specific constantpool value subclasses. |