From: Nuno Lopes Date: Mon, 21 Sep 2009 14:11:56 +0000 (+0000) Subject: initialize SymbolsCanStartWithDigit to false by default X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa9a3027bcf2dd78762bf5e581414de45e092bb6;p=oota-llvm.git initialize SymbolsCanStartWithDigit to false by default git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82454 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp index a5fbf264c62..33eb0449e82 100644 --- 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.