aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Mangler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/Mangler.cpp')
-rw-r--r--lib/Support/Mangler.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Support/Mangler.cpp b/lib/Support/Mangler.cpp
index 567fe05e32..699ecd1a65 100644
--- a/lib/Support/Mangler.cpp
+++ b/lib/Support/Mangler.cpp
@@ -15,8 +15,7 @@
#include "llvm/Module.h"
#include "llvm/Type.h"
#include "Support/StringExtras.h"
-
-namespace llvm {
+using namespace llvm;
static char HexDigit(int V) {
return V < 10 ? V+'0' : V+'A'-10;
@@ -100,5 +99,3 @@ Mangler::Mangler(Module &m, bool addUnderscorePrefix)
else
FoundNames.insert(I->getName()); // Otherwise, keep track of name
}
-
-} // End llvm namespace