Author: Aaron Ballman Date: 2026-05-29T07:15:58-04:00 New Revision: 9f34092cbdc079e17fb42c4c911f5e90ffbb7f14
URL: https://github.com/llvm/llvm-project/commit/9f34092cbdc079e17fb42c4c911f5e90ffbb7f14 DIFF: https://github.com/llvm/llvm-project/commit/9f34092cbdc079e17fb42c4c911f5e90ffbb7f14.diff LOG: [C23] Combine two proposals on C status tracking page (#200239) N2601 is what added Annex H for the interchange and extended floating point types. N2844 removed default argument promotions for the types in Annex H. So these two proposals really do go together. Added: Modified: clang/www/c_status.html Removed: ################################################################################ diff --git a/clang/www/c_status.html b/clang/www/c_status.html index 5270033471167..13eb5f3025a63 100644 --- a/clang/www/c_status.html +++ b/clang/www/c_status.html @@ -830,11 +830,6 @@ <h2 id="c2x">C23 implementation status</h2> <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2841.htm">N2841</a></td> <td class="full" align="center">Clang 15</td> </tr> - <tr> - <td>Remove default argument promotions for _FloatN types</td> - <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2844.pdf">N2844</a></td> - <td class="none" align="center">No</td> - </tr> <tr> <td>Revised Suggestions of Change for Numerically Equal/Equivalent</td> <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2847.pdf">N2847</a></td> @@ -893,11 +888,17 @@ <h2 id="c2x">C23 implementation status</h2> <td class="full" align="center">Yes</td> </tr> <!-- May 2022 Papers --> - <tr> - <td>Annex X (replacing Annex H) for IEC 60559 interchange</td> - <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2601.pdf">N2601</a></td> - <td class="none" align="center">No</td> + <tr id="annex-h"> + <td rowspan="3">Annex H (interchange and extended types)</td> </tr> + <tr> + <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2601.pdf">N2601</a></td> + <td class="none" align="center">No</td> + </tr> + <tr> + <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2844.pdf">N2844</a></td> + <td class="none" align="center">No</td> + </tr> <tr> <td>Indeterminate Values and Trap Representations</td> <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2861.pdf">N2861</a></td> _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
