Eliminate some unneccesary #includes and forward decls
llvm-svn: 4475
This commit is contained in:
parent
5b55d9183d
commit
5ef09c401b
|
|
@ -8,20 +8,6 @@
|
||||||
#define LLVM_ANALYSIS_DSGRAPH_H
|
#define LLVM_ANALYSIS_DSGRAPH_H
|
||||||
|
|
||||||
#include "llvm/Analysis/DSNode.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.
|
/// DSGraph - The graph that represents a function.
|
||||||
|
|
|
||||||
|
|
@ -8,20 +8,6 @@
|
||||||
#define LLVM_ANALYSIS_DSNODE_H
|
#define LLVM_ANALYSIS_DSNODE_H
|
||||||
|
|
||||||
#include "llvm/Analysis/DSSupport.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
|
/// DSNode - Data structure node class
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue