diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:40:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:40:31 +0000 |
commit | c2996d9a8be56a9a94a7c91c733e6e27e347b7db (patch) | |
tree | afee2cf2ae3ba605860ca2d015a303dde9bb3ca4 /llvm/lib/Transforms/Instrumentation | |
parent | 3dfd3b5a3d87f67052e698ce55a3dc5b03d14bdb (diff) | |
download | bcm5719-llvm-c2996d9a8be56a9a94a7c91c733e6e27e347b7db.tar.gz bcm5719-llvm-c2996d9a8be56a9a94a7c91c733e6e27e347b7db.zip |
Changes to work with Statistics rework
* Renamed StatisticReporter.h/cpp to Statistic.h/cpp
* Broke constructor to take two const char * arguments instead of one, so
that indendation can be taken care of automatically.
* Sort the list by pass name when printing
* Make sure to print all statistics as a group, instead of randomly when
the statistics dtors are called.
* Updated ProgrammersManual with new semantics.
llvm-svn: 4004
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.h b/llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.h index 7fba0162d15..11713ebb955 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.h +++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/Graph.h @@ -9,18 +9,12 @@ #ifndef LLVM_GRAPH_H #define LLVM_GRAPH_H -#include "Support/StatisticReporter.h" - +#include "llvm/BasicBlock.h" #include <map> -#include <vector> #include <cstdlib> -#include "llvm/BasicBlock.h" - -class BasicBlock; class Module; class Function; -class Instruction; //Class Node //It forms the vertex for the graph |