commit | 960707c335b85fa0df0bff6400fd4e5f19ac0df4 | [log] [tgz] |
---|---|---|
author | Brian Gaeke <gaeke@uiuc.edu> | Tue Nov 11 22:41:34 2003 +0000 |
committer | Brian Gaeke <gaeke@uiuc.edu> | Tue Nov 11 22:41:34 2003 +0000 |
tree | fcd6bd0a802eff2ba6d9bcfef369241d5b79d06a | |
parent | da3f675edd0b0ffa480c1bec97a2a701d31e4ca8 [diff] [blame] |
Put all LLVM code into the llvm namespace, as per bug 109. llvm-svn: 9903
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp index b5e9d8c..9d6107c 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp +++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp
@@ -27,6 +27,8 @@ #include "llvm/Function.h" #include "llvm/Pass.h" +namespace llvm { + //this is used to color vertices //during DFS @@ -181,3 +183,5 @@ findAndInstrumentBackEdges(F); return true; // Function was modified. } + +} // End llvm namespace