From 7133e76b12701aefbf014f34feddb7bd00353d65 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Sun, 23 Dec 2007 20:34:06 +0000 Subject: [PATCH] Get rid of an unneeded #include. llvm-svn: 45337 --- include/llvm/CodeGen/MachineDominators.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/MachineDominators.h b/include/llvm/CodeGen/MachineDominators.h index 44bbaa0fbe6..7d277f07326 100644 --- a/include/llvm/CodeGen/MachineDominators.h +++ b/include/llvm/CodeGen/MachineDominators.h @@ -21,7 +21,6 @@ #include "llvm/CodeGen/MachineInstr.h" #include "llvm/Analysis/Dominators.h" #include "llvm/Analysis/DominatorInternals.h" -#include "llvm/ADT/GraphTraits.h" namespace llvm { @@ -187,6 +186,9 @@ public: /// DominatorTree GraphTraits specialization so the DominatorTree can be /// iterable by generic graph iterators. /// + +template struct GraphTraits; + template <> struct GraphTraits { typedef MachineDomTreeNode NodeType; typedef NodeType::iterator ChildIteratorType;