]> granicus.if.org Git - clang/commitdiff
Fix the range for Malayam UCNs in C99.
authorJoey Gouly <joey.gouly@gmail.com>
Wed, 5 Feb 2014 15:32:23 +0000 (15:32 +0000)
committerJoey Gouly <joey.gouly@gmail.com>
Wed, 5 Feb 2014 15:32:23 +0000 (15:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200845 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/UnicodeCharSets.h
test/Preprocessor/ucn-allowed-chars.c

index 01ae7e839dfd10375c3484a83e4bb48f73450f9e..12b24564bfd3240f63c936a16d86ea51a8ea1403 100644 (file)
@@ -298,7 +298,7 @@ static const llvm::sys::UnicodeCharRange C99AllowedIDCharRanges[] = {
   // Malayam
   { 0x0D02, 0x0D03 }, { 0x0D05, 0x0D0C }, { 0x0D0E, 0x0D10 },
   { 0x0D12, 0x0D28 }, { 0x0D2A, 0x0D39 }, { 0x0D3E, 0x0D43 },
-  { 0x0D46, 0x0D48 }, { 0x0D4A, 0x0D4D }, { 0x0D60, 0x0D60 },
+  { 0x0D46, 0x0D48 }, { 0x0D4A, 0x0D4D }, { 0x0D60, 0x0D61 },
 
   // Digits (11)
   { 0x0D66, 0x0D6F },
index d49aa9cbb46ec9e073b4fc7bad6366070c3463be..d7d67fe0d60cc2371a459d0d6fe58dff9e3541d1 100644 (file)
@@ -17,7 +17,7 @@ extern char a\uFFFF; // none
 // Identifier initial characters
 extern char \u0E50; // C++03, C11, C++11
 extern char \u0300; // disallowed initially in C11/C++11, always in C99/C++03
-
+extern char \u0D61; // C99, C11, C++03, C++11