aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/Mangler.cpp
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-11-11 22:41:34 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-11-11 22:41:34 +0000
commitd0fde30ce850b78371fd1386338350591f9ff494 (patch)
tree83bb73e83f54fc8e1e474d116250ae2779562f7e /lib/Support/Mangler.cpp
parent0d723acf15b0326e2df09ecb614b02a617f536e4 (diff)
Put all LLVM code into the llvm namespace, as per bug 109.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9903 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Mangler.cpp')
-rw-r--r--lib/Support/Mangler.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Support/Mangler.cpp b/lib/Support/Mangler.cpp
index 44c697d3d8..567fe05e32 100644
--- a/lib/Support/Mangler.cpp
+++ b/lib/Support/Mangler.cpp
@@ -16,6 +16,8 @@
#include "llvm/Type.h"
#include "Support/StringExtras.h"
+namespace llvm {
+
static char HexDigit(int V) {
return V < 10 ? V+'0' : V+'A'-10;
}
@@ -99,3 +101,4 @@ Mangler::Mangler(Module &m, bool addUnderscorePrefix)
FoundNames.insert(I->getName()); // Otherwise, keep track of name
}
+} // End llvm namespace