aboutsummaryrefslogtreecommitdiff
path: root/clang/www/c_status.html
blob: bc27b20ce6487ef6e40fe56298be382cfa2a7b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  <title>Clang - C Programming Language Status</title>
  <link type="text/css" rel="stylesheet" href="menu.css">
  <link type="text/css" rel="stylesheet" href="content.css">
  <style type="text/css">
    .none { background-color: #FFCCCC }
    .partial { background-color: #FFE0B0 }
    .unreleased { background-color: #FFFF99 }
    .unknown { background-color: #EBCAFE }
    .full { background-color: #CCFF99 }
    .na { background-color: #DDDDDD }
    :target { background-color: #FFFFBB; outline: #DDDD55 solid thin; }
    th { background-color: #FFDDAA }
    td { vertical-align: middle }
    tt { white-space: nowrap }
  </style>
</head>
<body>

<!--#include virtual="menu.html.incl"-->

<div id="content">

<!--*************************************************************************-->
<h1>C Support in Clang</h1>
<!--*************************************************************************-->

<p>Clang implements the following published and upcoming ISO C standards:</p>

<table width="689" border="1" cellspacing="0">
<tr>
 <th>Language Standard</th>
 <th>Flag</th>
 <th>Available in Clang?</th>
</tr>
<tr>
 <td><a href="#c89">C89</a></td>
 <td><tt>-std=c89</tt></td>
 <td class="full" align="center">Yes</td>
</tr>
<tr>
 <td><a href="#c99">C99</a></td>
 <td><tt>-std=c99</tt></td>
 <td class="unknown" align="center">Almost certainly</td>
</tr>
<tr>
 <td><a href="#c11">C11</a></td>
 <td><tt>-std=c11</tt></td>
 <td class="unknown" align="center">Probably</td>
</tr>
<tr>
 <td><a href="#c17">C17</a></td>
 <td><tt>-std=c17</tt></td>
 <td class="unknown" align="center">Maybe?</td>
</tr>
<tr>
 <td><a href="#c2x">C23</a></td>
 <td><tt>-std=c23</tt></td>
 <td class="partial" align="center">Partial</td>
</tr>
</table>

<p>The implementation status for C99, C11, C17, and C23 are currently under
investigation. Any proposal whose status in Clang is currently unknown
will be marked in <span class="unknown">magenta</span>.</p>

<p>The Clang community is continually striving to improve C standards
compliance between releases by submitting and tracking
<a href="c_dr_status.html">C Defect Reports</a> and implementing resolutions as
they become available.</p>

<p>The <a href="https://github.com/llvm/llvm-project/issues/">LLVM bug tracker</a> uses
the "c", "c99", "c11", "c17", and "c23" labels to track known bugs with Clang's language
conformance.</p>

<h2 id="c89">C89 implementation status</h2>

<p>Clang implements all of the ISO 9899:1990 (C89) standard.</p>
<p>You can use Clang in C89 mode with the <code>-std=c89</code> or <code>-std=c90</code> options.</p>

<h2 id="c99">C99 implementation status</h2>

<p>Clang implements a significant portion of the ISO 9899:1999 (C99) standard, but the status of individual proposals is still under investigation.</p>
<p>Note, the list of C99 features comes from the C99 committee draft. Not all C99 documents are publicly available, so the documents referenced in this section may be inaccurate, unknown, or not linked.</p>
<!-- https://www.open-std.org/jtc1/sc22/wg14/www/docs/n874.htm contains the
     final editor's report of what's been added to C99, but it includes more
     papers than are worth listing because it includes editorial and cleanup
     proposals in addition to feature proposals. When a paper is not available,
     I list the paper number from the editor's report, but do not hyperlink it.
     When I can't map the feature back to a paper, I mark it as unknown. -->
<p>You can use Clang in C99 mode with the <code>-std=c99</code> option.</p>

<details>
<summary>List of features and minimum Clang version with support</summary>

<table width="689" border="1" cellspacing="0">
 <tr>
    <th>Language Feature</th>
    <th>C99 Proposal</th>
    <th>Available in Clang?</th>
 </tr>
    <tr>
      <td>restricted character set support via digraphs and &lt;iso646.h&gt;</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>more precise aliasing rules via effective type</td>
      <td>Unknown</td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>restricted pointers</td>
      <td>N448</td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>variable length arrays</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n683.htm">N683</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>flexible array members</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>static and type qualifiers in parameter array declarators</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr id="complex">
      <td rowspan="6">complex and imaginary support in &lt;complex.h&gt;</td>
    </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n620.ps">N620</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n638.ps">N638</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n657.ps">N657</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n694.ps">N694</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n809.ps">N809</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
    <tr>
      <td>type-generic math macros in &lt;tgmath.h&gt;</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n693.ps">N693</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>the long long int type</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n601.ps">N601</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>increase minimum translation limits</td>
      <td>N590</td>
      <td class="full" align="center">Clang 3.2</td>
    </tr>
    <tr>
      <td>additional floating-point characteristics in &lt;float.h&gt;</td>
      <td>Unknown</td>
      <td class="full" align="center">Clang 16</td>
    </tr>
    <tr id="implicit int">
      <td rowspan="4">remove implicit int</td>
    </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n635.htm">N635</a></td>
        <td class="full" align="center">Yes</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n692.htm">N692</a></td>
        <td class="full" align="center">Yes</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n722.htm">N722</a></td>
        <td class="full" align="center">Yes</td>
      </tr>
    <tr>
      <td>reliable integer division</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n617.htm">N617</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>universal character names (\u and \U)</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>extended identifiers</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n717.htm">N717</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>hexadecimal floating-point constants</td>
      <td>N308</td>
      <!-- This is a total guess. N874 makes no mention of N308 being accepted,
           but it does mention *use* of hexadecimal floating-point constants in
           the Menlo Park minutes associated with N787. -->
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>compound literals</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n716.htm">N716</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>designated initializers</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n494.pdf">N494</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>// comments</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n644.htm">N644</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>extended integer types and library functions in &lt;inttypes.h&gt; and &lt;stdint.h&gt;</td>
      <td>Unknown</td>
      <!-- Seems to be related to https://www.open-std.org/jtc1/sc22/wg14/www/docs/n788.htm
           but that does not have any content for stdint.h. The next paper I could find on
           the topic was https://www.open-std.org/jtc1/sc22/wg14/www/docs/n851.htm but that
           implies stdint.h was already added. -->
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>remove implicit function declaration</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n636.htm">N636</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>preprocessor arithmetic done in intmax_t/uintmax_t</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n736.htm">N736</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>mixed declarations and code</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n740.htm">N740</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>new block scopes for selection and iteration statements</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>integer constant type rules</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n629.htm">N629</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>integer promotion rules</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n725.htm">N725</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>macros with a variable number of arguments</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n707.htm">N707</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>IEC 60559 support</td>
      <td>Unknown</td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>trailing comma allowed in enum declaration</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>inline functions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n741.htm">N741</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>boolean type in &lt;stdbool.h&gt;</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n815.htm">N815</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>idempotent type qualifiers</td>
      <td>N505</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>empty macro arguments</td>
      <td>N570</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>new structure type compatibility (tag compatibility)</td>
      <td>N522</td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>additional predefined macro names</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
      <!-- It is unknown which paper brought in this change, which was listed in
           the C99 front matter. After hunting around for what these changes are,
           I found a mention in the C99 rationale document that implementers who
           wish to add their own predefined macros must not start them with
           __STDC_, which was a new restriction in C99. As best I can tell, that
           is what this particular feature is about. -->
    </tr>
    <tr>
      <td>_Pragma preprocessing operator</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n634.ps">N634</a></td>
      <!-- This may not be quite right as it proposes a `pragma` operator and
           not a _Pragma operator. However, I didn't see further papers on the
           renamed form, so I assume this was accepted with modification. -->
      <td class="full" align="center">Yes</td>
    </tr>
    <tr id="standard pragmas">
      <td rowspan="3">standard pragmas</td>
    </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n631.htm">N631</a></td>
        <td class="full" align="center">Yes</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n696.ps">N696</a></td>
        <td class="full" align="center">Yes</td>
      </tr>
    <tr>
      <td>__func__ predefined identifier</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n611.ps">N611</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>va_copy macro</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n671.htm">N671</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>remove deprecation of aliased array parameters</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>conversion of array to pointer not limited to lvalues</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n835.pdf">N835</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>relaxed constraints on aggregate and union initialization</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n782.htm">N782</a></td>
      <td class="full" align="center">Clang 3.4</td>
    </tr>
    <tr>
      <td>relaxed restrictions on portable header names</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n772.htm">N772</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>return without an expression not permitted in function that returns a value</td>
      <td>Unknown</td>
      <td class="full" align="center">Yes</td>
    </tr>
</table>
</details>

<h2 id="c11">C11 implementation status</h2>

<p>Clang implements a significant portion of the ISO 9899:2011 (C11) standard, but the status of individual proposals is still under investigation.</p>
<p>You can use Clang in C11 mode with the <code>-std=c11</code> option (use <code>-std=c1x</code> in Clang 3.0 and earlier).</p>

<details>
<summary>List of features and minimum Clang version with support</summary>

<table width="689" border="1" cellspacing="0">
 <tr>
    <th>Language Feature</th>
    <th>C11 Proposal</th>
    <th>Available in Clang?</th>
 </tr>
    <tr>
      <td>A finer-grained specification for sequencing</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1252.htm">N1252</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Clarification of expressions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1282.pdf">N1282</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Extending the lifetime of temporary objects (factored approach)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1285.htm">N1285</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Requiring signed char to have no padding bits</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1310.htm">N1310</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Initializing static or external variables</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1311.pdf">N1311</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Conversion between pointers and floating types</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1316.htm">N1316</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Adding TR 19769 to the C Standard Library</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1326.pdf">N1326</a></td>
      <td class="full" align="center">Clang 3.3</td>
    </tr>
    <tr>
      <td>Static assertions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1330.pdf">N1330</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Parallel memory sequencing model proposal</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1349.htm">N1349</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Analyzability (#1, #4 - conditionally normative)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1350.htm">N1350</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>FLT_EVAL_METHOD issues (first change only)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1353.pdf">N1353</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>_Bool bit-fields</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1356.htm">N1356</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Technical corrigendum for C1X</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1359.htm">N1359</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Benign typedef redefinition</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1360.htm">N1360</a></td>
      <td class="full" align="center">Clang 3.1</td>
    </tr>
    <tr>
      <td>Thread-local storage</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1364.htm">N1364</a></td>
      <td class="full" align="center">Clang 3.3</td>
    </tr>
    <tr>
      <td>Constant expressions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1365.htm">N1365</a></td>
      <td class="full" align="center">Clang 16</td>
    </tr>
    <tr>
      <td>Contractions and expression evaluation methods</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1367.htm">N1367</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>FLT_EVAL_METHOD and return</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1382.htm">N1382</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Floating-point to int/_Bool conversions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1391.htm">N1391</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Analyzability (along the lines)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1394.htm">N1394</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Wide function returns (alternate proposal)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1396.htm">N1396</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr id="alignment">
      <td rowspan="3">Alignment</td>
    </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1397.htm">N1397</a></td>
        <td class="full" align="center">Clang 3.2</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1447.htm">N1447</a></td>
        <td class="full" align="center">Clang 3.2</td>
      </tr>
    <tr>
      <td>Anonymous member-structures and unions (modulo "name lookup")</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1406.pdf">N1406</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Completeness of types</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1439.pdf">N1439</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Generic macro facility</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1441.htm">N1441</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Dependency ordering for C memory model</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1444.htm">N1444</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Subsetting the standard</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1460.htm">N1460</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Assumed types in F.9.2</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1468.htm">N1468</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Supporting the 'noreturn' property in C1x</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1478.htm">N1478</a></td>
      <td class="full" align="center">Clang 3.3</td>
    </tr>
    <tr>
      <td>Updates to C++ memory model based on formalization</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1480.htm">N1480</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Explicit initializers for atomics</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1482.htm">N1482</a></td>
      <td class="full" align="center">Clang 4</td>
    </tr>
    <tr>
      <td>Atomics proposal (minus ternary op)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1485.pdf">N1485</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>UTF-8 string literals</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1488.htm">N1488</a></td>
      <td class="full" align="center">Clang 3.3</td>
    </tr>
    <tr>
      <td>Optimizing away infinite loops</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1509.pdf">N1509</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Conditional normative status for Annex G</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1514.pdf">N1514</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Creation of complex value</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1464.htm">N1464</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Recommendations for extended identifier characters for C and C++</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1518.htm">N1518</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Atomic C1x/C++0x compatibility refinements (1st part only)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1526.pdf">N1526</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Atomic bitfields implementation defined</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1530.pdf">N1530</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Small fix for the effect of alignment on struct/union type compatibility</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1532.htm">N1532</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Synthesis re _Atomic</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1537.htm">N1537</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Clarification for wide evaluation</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1531.pdf">N1531</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
</table>
</details>

<h2 id="c17">C17 implementation status</h2>

<p>There are no major changes in this edition, only technical corrections and clarifications that are tracked by Defect Report.</p>
<p>You can use Clang in C17 mode with the <code>-std=c17</code> or <code>-std=c18</code> options (available in Clang 6 and later).</p>

<h2 id="c2x">C23 implementation status</h2>

<p>Clang has support for some of the features of the C standard following C17, informally referred to as C23.</p>

<p>You can use Clang in C23 mode with the <code>-std=c23</code> option (available in Clang 18 and later) or with the
   <code>-std=c2x</code> option (available in Clang 9 and later).</p>

<details open>
<summary>List of features and minimum Clang version with support</summary>

<table width="689" border="1" cellspacing="0">
 <tr>
    <th>Language Feature</th>
    <th>C23 Proposal</th>
    <th>Available in Clang?</th>
 </tr>
    <!-- Pre-Oct 2019 Papers -->
    <tr>
      <td>Evaluation formats</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2186.pdf">N2186</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Clarifying the restrict Keyword v2</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2260.pdf">N2660</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Harmonizing static_assert with C++</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2265.pdf">N2665</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <tr>
      <td>nodiscard attribute</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2267.pdf">N2267</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <tr>
      <td>maybe_unused attribute</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2270.pdf">N2270</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <tr id="TS18661">
      <td rowspan="9">TS 18661 Integration</td>
    </tr>
      <tr> <!-- Pre-Oct 2019 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2314.pdf">N2314</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr> <!-- Pre-Oct 2019 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2341.pdf">N2341</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr> <!-- Pre-Oct 2019 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2401.pdf">N2401</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr> <!-- Pre-Oct 2019 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2359.pdf">N2359</a></td>
        <td class="none" align="center">No</td>
      </tr>
      <tr> <!-- Nov 2020 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2546.pdf">N2546</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr>
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2580.htm">N2580</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr> <!-- Apr 2021 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2640.htm">N2640</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
      <tr> <!-- Sep 2021 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2755.htm">N2755</a></td>
        <td class="unknown" align="center">Unknown</td>
      </tr>
    <tr>
      <td>Preprocessor line numbers unspecified</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2322.htm">N2322</a></td>
      <td class="partial" align="center">
        <details><summary>Partial</summary>
        The line number associated with a macro invocation is not the line
        number of the first character of the macro name in the invocation.
        Additionally, Clang may not associate the line number of a pp-directive
        with the first <code>#</code> token. As these are recommended practices
        and not normative requirements, Clang's behavior is still conforming.
        </details>
      </td>
    </tr>
    <tr>
      <td>deprecated attribute</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2334.pdf">N2334</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <tr id="Attributes">
      <td rowspan="3">Attributes</td>
    </tr>
      <tr> <!-- Pre-Oct 2019 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2335.pdf">N2335</a></td>
        <td class="full" align="center">Clang 9</td>
      </tr>
      <tr> <!-- Aug 2020 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2554.pdf">N2554</a></td>
        <td class="full" align="center">Clang 9</td>
      </tr>
    <tr>
      <td>Defining new types in offsetof</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2350.htm">N2350</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>fallthrough attribute</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2408.pdf">N2408</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <tr>
      <td>Two's complement sign representation</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2412.pdf">N2412</a></td>
      <td class="full" align="center">Clang 14</td>
    </tr>
    <tr>
      <td>Adding the u8 character prefix</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2418.pdf">N2418</a></td>
      <td class="full" align="center">Clang 15</td>
    </tr>
    <tr>
      <td>Remove support for function definitions with identifier lists</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2432.pdf">N2432</a></td>
      <td class="full" align="center">Clang 15</td>
    </tr>
    <!-- Oct 2019 Papers -->
    <tr>
      <td>*_IS_IEC_60559 feature test macros</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2379.htm">N2379</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Annex F.8 update for implementation extensions and rounding</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2384.pdf">N2384</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>_Bool definitions for true and false</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2393.pdf">N2393</a></td>
      <td class="na" align="center">Subsumed by N2935</td>
    </tr>
    <!-- Mar 2020 Papers -->
    <tr>
      <td>[[nodiscard("should have a reason")]]</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2448.pdf">N2448</a></td>
      <td class="full" align="center">Clang 10</td>
    </tr>
    <tr>
      <td>Allowing unnamed parameters in function definitions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2480.pdf">N2480</a></td>
      <td class="full" align="center">Clang 11</td>
    </tr>
    <!-- Aug 2020 Papers -->
    <tr>
      <td>Free positioning of labels inside compound statements</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2508.pdf">N2508</a></td>
      <td class="full" align="center">Clang 18</td>
    </tr>
    <tr>
      <td>Clarification request for C17 example of undefined behavior</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2517.pdf">N2517</a></td>
      <td class="none" align="center">No</td>
    </tr>
    <tr>
      <td>Querying attribute support</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2553.pdf">N2553</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <!-- Nov 2020 Papers -->
    <tr>
      <td>Binary literals</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2549.pdf">N2549</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <tr>
      <td>Allow duplicate attributes</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2557.pdf">N2557</a></td>
      <td class="full" align="center">Clang 13</td>
    </tr>
    <tr>
      <td>Character encoding of diagnostic text</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2563.pdf">N2563</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>What we think we reserve</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2572.pdf">N2572</a></td>
      <td class="partial" align="center">Partial</td>
    </tr>
    <tr>
      <td>Remove mixed wide string literal concatenation</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2594.htm">N2594</a></td>
      <td class="full" align="center">Clang 9</td>
    </tr>
    <tr>
      <td>Update to IEC 60559:2020</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2600.pdf">N2600</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Compatibility of Pointers to Arrays with Qualifiers</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2607.pdf">N2607</a></td>
      <td class="partial" align="center">
        <details><summary>Partial</summary>
          Much of the proposal is implemented, but Clang lacks pedantic diagnostics
          in C17 and earlier regarding use of incompatible pointer types as an
          extension. Further, Clang does not properly compute the correct result
          type for the <code>?:</code> operator when the result type should be a
          qualified array type.
        </details>
      </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="full" align="center">Clang 16</td>
    </tr>
    <!-- Apr 2021 Papers -->
    <tr>
      <td>String functions for freestanding implementations</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2524.htm">N2524</a></td>
      <td class="none" align="center">No</td>
    </tr>
    <tr>
      <td>Digit separators</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2626.pdf">N2626</a></td>
      <td class="full" align="center">Clang 13</td>
    </tr>
    <tr>
      <td>Missing +(x) in table</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2641.htm">N2641</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Add support for preprocessing directives elifdef and elifndef</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2645.pdf">N2645</a></td>
      <td class="full" align="center">Clang 13</td>
    </tr>
    <!-- Jun 2021 Papers -->
    <tr>
      <td>[[maybe_unused]] for labels</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2662.pdf">N2662</a></td>
      <td class="full" align="center">Clang 16</td>
    </tr>
    <tr>
      <td>Zeros compare equal</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2670.pdf">N2670</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Negative values</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2671.pdf">N2671</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>5.2.4.2.2	cleanup</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2672.pdf">N2672</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Towards Integer Safety</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2683.pdf">N2683</a></td>
      <td class="full" align="center">Clang 18</td>
    </tr>
    <tr id="_BitInt">
      <td rowspan="5">Adding Fundamental Type for N-bit Integers</td>
    </tr>
      <tr> <!-- Jun 2021 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2763.pdf">N2763</a></td>
        <td class="full" align="center">Clang 15</td>
      </tr>
      <tr> <!-- Feb 2022 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2775.pdf">N2775</a></td>
        <td class="full" align="center">Clang 15</td>
      </tr>
      <tr> <!-- Jul 2022 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2969.htm">N2969</a></td>
        <td class="full" align="center">Clang 15</td>
      </tr>
      <tr> <!-- Jul 2022 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3035.pdf">N3035</a></td>
        <td class="full" align="center">Clang 15</td>
      </tr>
    <!-- Sep 2021 Papers -->
    <tr>
      <td>#warning directive</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2686.pdf">N2686</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Sterile characters</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2688.pdf">N2686</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Numerically equal</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2716.htm">N2716</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>char16_t & char32_t string literals shall be UTF-16 & UTF-32</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2728.htm">N2728</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>IEC 60559 binding</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2749.pdf">N2749</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>__has_include for C</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2799.pdf">N2799</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <!-- Dec 2021 Papers -->
    <tr>
      <td>Annex F overflow and underflow</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2747.pdf">N2747</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Remove UB from Incomplete Types in Function Parameters</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2770.pdf">N2770</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Variably-modified types</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2778.pdf">N2778</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Types do not have types</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2781.pdf">N2781</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>5.2.4.2.2	cleanup (N2672 update)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2806.pdf">N2806</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Allow 16-bit ptrdiff_t</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2808.htm">N2808</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Proposal to update CFP freestanding requirements</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2823.pdf">N2823</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Types and sizes</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2838.htm">N2838</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Clarifying integer terms</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2837.pdf">N2837</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Clarification for max exponent macros</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2843.pdf">N2843</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Clarification about expression transformations</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2846.pdf">N2846</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Contradiction about INFINITY macro</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2848.pdf">N2848</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Require exact-width integer type interfaces</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2872.htm">N2872</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <!-- Feb 2022 (Parts 1 & 2) Papers -->
    <tr>
      <td>@, $, and ‘ in the source/execution character set</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2701.htm">N2701</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Quantum exponent of NaN (version 2)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2754.htm">N2754</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>The noreturn attribute</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2764.pdf">N2764</a></td>
      <td class="full" align="center">Clang 15</td>
    </tr>
    <tr>
      <td>*_HAS_SUBNORM==0 implies what?</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2797.htm">N2797</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Disambiguate the storage class of some compound literals</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2819.pdf">N2819</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Add annotations for unreachable control flow v2</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2826.pdf">N2826</a></td>
      <td class="full" align="center">Clang 17</td>
    </tr>
    <tr>
      <td>Unicode Sequences More Than 21 Bits are a Constraint Violation r0</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2828.htm">N2828</a></td>
      <td class="full" align="center">Clang 3.6</td>
    </tr>
    <tr>
      <td>Identifier Syntax using Unicode Standard Annex 31</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2836.pdf">N2836</a></td>
      <td class="full" align="center">Clang 15</td>
    </tr>
    <tr>
      <td>No function declarators without prototypes</td>
      <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>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>5.2.4.2.2 Cleanup, Again Again (N2806 update)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2879.pdf">N2879</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>char8_t: A type for UTF-8 characters and strings</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2653.htm">N2653</a></td>
      <td class="none" align="center">No</td>
    </tr>
    <tr>
      <td>Clarification for max exponent macros-update</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2882.pdf">N2882</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr id="InitializationWithCurlyBraces">
      <td rowspan="3">Consistent, Warningless, and Intuitive Initialization with {}</td>
    </tr>
      <tr> <!-- Feb 2022 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2900.htm">N2900</a></td>
        <td class="full" align="center">Clang 17</td>
      </tr>
      <tr> <!-- Jul 2022 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3011.htm">N3011</a></td>
        <td class="full" align="center">Clang 17</td>
      </tr>
    <tr id="typeof">
      <td rowspan="3">Not-so-magic: typeof</td>
    </tr>
      <tr> <!-- Feb 2022 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2927.htm">N2927</a></td>
        <td class="full" align="center">Clang 16</td>
      </tr>
      <tr> <!-- Jul 2022 -->
        <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2930.pdf">N2930</a></td>
        <td class="full" align="center">Clang 16</td>
      </tr>
    <tr>
      <td>Type annex tgmath narrowing macros with integer args v2</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2931.pdf">N2931</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Revise spelling of keywords v7</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2934.pdf">N2934</a></td>
      <td class="full" align="center">Clang 17</td>
    </tr>
    <tr>
      <td>Make false and true first-class language features v8</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2935.pdf">N2935</a></td>
      <td class="full" align="center">Clang 15</td>
    </tr>
    <tr>
      <td>Properly define blocks as part of the grammar v3</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2937.pdf">N2937</a></td>
      <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>
    <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>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Remove ATOMIC_VAR_INIT v2</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2886.htm">N2886</a></td>
      <td class="full" align="center">Clang 17</td>
    </tr>
    <tr>
      <td>Require exact-width integer type interfaces v2</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2888.htm">N2888</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Wording Change for Variably-Modified Types</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2992.pdf">N2992</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <!-- Jul 2022 Papers -->
    <tr>
      <td>Identifier syntax fixes</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2939.pdf">N2939</a></td>
      <td class="full" align="center">Clang 15</td>
    </tr>
    <tr>
      <td>Remove trigraphs??!</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2940.pdf">N2940</a></td>
      <td class="full" align="center">Clang 18</td>
    </tr>
    <tr>
      <td>Improved normal enumerations</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3029.htm">N3029</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Relax requirements for va_start</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2975.pdf">N2975</a></td>
      <td class="full" align="center">Clang 16</td>
    </tr>
    <tr>
      <td>Enhanced enumerations</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3030.htm">N3030</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Freestanding C and IEC 60559 conformance scope reduction</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2951.htm">N2951</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Unsequenced functions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2956.htm">N2956</a></td>
      <td class="none" align="center">No</td>
    </tr>
    <tr>
      <td>Comma ommission and deletion (__VA_OPT__)</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3033.htm">N3033</a></td>
      <td class="unknown" align="center">Unknown</td>
    </tr>
    <tr>
      <td>Underspecified object definitions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3006.htm">N3006</a></td>
      <td class="none" align="center">No</td>
    </tr>
    <tr>
      <td>Type inference for object declarations</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3007.htm">N3007</a></td>
      <td class="full" align="center">Clang 18</td>
    </tr>
    <tr>
      <td>constexpr for object definitions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3018.htm">N3018</a></td>
      <td class="unreleased" align="center">Clang 19</td>
    </tr>
    <tr>
      <td>Introduce storage class specifiers for compound literals</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3038.htm">N3038</a></td>
      <td class="none" align="center">No</td>
    </tr>
    <tr>
      <td>Identifier primary expressions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3034.pdf">N3034</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Introduce the nullptr constant</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3042.htm">N3042</a></td>
      <td class="full" align="center">Clang 17</td>
    </tr>
    <tr>
      <td>Memory layout of unions</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n2929.pdf">N2929</a></td>
      <td class="full" align="center">Yes</td>
    </tr>
    <tr>
      <td>Improved tag compatibility</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3037.pdf">N3037</a></td>
      <td class="none" align="center">No</td>
    </tr>
    <tr>
      <td>#embed</td>
      <td><a href="https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3017.htm">N3017</a></td>
      <td class="none" align="center">No</td>
    </tr>
</table>
</details>

</div>
</body>
</html>