[PATCH] D109854: Support Unicode 14 identifiers

Aaron Ballman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 16 07:15:17 PDT 2021


aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.

LGTM with a minor comment on comments that I'll handle when I land this.



================
Comment at: clang/test/Lexer/unicode.c:37-41
+extern int  \u1B4C;     //BALINESE LETTER ARCHAIC JNYA - Added in Unicode 14
+extern int  \U00016AA2; //TANGSA LETTER GA - Added in Unicode 14
+// This character doesn't have the XID_Start property
+extern int  \U00016AC0; //TANGSA DIGIT ZERO  // expected-error {{expected unqualified-id}}
+extern int _\U00016AC0; //TANGSA DIGIT ZERO
----------------
When I land this, I'm going to add extra whitespace between the comment marker and the comment content.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D109854/new/

https://reviews.llvm.org/D109854



More information about the cfe-commits mailing list