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/BottomUpClosure.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/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 66990fd923..ea4a326fbe 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -19,8 +19,7 @@ #include "Support/Statistic.h" #include "Support/Debug.h" #include "DSCallSiteIterator.h" - -namespace llvm { +using namespace llvm; namespace { Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph"); @@ -317,5 +316,3 @@ void BUDataStructures::calculateGraph(DSGraph &Graph) { //Graph.writeGraphToFile(std::cerr, "bu_" + F.getName()); } - -} // End llvm namespace |