projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2f4fa3
)
initialize SymbolsCanStartWithDigit to false by default
author
Nuno Lopes
<nunoplopes@sapo.pt>
Mon, 21 Sep 2009 14:11:56 +0000
(14:11 +0000)
committer
Nuno Lopes
<nunoplopes@sapo.pt>
Mon, 21 Sep 2009 14:11:56 +0000
(14:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82454
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/Mangler.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/Mangler.cpp
b/lib/VMCore/Mangler.cpp
index a5fbf264c62cfa77757a618cacd5b6a43ca00679..33eb0449e824067bff0a616f48b945c94597060c 100644
(file)
--- a/
lib/VMCore/Mangler.cpp
+++ b/
lib/VMCore/Mangler.cpp
@@
-208,7
+208,7
@@
Mangler::Mangler(Module &M, const char *prefix, const char *privatePrefix,
const char *linkerPrivatePrefix)
: Prefix(prefix), PrivatePrefix(privatePrefix),
LinkerPrivatePrefix(linkerPrivatePrefix), UseQuotes(false),
- NextAnonGlobalID(1) {
+
SymbolsCanStartWithDigit(false),
NextAnonGlobalID(1) {
std::fill(AcceptableChars, array_endof(AcceptableChars), 0);
// Letters and numbers are acceptable.