MSVC's implementation of isalnum will assert on characters > 255, so we need to use...
authorAaron Ballman <aaron@aaronballman.com>
Mon, 16 Jul 2012 16:18:18 +0000 (16:18 +0000)
committerAaron Ballman <aaron@aaronballman.com>
Mon, 16 Jul 2012 16:18:18 +0000 (16:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160286 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index 669d308b1a1c80cffce755365643fd5b9a077987..aedb86b3eed0d4924b4117e780ff3e20cc7fdd1a 100644 (file)
@@ -100,7 +100,11 @@ static void PrintLLVMName(raw_ostream &OS, StringRef Name, PrefixType Prefix) {
   bool NeedsQuotes = isdigit(Name[0]);
   if (!NeedsQuotes) {
     for (unsigned i = 0, e = Name.size(); i != e; ++i) {
-      char C = Name[i];
+      // By making this unsigned, the value passed in to isalnum will always be
+      // in the range 0-255.  This is important when building with MSVC because
+      // its implementation will assert.  This situation can arise when dealing
+      // with UTF-8 multibyte characters.
+      unsigned char C = Name[i];
       if (!isalnum(C) && C != '-' && C != '.' && C != '_') {
         NeedsQuotes = true;
         break;