diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-12 23:11:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-12 23:11:14 +0000 |
commit | 9a92729581c85891ae86d28281bdec7b5e4a702d (patch) | |
tree | 9ad49e10ea1155327fdb882f920038e67ddea7d9 /lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | bfcadffd4c1f70e22748068f0335f40d307c07f0 (diff) |
Fine-grainify namespaces for this library
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9948 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/TopDownClosure.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index 696368a866..6912af437b 100644 --- a/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -20,8 +20,7 @@ #include "llvm/Analysis/DSGraph.h" #include "Support/Debug.h" #include "Support/Statistic.h" - -namespace llvm { +using namespace llvm; namespace { RegisterAnalysis<TDDataStructures> // Register the pass @@ -311,5 +310,3 @@ void TDDataStructures::inlineGraphIntoCallees(DSGraph &Graph) { << Graph.getFunctionNames() << " [" << Graph.getGraphSize() << "+" << Graph.getFunctionCalls().size() << "]\n"); } - -} // End llvm namespace |