From fa9a3027bcf2dd78762bf5e581414de45e092bb6 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Mon, 21 Sep 2009 14:11:56 +0000 Subject: [PATCH] initialize SymbolsCanStartWithDigit to false by default git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82454 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Mangler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.