[clang] e2ab606 - Add N2562 to the C status page
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Mon Aug 22 06:47:13 PDT 2022
Author: Aaron Ballman
Date: 2022-08-22T09:46:12-04:00
New Revision: e2ab6061a976400df672842dc2af76b527fa421a
URL: https://github.com/llvm/llvm-project/commit/e2ab6061a976400df672842dc2af76b527fa421a
DIFF: https://github.com/llvm/llvm-project/commit/e2ab6061a976400df672842dc2af76b527fa421a.diff
LOG: Add N2562 to the C status page
It was originally left off thinking the paper only impacts the C
standard library, but Clang supports diagnostics for incorrect use of
a format specifier, so this paper has some frontend impacts as well.
Added:
Modified:
clang/www/c_status.html
Removed:
################################################################################
diff --git a/clang/www/c_status.html b/clang/www/c_status.html
index bae3ed5d4195b..5eefdda4cc45b 100644
--- a/clang/www/c_status.html
+++ b/clang/www/c_status.html
@@ -816,6 +816,17 @@ <h2 id="c2x">C2x implementation status</h2>
<td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2607.pdf">N2607</a></td>
<td class="partial" align="center">Partial</td>
</tr>
+ <tr>
+ <td>Unclear type relationship between a format specifier and its argument</td>
+ <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2562.pdf">N2562</a></td>
+ <td class="partial" align="center">
+ <details><summary>Partial</summary>
+ Clang supports diagnostics checking format specifier validity, but
+ does not yet account for all of the changes in this paper, especially
+ regarding length modifiers like <code>h</code> and <code>hh</code>.
+ </details>
+ </td>
+ </tr>
<!-- Apr 2021 Papers -->
<tr>
<td>String functions for freestanding implementations</td>
More information about the cfe-commits
mailing list