diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-31 21:24:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-31 21:24:10 +0000 |
commit | 5ef09c401b4f284b96fa159c95d1de42e8ce12e6 (patch) | |
tree | 57ffbb81be0c09b6f9aad44712f671e2328d2a92 | |
parent | 5b55d9183d903eb5945cc1dbe72bc86a7a64de88 (diff) | |
download | bcm5719-llvm-5ef09c401b4f284b96fa159c95d1de42e8ce12e6.tar.gz bcm5719-llvm-5ef09c401b4f284b96fa159c95d1de42e8ce12e6.zip |
Eliminate some unneccesary #includes and forward decls
llvm-svn: 4475
-rw-r--r-- | llvm/include/llvm/Analysis/DSGraph.h | 14 | ||||
-rw-r--r-- | llvm/include/llvm/Analysis/DSNode.h | 14 |
2 files changed, 0 insertions, 28 deletions
diff --git a/llvm/include/llvm/Analysis/DSGraph.h b/llvm/include/llvm/Analysis/DSGraph.h index 04f80e16243..c84c0e3386a 100644 --- a/llvm/include/llvm/Analysis/DSGraph.h +++ b/llvm/include/llvm/Analysis/DSGraph.h @@ -8,20 +8,6 @@ #define LLVM_ANALYSIS_DSGRAPH_H #include "llvm/Analysis/DSNode.h" -#include <vector> -#include <map> -#include <functional> -#include <string> - -class Function; -class CallInst; -class Value; -class GlobalValue; -class Type; - -class DSNode; // Each node in the graph -class DSGraph; // A graph for a function -class DSNodeIterator; // Data structure graph traversal iterator //===----------------------------------------------------------------------===// /// DSGraph - The graph that represents a function. diff --git a/llvm/include/llvm/Analysis/DSNode.h b/llvm/include/llvm/Analysis/DSNode.h index a1542cbdf0a..1050ca738c0 100644 --- a/llvm/include/llvm/Analysis/DSNode.h +++ b/llvm/include/llvm/Analysis/DSNode.h @@ -8,20 +8,6 @@ #define LLVM_ANALYSIS_DSNODE_H #include "llvm/Analysis/DSSupport.h" -#include <vector> -#include <map> -#include <functional> -#include <string> - -class Function; -class CallInst; -class Value; -class GlobalValue; -class Type; - -class DSNode; // Each node in the graph -class DSGraph; // A graph for a function -class DSNodeIterator; // Data structure graph traversal iterator //===----------------------------------------------------------------------===// /// DSNode - Data structure node class |