diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-21 20:23:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-21 20:23:48 +0000 |
commit | 31f8499e83dc4dccbb57ea7e76d1fd49b7010d0c (patch) | |
tree | 7311a395f4b05b01958cb55d80ba5432ad7f32c3 /lib/VMCore/Pass.cpp | |
parent | 23e1492bb1e67f740c232abe985ec6d609ffae63 (diff) |
Finegrainify namespacification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Pass.cpp')
-rw-r--r-- | lib/VMCore/Pass.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp index b387fc3524..40a3b7d17f 100644 --- a/lib/VMCore/Pass.cpp +++ b/lib/VMCore/Pass.cpp @@ -20,8 +20,7 @@ #include "Support/STLExtras.h" #include "Support/TypeInfo.h" #include <set> - -namespace llvm { +using namespace llvm; // IncludeFile - Stub function used to help linking out. IncludeFile::IncludeFile(void*) {} @@ -469,5 +468,3 @@ void PassRegistrationListener::enumeratePasses() { E = PassInfoMap->end(); I != E; ++I) passEnumerate(I->second); } - -} // End llvm namespace |