diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
commit | cf3056db0fee1db7921214b1f25cea04e959e105 (patch) | |
tree | 0d3986942f0be9fba36271f39cf3df5b85c02a67 /lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp | |
parent | c00d23a727f143bdd24f29d529ebc2cc3230bef8 (diff) |
Regularize header file comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp b/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp index 74209b7ea5..d2e8d14e84 100644 --- a/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp +++ b/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp @@ -1,7 +1,9 @@ -//===-- InstLoops.cpp ---------------------------------------- ---*- C++ -*--=// +//===-- InstLoops.cpp -----------------------------------------------------===// +// // Pass to instrument loops // // At every backedge, insert a counter for that backedge and a call function +// //===----------------------------------------------------------------------===// #include "llvm/Analysis/Dominators.h" @@ -27,7 +29,7 @@ enum Color{ BLACK }; -namespace{ +namespace { typedef std::map<BasicBlock *, BasicBlock *> BBMap; struct InstLoops : public FunctionPass { virtual void getAnalysisUsage(AnalysisUsage &AU) const { |