[flang-commits] [PATCH] D122038: [flang] Initial UTF-8 support in runtime I/O

Jean Perier via Phabricator via flang-commits flang-commits at lists.llvm.org
Tue Mar 22 02:49:45 PDT 2022


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

LGTM



================
Comment at: flang/runtime/utf.cpp:13
+
+const std::uint8_t UTF8FirstByteTable[256]{
+  /* 00 - 7F:  7 bit payload in single byte */
----------------
You could use `// clang-format off` and `// clang-format on` around `UTF8FirstByteTable` to prevent anyone from destroying the human readable format of this table when running clang-format.


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

https://reviews.llvm.org/D122038



More information about the flang-commits mailing list