summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-07-11 20:38:31 +0000
committerDan Gohman <gohman@apple.com>2008-07-11 20:38:31 +0000
commitdc2fbddd9d204e904b8e61d1da1428579e7c55af (patch)
treeb8385213362b0afe5f87a607ababd6d19edad418 /include
parentc45996bf7464d4b5bc038abeff362f47fea401d9 (diff)
downloadllvm-dc2fbddd9d204e904b8e61d1da1428579e7c55af.tar.gz
llvm-dc2fbddd9d204e904b8e61d1da1428579e7c55af.tar.bz2
llvm-dc2fbddd9d204e904b8e61d1da1428579e7c55af.tar.xz
Trim unnecessary #includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineConstantPool.h3
-rw-r--r--include/llvm/CodeGen/SelectionDAGISel.h1
2 files changed, 2 insertions, 2 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.
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h
index ad573b4d17..e0b26b926b 100644
--- a/include/llvm/CodeGen/SelectionDAGISel.h
+++ b/include/llvm/CodeGen/SelectionDAGISel.h
@@ -18,7 +18,6 @@
#include "llvm/Pass.h"
#include "llvm/Constant.h"
#include "llvm/CodeGen/SelectionDAG.h"
-#include "llvm/CodeGen/SelectionDAGNodes.h"
namespace llvm {
class SelectionDAGLowering;