reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
 1233
 1234
 1235
 1236
 1237
 1238
 1239
 1240
 1241
 1242
 1243
 1244
 1245
 1246
 1247
 1248
 1249
 1250
 1251
 1252
 1253
 1254
 1255
 1256
 1257
 1258
 1259
 1260
 1261
 1262
 1263
 1264
 1265
 1266
 1267
 1268
 1269
 1270
 1271
 1272
 1273
 1274
 1275
 1276
 1277
 1278
 1279
 1280
 1281
 1282
 1283
 1284
 1285
 1286
 1287
 1288
 1289
 1290
 1291
 1292
 1293
 1294
 1295
 1296
 1297
 1298
 1299
 1300
 1301
 1302
 1303
 1304
 1305
 1306
 1307
 1308
 1309
 1310
 1311
 1312
 1313
 1314
 1315
 1316
 1317
 1318
 1319
 1320
 1321
 1322
 1323
 1324
 1325
 1326
 1327
 1328
 1329
 1330
 1331
 1332
 1333
 1334
 1335
 1336
 1337
 1338
 1339
 1340
 1341
 1342
 1343
 1344
 1345
 1346
 1347
 1348
 1349
 1350
 1351
 1352
 1353
 1354
 1355
 1356
 1357
 1358
 1359
 1360
 1361
 1362
 1363
 1364
 1365
 1366
 1367
 1368
 1369
 1370
 1371
 1372
 1373
 1374
 1375
 1376
 1377
 1378
 1379
 1380
 1381
 1382
 1383
 1384
 1385
 1386
 1387
 1388
 1389
 1390
 1391
 1392
 1393
 1394
 1395
 1396
 1397
 1398
 1399
 1400
 1401
 1402
 1403
 1404
 1405
 1406
 1407
 1408
 1409
 1410
 1411
 1412
 1413
 1414
 1415
 1416
 1417
 1418
 1419
 1420
 1421
 1422
 1423
 1424
 1425
 1426
 1427
 1428
 1429
 1430
 1431
 1432
 1433
 1434
 1435
 1436
 1437
 1438
 1439
 1440
 1441
 1442
 1443
 1444
 1445
 1446
 1447
 1448
 1449
 1450
 1451
 1452
 1453
 1454
 1455
 1456
 1457
 1458
 1459
 1460
 1461
 1462
 1463
 1464
 1465
 1466
 1467
 1468
 1469
 1470
 1471
 1472
 1473
 1474
 1475
 1476
 1477
 1478
 1479
 1480
 1481
 1482
 1483
 1484
 1485
 1486
 1487
 1488
 1489
 1490
 1491
 1492
 1493
 1494
 1495
 1496
 1497
 1498
 1499
 1500
 1501
 1502
 1503
 1504
 1505
 1506
 1507
 1508
 1509
 1510
 1511
 1512
 1513
 1514
 1515
 1516
 1517
 1518
 1519
 1520
 1521
 1522
 1523
 1524
 1525
 1526
 1527
 1528
 1529
 1530
 1531
 1532
 1533
 1534
 1535
 1536
 1537
 1538
 1539
 1540
 1541
 1542
 1543
 1544
 1545
 1546
 1547
 1548
 1549
 1550
 1551
 1552
 1553
 1554
 1555
 1556
 1557
 1558
 1559
 1560
 1561
 1562
 1563
 1564
 1565
 1566
 1567
 1568
 1569
 1570
 1571
 1572
 1573
 1574
 1575
 1576
 1577
 1578
 1579
 1580
 1581
 1582
 1583
 1584
 1585
 1586
 1587
 1588
 1589
 1590
 1591
 1592
 1593
 1594
 1595
 1596
 1597
 1598
 1599
 1600
 1601
 1602
 1603
 1604
 1605
 1606
 1607
 1608
 1609
 1610
 1611
 1612
 1613
 1614
 1615
 1616
 1617
 1618
 1619
 1620
 1621
 1622
 1623
 1624
 1625
 1626
 1627
 1628
 1629
 1630
 1631
 1632
 1633
 1634
 1635
 1636
 1637
 1638
 1639
 1640
 1641
 1642
 1643
 1644
 1645
 1646
 1647
 1648
 1649
 1650
 1651
 1652
 1653
 1654
 1655
 1656
 1657
 1658
 1659
 1660
 1661
 1662
 1663
 1664
 1665
 1666
 1667
 1668
 1669
 1670
 1671
 1672
 1673
 1674
 1675
 1676
 1677
 1678
 1679
 1680
 1681
 1682
 1683
 1684
 1685
 1686
 1687
 1688
 1689
 1690
 1691
 1692
 1693
 1694
 1695
 1696
 1697
 1698
 1699
 1700
 1701
 1702
 1703
 1704
 1705
 1706
 1707
 1708
 1709
 1710
 1711
 1712
 1713
 1714
 1715
 1716
 1717
 1718
 1719
 1720
 1721
 1722
 1723
 1724
 1725
 1726
 1727
 1728
 1729
 1730
 1731
 1732
 1733
 1734
 1735
 1736
 1737
 1738
 1739
 1740
 1741
 1742
 1743
 1744
 1745
 1746
 1747
 1748
 1749
 1750
 1751
 1752
 1753
 1754
 1755
 1756
 1757
 1758
 1759
 1760
 1761
 1762
 1763
 1764
 1765
 1766
 1767
 1768
 1769
 1770
 1771
 1772
 1773
 1774
 1775
 1776
 1777
 1778
 1779
 1780
 1781
 1782
 1783
 1784
 1785
 1786
 1787
 1788
 1789
 1790
 1791
 1792
 1793
 1794
 1795
 1796
 1797
 1798
 1799
 1800
 1801
 1802
 1803
 1804
 1805
 1806
 1807
 1808
 1809
 1810
 1811
 1812
 1813
 1814
 1815
 1816
 1817
 1818
 1819
 1820
 1821
 1822
 1823
 1824
 1825
 1826
 1827
 1828
 1829
 1830
 1831
 1832
 1833
 1834
 1835
 1836
 1837
 1838
 1839
 1840
 1841
 1842
 1843
 1844
 1845
 1846
 1847
 1848
 1849
 1850
 1851
 1852
 1853
 1854
 1855
 1856
 1857
 1858
 1859
 1860
 1861
 1862
 1863
 1864
 1865
 1866
 1867
 1868
 1869
 1870
 1871
 1872
 1873
 1874
 1875
 1876
 1877
 1878
 1879
 1880
 1881
 1882
 1883
 1884
 1885
 1886
 1887
 1888
 1889
 1890
 1891
 1892
 1893
 1894
 1895
 1896
 1897
 1898
 1899
 1900
 1901
 1902
 1903
 1904
 1905
 1906
 1907
 1908
 1909
 1910
 1911
 1912
 1913
 1914
 1915
 1916
 1917
 1918
 1919
 1920
 1921
 1922
 1923
 1924
 1925
 1926
 1927
 1928
 1929
 1930
 1931
 1932
 1933
 1934
 1935
 1936
 1937
 1938
 1939
 1940
 1941
 1942
 1943
 1944
 1945
 1946
 1947
 1948
 1949
 1950
 1951
 1952
 1953
 1954
 1955
 1956
 1957
 1958
 1959
#ifdef GET_DIAG_ARRAYS
static const int16_t DiagArrays[] = {
  /* Empty */ -1,
  /* DiagArray1 */ diag::warn_pragma_message, -1,
  /* DiagArray2 */ diag::pp_hash_warning, -1,
  /* DiagArray3 */ diag::warn_cfstring_truncated, -1,
  /* DiagArray5 */ diag::warn_independentclass_attribute, diag::warn_ptr_independentclass_attribute, -1,
  /* DiagArray6 */ diag::warn_nsobject_attribute, -1,
  /* DiagArray8 */ diag::warn_abs_too_small, diag::warn_pointer_abs, diag::warn_unsigned_abs, diag::warn_wrong_absolute_value_type, -1,
  /* DiagArray9 */ diag::warn_abstract_final_class, -1,
  /* DiagArray10 */ diag::warn_abstract_vbase_init_ignored, -1,
  /* DiagArray12 */ diag::warn_taking_address_of_packed_member, -1,
  /* DiagArray13 */ diag::ext_typecheck_addrof_temporary, -1,
  /* DiagArray16 */ diag::warn_alloca, -1,
  /* DiagArray17 */ diag::warn_alloca_align_alignof, -1,
  /* DiagArray18 */ diag::warn_ambiguous_suitable_delete_function_found, -1,
  /* DiagArray19 */ diag::warn_misplaced_ellipsis_vararg, -1,
  /* DiagArray20 */ diag::warn_pp_ambiguous_macro, -1,
  /* DiagArray21 */ diag::ext_nested_name_member_ref_lookup_ambiguous, -1,
  /* DiagArray22 */ diag::ext_ovl_ambiguous_oper_binary_reversed, -1,
  /* DiagArray23 */ diag::warn_incompatible_analyzer_plugin_api, -1,
  /* DiagArray24 */ diag::ext_abstract_pack_declarator_parens, -1,
  /* DiagArray26 */ diag::warn_arc_bridge_cast_nonarc, -1,
  /* DiagArray27 */ diag::warn_arc_possible_repeated_use_of_weak, -1,
  /* DiagArray28 */ diag::warn_arc_object_memaccess, -1,
  /* DiagArray29 */ diag::warn_arc_perform_selector_leaks, -1,
  /* DiagArray30 */ diag::warn_arc_repeated_use_of_weak, -1,
  /* DiagArray31 */ diag::warn_arc_retain_cycle, -1,
  /* DiagArray32 */ diag::warn_arc_literal_assign, diag::warn_arc_retained_assign, diag::warn_arc_retained_property_assign, -1,
  /* DiagArray33 */ diag::warn_argument_invalid_range, -1,
  /* DiagArray34 */ diag::warn_array_index_exceeds_bounds, diag::warn_array_index_precedes_bounds, diag::warn_static_array_too_small, diag::warn_typecheck_zero_static_array_size, -1,
  /* DiagArray35 */ diag::warn_ptr_arith_exceeds_bounds, diag::warn_ptr_arith_precedes_bounds, -1,
  /* DiagArray37 */ diag::warn_asm_qualifier_ignored, diag::warn_file_asm_volatile, -1,
  /* DiagArray38 */ diag::warn_asm_mismatched_size_modifier, -1,
  /* DiagArray39 */ diag::warn_not_in_enum_assignment, -1,
  /* DiagArray40 */ diag::warn_assume_side_effects, -1,
  /* DiagArray42 */ diag::warn_atimport_in_framework_header, -1,
  /* DiagArray43 */ diag::warn_atomic_op_misaligned, -1,
  /* DiagArray44 */ diag::warn_atomic_implicit_seq_cst, -1,
  /* DiagArray45 */ diag::warn_atomic_op_has_invalid_memory_order, -1,
  /* DiagArray47 */ diag::warn_atomic_property_rule, -1,
  /* DiagArray48 */ diag::warn_attribute_packed_for_bitfield, -1,
  /* DiagArray50 */ diag::warn_drv_disabling_vptr_no_rtti_default, -1,
  /* DiagArray51 */ diag::warn_auto_module_import, -1,
  /* DiagArray52 */ diag::ext_auto_storage_class, -1,
  /* DiagArray53 */ diag::warn_auto_var_is_id, -1,
  /* DiagArray54 */ diag::warn_availability_and_unavailable, diag::warn_availability_on_static_initializer, diag::warn_availability_swift_unavailable_deprecated_only, diag::warn_availability_unknown_platform, diag::warn_availability_version_ordering, diag::warn_expected_consistent_version_separator, diag::warn_mismatched_availability, diag::warn_mismatched_availability_override, diag::warn_mismatched_availability_override_unavail, -1,
  /* DiagArray55 */ diag::warn_drv_avr_family_linking_stdlibs_not_implemented, diag::warn_drv_avr_gcc_not_found, diag::warn_drv_avr_libc_not_found, diag::warn_drv_avr_mcu_not_specified, diag::warn_drv_avr_stdlib_not_linked, -1,
  /* DiagArray56 */ diag::warn_fe_backend_plugin, -1,
  /* DiagArray57 */ diag::backslash_newline_space, -1,
  /* DiagArray58 */ diag::warn_bad_function_cast, -1,
  /* DiagArray60 */ diag::ext_rvalue_to_reference_access_ctor, diag::ext_rvalue_to_reference_temp_copy_no_viable, -1,
  /* DiagArray61 */ diag::ext_decomp_decl_cond, -1,
  /* DiagArray62 */ diag::warn_impcast_bitfield_precision_constant, -1,
  /* DiagArray63 */ diag::warn_bitfield_too_small_for_enum, diag::warn_signed_bitfield_enum_conversion, diag::warn_unsigned_bitfield_assigned_signed_enum, -1,
  /* DiagArray64 */ diag::warn_anon_bitfield_width_exceeds_type_width, diag::warn_bitfield_width_exceeds_type_width, -1,
  /* DiagArray65 */ diag::warn_precedence_bitwise_conditional, -1,
  /* DiagArray66 */ diag::warn_bitwise_op_in_bitwise_op, -1,
  /* DiagArray67 */ diag::warn_block_capture_autoreleasing, -1,
  /* DiagArray68 */ diag::warn_impcast_bool_to_null_pointer, -1,
  /* DiagArray70 */ diag::warn_bitwise_negation_bool, -1,
  /* DiagArray71 */ diag::warn_braces_around_scalar_init, -1,
  /* DiagArray72 */ diag::warn_objc_invalid_bridge, diag::warn_objc_invalid_bridge_to_cf, -1,
  /* DiagArray73 */ diag::warn_assume_aligned_too_great, -1,
  /* DiagArray74 */ diag::ext_pp_redef_builtin_macro, diag::ext_pp_undef_builtin_macro, -1,
  /* DiagArray75 */ diag::warn_builtin_chk_overflow, -1,
  /* DiagArray76 */ diag::warn_implicit_decl_requires_sysheader, -1,
  /* DiagArray77 */ diag::warn_zero_size_struct_union_compat, -1,
  /* DiagArray81 */ diag::ext_old_implicitly_unsigned_long_cxx, diag::warn_auto_storage_class, diag::warn_cxx11_compat_user_defined_literal, diag::warn_cxx11_keyword, diag::warn_cxx11_right_shift_in_template_arg, diag::warn_explicit_instantiation_inline_0x, diag::warn_explicit_instantiation_must_be_global_0x, diag::warn_explicit_instantiation_out_of_scope_0x, diag::warn_explicit_instantiation_unqualified_wrong_namespace_0x, diag::warn_old_implicitly_unsigned_long_cxx, -1,
  /* DiagArray82 */ diag::warn_deprecated_string_literal_conversion, -1,
  /* DiagArray84 */ diag::warn_cxx11_compat_reserved_user_defined_literal, -1,
  /* DiagArray85 */ diag::ext_alias_declaration, diag::ext_array_size_conversion, diag::ext_auto_type_specifier, diag::ext_cxx11_enum_fixed_underlying_type, diag::ext_defaulted_deleted_function, diag::ext_enum_friend, diag::ext_enumerator_list_comma_cxx, diag::ext_explicit_conversion_functions, diag::ext_extern_template, diag::ext_for_range, diag::ext_generalized_initializer_lists, diag::ext_nested_name_spec_is_enum, diag::ext_nonclass_type_friend, diag::ext_nonstatic_member_init, diag::ext_override_control_keyword, diag::ext_ref_qualifier, diag::ext_rvalue_reference, diag::ext_scoped_enum, diag::ext_static_data_member_in_union, diag::ext_template_arg_object_internal, diag::ext_template_outside_of_template, diag::ext_template_parameter_default_in_function_template, diag::ext_typename_outside_of_template, diag::ext_unelaborated_friend_type, diag::ext_variadic_templates, -1,
  /* DiagArray86 */ diag::ext_extra_semi_cxx11, -1,
  /* DiagArray87 */ diag::ext_inline_namespace, -1,
  /* DiagArray88 */ diag::ext_cxx11_longlong, -1,
  /* DiagArray89 */ diag::ext_cce_narrowing, diag::ext_init_list_constant_narrowing, diag::ext_init_list_type_narrowing, diag::ext_init_list_variable_narrowing, diag::warn_init_list_constant_narrowing, diag::warn_init_list_type_narrowing, diag::warn_init_list_variable_narrowing, -1,
  /* DiagArray90 */ diag::ext_binary_literal_cxx14, -1,
  /* DiagArray93 */ diag::ext_constexpr_body_invalid_stmt, diag::ext_constexpr_body_multiple_return, diag::ext_constexpr_local_var, diag::ext_constexpr_type_definition, diag::ext_cxx14_attr, diag::ext_decltype_auto_type_specifier, diag::ext_init_capture, diag::ext_variable_template, -1,
  /* DiagArray95 */ diag::warn_cxx17_compat_exception_spec_in_signature, -1,
  /* DiagArray97 */ diag::ext_auto_new_list_init, diag::ext_constexpr_if, diag::ext_constexpr_on_lambda_cxx17, diag::ext_cxx17_attr, diag::ext_decomp_decl, diag::ext_fold_expression, diag::ext_for_range_begin_end_types_differ, diag::ext_hex_literal_invalid, diag::ext_init_statement, diag::ext_inline_variable, diag::ext_multi_using_declaration, diag::ext_nested_namespace_definition, diag::ext_ns_enum_attribute, diag::ext_star_this_lambda_capture_cxx17, diag::ext_static_assert_no_message, diag::ext_template_template_param_typename, diag::ext_using_attribute_ns, diag::ext_using_declaration_pack, -1,
  /* DiagArray102 */ diag::warn_cxx20_compat_consteval, diag::warn_cxx20_compat_constinit, diag::warn_cxx2a_compat_aggregate_init_with_ctors, diag::warn_cxx2a_compat_explicit_bool, diag::warn_cxx2a_compat_spaceship, diag::warn_cxx2a_compat_utf8_string, diag::warn_cxx2a_keyword, -1,
  /* DiagArray104 */ diag::ext_cxx_designated_init, -1,
  /* DiagArray105 */ diag::ext_adl_only_template_id, diag::ext_bitfield_member_init, diag::ext_constexpr_body_invalid_stmt_cxx2a, diag::ext_constexpr_ctor_missing_init, diag::ext_constexpr_function_try_block_cxx2a, diag::ext_constexpr_local_var_no_init, diag::ext_constexpr_union_ctor_no_init, diag::ext_cxx2a_attr, diag::ext_decomp_decl_spec, diag::ext_defaulted_comparison, diag::ext_equals_this_lambda_capture_cxx2a, diag::ext_for_range_init_stmt, diag::ext_init_capture_pack, diag::ext_inline_nested_namespace_definition, diag::ext_lambda_template_parameter_list, diag::ext_pointer_to_const_ref_member_on_rvalue, -1,
  /* DiagArray106 */ diag::warn_cxx17_compat_adl_only_template_id, diag::warn_cxx17_compat_bitfield_member_init, diag::warn_cxx17_compat_constexpr_body_invalid_stmt, diag::warn_cxx17_compat_constexpr_ctor_missing_init, diag::warn_cxx17_compat_constexpr_function_try_block, diag::warn_cxx17_compat_constexpr_local_var_no_init, diag::warn_cxx17_compat_constexpr_union_ctor_no_init, diag::warn_cxx17_compat_constexpr_virtual, diag::warn_cxx17_compat_decomp_decl_spec, diag::warn_cxx17_compat_defaulted_comparison, diag::warn_cxx17_compat_defaulted_method_type_mismatch, diag::warn_cxx17_compat_equals_this_lambda_capture, diag::warn_cxx17_compat_for_range_init_stmt, diag::warn_cxx17_compat_init_capture_pack, diag::warn_cxx17_compat_inline_nested_namespace_definition, diag::warn_cxx17_compat_lambda_def_ctor_assign, diag::warn_cxx17_compat_lambda_template_parameter_list, diag::warn_cxx17_compat_spaceship, diag::warn_cxx17_compat_unicode_type, -1,
  /* DiagArray107 */ diag::warn_cxx17_compat_designated_init, diag::warn_cxx17_compat_pointer_to_const_ref_member_on_rvalue, -1,
  /* DiagArray108 */ diag::warn_cxx14_compat_class_template_argument_deduction, diag::warn_cxx14_compat_constexpr_if, diag::warn_cxx14_compat_constexpr_on_lambda, diag::warn_cxx14_compat_decomp_decl, diag::warn_cxx14_compat_fold_expression, diag::warn_cxx14_compat_init_statement, diag::warn_cxx14_compat_inline_variable, diag::warn_cxx14_compat_nested_namespace_definition, diag::warn_cxx14_compat_star_this_lambda_capture, diag::warn_cxx14_compat_static_assert_no_message, diag::warn_cxx14_compat_template_nontype_parm_auto_type, diag::warn_cxx14_compat_template_template_param_typename, diag::warn_cxx14_compat_u8_character_literal, diag::warn_cxx14_compat_using_attribute_ns, diag::warn_cxx17_compat_multi_using_declaration, diag::warn_cxx17_compat_using_declaration_pack, diag::warn_for_range_begin_end_types_differ, -1,
  /* DiagArray109 */ diag::warn_cxx14_compat_ns_enum_attribute, diag::warn_cxx17_hex_literal, -1,
  /* DiagArray110 */ diag::warn_cxx11_compat_constexpr_body_invalid_stmt, diag::warn_cxx11_compat_constexpr_body_multiple_return, diag::warn_cxx11_compat_constexpr_body_no_return, diag::warn_cxx11_compat_constexpr_local_var, diag::warn_cxx11_compat_constexpr_type_definition, diag::warn_cxx11_compat_decltype_auto_type_specifier, diag::warn_cxx11_compat_deduced_return_type, diag::warn_cxx11_compat_digit_separator, diag::warn_cxx11_compat_generic_lambda, diag::warn_cxx11_compat_init_capture, diag::warn_cxx11_compat_variable_template, -1,
  /* DiagArray111 */ diag::warn_cxx11_compat_binary_literal, -1,
  /* DiagArray113 */ diag::warn_cxx98_compat_alias_declaration, diag::warn_cxx98_compat_alignas, diag::warn_cxx98_compat_alignof, diag::warn_cxx98_compat_attribute, diag::warn_cxx98_compat_auto_type_specifier, diag::warn_cxx98_compat_constexpr, diag::warn_cxx98_compat_ctor_list_init, diag::warn_cxx98_compat_decltype, diag::warn_cxx98_compat_defaulted_deleted_function, diag::warn_cxx98_compat_delegating_ctor, diag::warn_cxx98_compat_empty_scalar_initializer, diag::warn_cxx98_compat_enum_fixed_underlying_type, diag::warn_cxx98_compat_enum_friend, diag::warn_cxx98_compat_enum_nested_name_spec, diag::warn_cxx98_compat_explicit_conversion_functions, diag::warn_cxx98_compat_for_range, diag::warn_cxx98_compat_friend_is_member, diag::warn_cxx98_compat_generalized_initializer_lists, diag::warn_cxx98_compat_goto_into_protected_scope, diag::warn_cxx98_compat_indirect_goto_in_protected_scope, diag::warn_cxx98_compat_initializer_list_init, diag::warn_cxx98_compat_inline_namespace, diag::warn_cxx98_compat_lambda, diag::warn_cxx98_compat_less_colon_colon, diag::warn_cxx98_compat_literal_operator, diag::warn_cxx98_compat_literal_ucn_control_character, diag::warn_cxx98_compat_literal_ucn_escape_basic_scs, diag::warn_cxx98_compat_noexcept_decl, diag::warn_cxx98_compat_noexcept_expr, diag::warn_cxx98_compat_non_static_member_use, diag::warn_cxx98_compat_nonclass_type_friend, diag::warn_cxx98_compat_nonstatic_member_init, diag::warn_cxx98_compat_nontrivial_union_or_anon_struct_member, diag::warn_cxx98_compat_nullptr, diag::warn_cxx98_compat_override_control_keyword, diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg, diag::warn_cxx98_compat_raw_string_literal, diag::warn_cxx98_compat_ref_qualifier, diag::warn_cxx98_compat_reference_list_init, diag::warn_cxx98_compat_rvalue_reference, diag::warn_cxx98_compat_scoped_enum, diag::warn_cxx98_compat_sfinae_access_control, diag::warn_cxx98_compat_static_assert, diag::warn_cxx98_compat_static_data_member_in_union, diag::warn_cxx98_compat_switch_into_protected_scope, diag::warn_cxx98_compat_template_arg_extra_parens, diag::warn_cxx98_compat_template_arg_null, diag::warn_cxx98_compat_template_arg_object_internal, diag::warn_cxx98_compat_template_outside_of_template, diag::warn_cxx98_compat_template_parameter_default_in_function_template, diag::warn_cxx98_compat_trailing_return_type, diag::warn_cxx98_compat_two_right_angle_brackets, diag::warn_cxx98_compat_typename_outside_of_template, diag::warn_cxx98_compat_unelaborated_friend_type, diag::warn_cxx98_compat_unicode_id, diag::warn_cxx98_compat_unicode_literal, diag::warn_cxx98_compat_unicode_type, diag::warn_cxx98_compat_using_decl_constructor, diag::warn_cxx98_compat_variadic_templates, -1,
  /* DiagArray114 */ diag::warn_cxx98_compat_temp_copy, -1,
  /* DiagArray115 */ diag::warn_cxx98_compat_top_level_semi, -1,
  /* DiagArray116 */ diag::warn_cxx98_compat_template_arg_local_type, -1,
  /* DiagArray117 */ diag::warn_cxx98_compat_array_size_conversion, diag::warn_cxx98_compat_cast_fn_obj, diag::warn_cxx98_compat_empty_fnmacro_arg, diag::warn_cxx98_compat_enumerator_list_comma, diag::warn_cxx98_compat_extern_template, diag::warn_cxx98_compat_longlong, diag::warn_cxx98_compat_no_newline_eof, diag::warn_cxx98_compat_pp_line_too_big, diag::warn_cxx98_compat_variadic_macro, -1,
  /* DiagArray118 */ diag::warn_cxx98_compat_template_arg_unnamed_type, -1,
  /* DiagArray119 */ diag::ext_anonymous_union, diag::ext_c11_anonymous_struct, diag::ext_c11_feature, -1,
  /* DiagArray120 */ diag::warn_c99_compat_unicode_id, diag::warn_c99_compat_unicode_literal, diag::warn_old_implicitly_unsigned_long, -1,
  /* DiagArray121 */ diag::ext_designated_init, diag::ext_designated_init_array, diag::ext_designated_init_mixed, diag::ext_designated_init_nested, -1,
  /* DiagArray122 */ diag::ext_aggregate_init_not_constant, diag::ext_c99_array_usage, diag::ext_c99_compound_literal, diag::ext_c99_feature, diag::ext_c99_flexible_array_member, diag::ext_c99_variable_decl_in_for_loop, diag::ext_c99_whitespace_required_after_macro_name, diag::ext_empty_fnmacro_arg, diag::ext_enumerator_list_comma_c, diag::ext_hex_constant_invalid, -1,
  /* DiagArray123 */ diag::warn_call_to_pure_virtual_member_function_from_ctor_dtor, -1,
  /* DiagArray124 */ diag::warn_cast_align, -1,
  /* DiagArray125 */ diag::warn_cast_calling_conv, -1,
  /* DiagArray126 */ diag::warn_cast_pointer_from_sel, -1,
  /* DiagArray127 */ diag::warn_cast_qual, diag::warn_cast_qual2, -1,
  /* DiagArray128 */ diag::ext_bad_cxx_cast_qualifiers_away_incoherent, -1,
  /* DiagArray130 */ diag::warn_omp_section_is_char, diag::warn_subscript_is_char, -1,
  /* DiagArray131 */ diag::warn_drv_yc_multiple_inputs_clang_cl, diag::warn_drv_ycyu_different_arg_clang_cl, diag::warn_pp_hdrstop_filename_ignored, diag::warn_pp_macro_def_mismatch_with_pch, -1,
  /* DiagArray132 */ diag::warn_pass_class_arg_to_vararg, -1,
  /* DiagArray133 */ diag::warn_comma_operator, -1,
  /* DiagArray134 */ diag::escaped_newline_block_comment_end, diag::ext_line_comment, diag::ext_multi_line_line_comment, diag::warn_nested_block_comment, -1,
  /* DiagArray136 */ diag::ext_typecheck_comparison_of_distinct_pointers, -1,
  /* DiagArray137 */ diag::ext_complex_component_init, -1,
  /* DiagArray138 */ diag::ext_concept_legacy_bool_keyword, -1,
  /* DiagArray139 */ diag::ext_typecheck_cond_pointer_integer_mismatch, -1,
  /* DiagArray140 */ diag::warn_maybe_uninit_var, -1,
  /* DiagArray141 */ diag::warn_module_config_macro_undef, -1,
  /* DiagArray142 */ diag::warn_impcast_integer_precision_constant, -1,
  /* DiagArray143 */ diag::warn_logical_instead_of_bitwise, -1,
  /* DiagArray144 */ diag::warn_cxx14_compat_constexpr_not_const, -1,
  /* DiagArray145 */ diag::warn_attr_on_unconsumable_class, diag::warn_loop_state_mismatch, diag::warn_param_return_typestate_mismatch, diag::warn_param_typestate_mismatch, diag::warn_return_typestate_for_unconsumable_type, diag::warn_return_typestate_mismatch, diag::warn_use_in_invalid_state, diag::warn_use_of_temp_in_invalid_state, -1,
  /* DiagArray146 */ diag::warn_impcast_complex_scalar, diag::warn_impcast_vector_scalar, diag::warn_opencl_generic_address_space_arg, diag::warn_template_arg_negative, diag::warn_template_arg_too_large, -1,
  /* DiagArray149 */ diag::warn_coroutine_promise_unhandled_exception_required_with_exceptions, -1,
  /* DiagArray150 */ diag::warn_unreachable_default, -1,
  /* DiagArray152 */ diag::warn_objc_cdirective_format_string, -1,
  /* DiagArray153 */ diag::warn_ctad_maybe_unsupported, -1,
  /* DiagArray155 */ diag::warn_ctu_incompat_triple, -1,
  /* DiagArray156 */ diag::warn_attribute_argument_n_negative, diag::warn_cuda_attr_lambda_position, diag::warn_kern_is_inline, diag::warn_kern_is_method, diag::warn_pragma_unroll_cuda_value_in_parens, -1,
  /* DiagArray157 */ diag::warn_default_atomic_custom_getter_setter, -1,
  /* DiagArray158 */ diag::warn_dangling_variable, diag::warn_unsupported_lifetime_extension, -1,
  /* DiagArray159 */ diag::warn_dangling_else, -1,
  /* DiagArray160 */ diag::warn_bind_ref_member_to_parameter, diag::warn_dangling_member, diag::warn_init_ptr_member_to_parameter_addr, diag::warn_new_dangling_reference, -1,
  /* DiagArray161 */ diag::warn_dangling_lifetime_pointer, diag::warn_dangling_lifetime_pointer_member, -1,
  /* DiagArray162 */ diag::warn_new_dangling_initializer_list, -1,
  /* DiagArray163 */ diag::warn_drv_darwin_sdk_invalid_settings, -1,
  /* DiagArray164 */ diag::warn_pp_date_time, -1,
  /* DiagArray165 */ diag::warn_dealloc_in_category, -1,
  /* DiagArray166 */ diag::warn_debug_compression_unavailable, -1,
  /* DiagArray167 */ diag::ext_mixed_decls_code, -1,
  /* DiagArray168 */ diag::ext_defaulted_comparison_empty_union, diag::ext_defaulted_comparison_reference_member, diag::ext_defaulted_comparison_union, -1,
  /* DiagArray169 */ diag::warn_defaulted_method_deleted, -1,
  /* DiagArray170 */ diag::warn_delegating_ctor_cycle, -1,
  /* DiagArray171 */ diag::warn_delete_abstract_non_virtual_dtor, -1,
  /* DiagArray172 */ diag::ext_delete_void_ptr_operand, diag::warn_delete_incomplete, -1,
  /* DiagArray173 */ diag::warn_delete_non_virtual_dtor, -1,
  /* DiagArray175 */ diag::warn_O4_is_O3, diag::warn_access_decl_deprecated, diag::warn_deprecated_copy_operation, diag::warn_deprecated_redundant_constexpr_static_def, diag::warn_drv_deprecated_arg, diag::warn_drv_treating_input_as_cxx, diag::warn_option_invalid_ocl_version, diag::warn_vector_long_decl_spec_combination, -1,
  /* DiagArray176 */ diag::warn_vector_mode_deprecated, -1,
  /* DiagArray177 */ diag::warn_deprecated_comma_subscript, -1,
  /* DiagArray178 */ diag::warn_atl_uuid_deprecated, diag::warn_cstyle_param, diag::warn_deprecated, diag::warn_deprecated_fwdclass_message, diag::warn_deprecated_message, diag::warn_property_method_deprecated, -1,
  /* DiagArray179 */ diag::warn_exception_spec_deprecated, -1,
  /* DiagArray180 */ diag::warn_deprecated_def, diag::warn_unavailable_def, -1,
  /* DiagArray181 */ diag::warn_increment_bool, -1,
  /* DiagArray182 */ diag::warn_objc_isa_assign, diag::warn_objc_isa_use, -1,
  /* DiagArray183 */ diag::warn_objc_pointer_masking, -1,
  /* DiagArray184 */ diag::warn_objc_pointer_masking_performSelector, -1,
  /* DiagArray185 */ diag::warn_deprecated_register, -1,
  /* DiagArray186 */ diag::warn_deprecated_this_capture, -1,
  /* DiagArray187 */ diag::warn_deprecated_compound_assign_volatile, diag::warn_deprecated_increment_decrement_volatile, diag::warn_deprecated_simple_assign_volatile, diag::warn_deprecated_volatile_param, diag::warn_deprecated_volatile_return, diag::warn_deprecated_volatile_structured_binding, -1,
  /* DiagArray189 */ diag::warn_direct_ivar_access, -1,
  /* DiagArray190 */ diag::pp_disabled_macro_expansion, -1,
  /* DiagArray193 */ diag::warn_conflicting_param_modifiers, diag::warn_conflicting_ret_type_modifiers, -1,
  /* DiagArray195 */ diag::warn_remainder_division_by_zero, -1,
  /* DiagArray196 */ diag::warn_attribute_dll_redeclaration, -1,
  /* DiagArray197 */ diag::warn_attribute_dllexport_explicit_instantiation_decl, -1,
  /* DiagArray198 */ diag::warn_attribute_dllimport_static_field_definition, -1,
  /* DiagArray199 */ diag::warn_doc_api_container_decl_mismatch, diag::warn_doc_block_command_duplicate, diag::warn_doc_block_command_empty_paragraph, diag::warn_doc_container_decl_mismatch, diag::warn_doc_function_method_decl_mismatch, diag::warn_doc_html_start_tag_expected_ident_or_greater, diag::warn_doc_html_start_tag_expected_quoted_string, diag::warn_doc_inline_contents_no_argument, diag::warn_doc_param_duplicate, diag::warn_doc_param_invalid_direction, diag::warn_doc_param_not_attached_to_a_function_decl, diag::warn_doc_param_not_found, diag::warn_doc_returns_attached_to_a_void_function, diag::warn_doc_returns_not_attached_to_a_function_decl, diag::warn_doc_tparam_duplicate, diag::warn_doc_tparam_not_attached_to_a_template_decl, diag::warn_doc_tparam_not_found, diag::warn_not_a_doxygen_trailing_member_comment, diag::warn_verbatim_block_end_without_start, -1,
  /* DiagArray200 */ diag::warn_doc_deprecated_not_sync, -1,
  /* DiagArray201 */ diag::warn_doc_html_end_forbidden, diag::warn_doc_html_end_unbalanced, diag::warn_doc_html_missing_end_tag, diag::warn_doc_html_start_end_mismatch, -1,
  /* DiagArray202 */ diag::warn_doc_param_spaces_in_direction, -1,
  /* DiagArray203 */ diag::warn_correct_comment_command_name, diag::warn_unknown_comment_command_name, -1,
  /* DiagArray204 */ diag::ext_dollar_in_identifier, -1,
  /* DiagArray205 */ diag::warn_impcast_double_promotion, -1,
  /* DiagArray206 */ diag::ext_duplicate_declspec, diag::ext_warn_duplicate_declspec, diag::warn_attribute_address_multiple_identical_qualifiers, diag::warn_duplicate_declspec, -1,
  /* DiagArray207 */ diag::warn_duplicate_enum_values, -1,
  /* DiagArray208 */ diag::warn_method_param_declaration, -1,
  /* DiagArray209 */ diag::warn_duplicate_method_decl, -1,
  /* DiagArray210 */ diag::warn_duplicate_protocol_def, -1,
  /* DiagArray211 */ diag::warn_dyn_class_memaccess, -1,
  /* DiagArray212 */ diag::ext_dynamic_exception_spec, -1,
  /* DiagArray214 */ diag::ext_embedded_directive, -1,
  /* DiagArray215 */ diag::warn_empty_for_body, diag::warn_empty_if_body, diag::warn_empty_range_based_for_body, diag::warn_empty_switch_body, diag::warn_empty_while_body, -1,
  /* DiagArray216 */ diag::ext_decomp_decl_empty, -1,
  /* DiagArray217 */ diag::warn_empty_init_statement, -1,
  /* DiagArray218 */ diag::ext_empty_translation_unit, -1,
  /* DiagArray219 */ diag::warn_incomplete_encoded_type, -1,
  /* DiagArray221 */ diag::warn_comparison_of_mixed_enum_types, -1,
  /* DiagArray222 */ diag::warn_conditional_mixed_enum_types, -1,
  /* DiagArray223 */ diag::warn_comparison_of_mixed_enum_types_switch, -1,
  /* DiagArray224 */ diag::warn_impcast_different_enum_types, -1,
  /* DiagArray225 */ diag::ext_enum_too_large, diag::ext_enumerator_increment_too_large, -1,
  /* DiagArray226 */ diag::warn_cdtor_function_try_handler_mem_expr, diag::warn_exception_caught_by_earlier_handler, diag::warn_throw_in_noexcept_func, -1,
  /* DiagArray227 */ diag::warn_exit_time_destructor, -1,
  /* DiagArray228 */ diag::warn_defined_in_function_type_macro, diag::warn_defined_in_object_type_macro, -1,
  /* DiagArray229 */ diag::warn_drv_experimental_isel_incomplete, diag::warn_drv_experimental_isel_incomplete_opt, -1,
  /* DiagArray230 */ diag::warn_direct_initialize_call, diag::warn_direct_super_initialize_call, -1,
  /* DiagArray231 */ diag::warn_arc_strong_pointer_objc_pointer, -1,
  /* DiagArray232 */ diag::ext_export_no_name_block, diag::ext_export_no_names, -1,
  /* DiagArray233 */ diag::ext_export_using_directive, -1,
  /* DiagArray234 */ diag::warn_zero_size_struct_union_in_extern_c, -1,
  /* DiagArray235 */ diag::warn_extern_init, -1,
  /* DiagArray236 */ diag::warn_arm_interrupt_calling_convention, -1,
  /* DiagArray237 */ diag::warn_namespace_member_extra_qualification, -1,
  /* DiagArray238 */ diag::ext_extra_semi, diag::warn_extra_semi_after_mem_fn_def, -1,
  /* DiagArray239 */ diag::warn_null_statement, -1,
  /* DiagArray240 */ diag::ext_pp_extra_tokens_at_eol, diag::warn_omp_extra_tokens_at_eol, -1,
  /* DiagArray241 */ diag::warn_drv_invoking_fallback, -1,
  /* DiagArray242 */ diag::warn_final_dtor_non_final_class, -1,
  /* DiagArray243 */ diag::ext_clang_c_enum_fixed_underlying_type, -1,
  /* DiagArray244 */ diag::warn_flag_enum_constant_out_of_range, -1,
  /* DiagArray245 */ diag::ext_flexible_array_in_array, diag::ext_flexible_array_in_struct, -1,
  /* DiagArray246 */ diag::warn_impcast_float_integer, -1,
  /* DiagArray247 */ diag::warn_floatingpoint_eq, -1,
  /* DiagArray248 */ diag::warn_impcast_float_to_integer, diag::warn_impcast_float_to_integer_out_of_range, -1,
  /* DiagArray249 */ diag::warn_impcast_float_to_integer_zero, -1,
  /* DiagArray250 */ diag::warn_redundant_loop_iteration, diag::warn_variables_not_in_loop_body, -1,
  /* DiagArray251 */ diag::warn_format_P_no_precision, diag::warn_format_argument_needs_cast, diag::warn_format_bool_as_character, diag::warn_format_conversion_argument_type_mismatch, diag::warn_format_invalid_annotation, diag::warn_format_invalid_positional_specifier, diag::warn_format_mix_positional_nonpositional_args, diag::warn_format_nonsensical_length, diag::warn_format_string_is_wide_literal, diag::warn_format_zero_positional_specifier, diag::warn_missing_format_string, diag::warn_printf_ObjCflags_without_ObjCConversion, diag::warn_printf_asterisk_missing_arg, diag::warn_printf_asterisk_wrong_type, diag::warn_printf_empty_objc_flag, diag::warn_printf_format_string_contains_null_char, diag::warn_printf_format_string_not_null_terminated, diag::warn_printf_ignored_flag, diag::warn_printf_incomplete_specifier, diag::warn_printf_insufficient_data_args, diag::warn_printf_invalid_objc_flag, diag::warn_printf_nonsensical_flag, diag::warn_printf_nonsensical_optional_amount, diag::warn_printf_positional_arg_exceeds_data_args, diag::warn_scanf_nonzero_width, diag::warn_scanf_scanlist_incomplete, -1,
  /* DiagArray252 */ diag::warn_printf_data_arg_not_used, -1,
  /* DiagArray253 */ diag::warn_format_invalid_conversion, -1,
  /* DiagArray254 */ diag::warn_format_non_standard, diag::warn_format_non_standard_conversion_spec, diag::warn_format_non_standard_positional_arg, -1,
  /* DiagArray255 */ diag::warn_format_nonliteral, -1,
  /* DiagArray256 */ diag::warn_format_argument_needs_cast_pedantic, diag::warn_format_conversion_argument_type_mismatch_pedantic, -1,
  /* DiagArray257 */ diag::warn_format_nonliteral_noargs, -1,
  /* DiagArray258 */ diag::warn_format_conversion_argument_type_mismatch_confusion, -1,
  /* DiagArray260 */ diag::warn_empty_format_string, -1,
  /* DiagArray262 */ diag::warn_fortify_source_overflow, diag::warn_fortify_source_size_mismatch, -1,
  /* DiagArray263 */ diag::ext_four_char_character_literal, -1,
  /* DiagArray264 */ diag::warn_fe_backend_frame_larger_than, diag::warn_fe_frame_larger_than, -1,
  /* DiagArray265 */ diag::warn_framework_include_private_from_public, -1,
  /* DiagArray266 */ diag::warn_function_def_in_objc_container, -1,
  /* DiagArray267 */ diag::warn_dispatch_body_ignored, diag::warn_multiversion_duplicate_entries, -1,
  /* DiagArray269 */ diag::ext_clang_diagnose_if, diag::ext_clang_enable_if, diag::ext_warn_gnu_final, diag::warn_attribute_on_function_definition, diag::warn_break_binds_to_switch, diag::warn_cleanup_ext, diag::warn_gcc_attribute_location, diag::warn_gcc_ignores_type_attr, diag::warn_gcc_variable_decl_in_for_loop, diag::warn_loop_ctrl_binds_to_inner, -1,
  /* DiagArray270 */ diag::warn_global_constructor, diag::warn_global_destructor, -1,
  /* DiagArray272 */ diag::ext_alignof_expr, -1,
  /* DiagArray273 */ diag::ext_gnu_anonymous_struct, -1,
  /* DiagArray274 */ diag::ext_array_init_parens, -1,
  /* DiagArray275 */ diag::ext_auto_type, -1,
  /* DiagArray276 */ diag::ext_binary_literal, -1,
  /* DiagArray277 */ diag::ext_gnu_case_range, -1,
  /* DiagArray278 */ diag::ext_integer_complex, -1,
  /* DiagArray279 */ diag::ext_array_init_copy, -1,
  /* DiagArray280 */ diag::ext_gnu_conditional_expr, -1,
  /* DiagArray281 */ diag::ext_gnu_array_range, diag::ext_gnu_missing_equal_designator, diag::ext_gnu_old_style_field_designator, -1,
  /* DiagArray282 */ diag::ext_gnu_empty_initializer, -1,
  /* DiagArray283 */ diag::ext_empty_struct_union, diag::ext_flexible_array_empty_aggregate_gnu, diag::ext_no_named_members_in_struct_union, -1,
  /* DiagArray284 */ diag::ext_flexible_array_init, -1,
  /* DiagArray285 */ diag::ext_flexible_array_union_gnu, -1,
  /* DiagArray286 */ diag::ext_expr_not_ice, diag::ext_in_class_initializer_non_constant, diag::ext_vla_folded_to_constant, -1,
  /* DiagArray287 */ diag::ext_imaginary_constant, -1,
  /* DiagArray288 */ diag::ext_pp_include_next_directive, -1,
  /* DiagArray289 */ diag::warn_gnu_inline_cplusplus_without_extern, -1,
  /* DiagArray290 */ diag::ext_gnu_address_of_label, diag::ext_gnu_indirect_goto, -1,
  /* DiagArray291 */ diag::ext_forward_ref_enum_def, -1,
  /* DiagArray292 */ diag::ext_gnu_statement_expr, -1,
  /* DiagArray293 */ diag::ext_in_class_initializer_float_type, -1,
  /* DiagArray294 */ diag::ext_string_literal_operator_template, -1,
  /* DiagArray295 */ diag::ext_typecheck_cast_to_union, -1,
  /* DiagArray296 */ diag::ext_variable_sized_type_in_struct, -1,
  /* DiagArray297 */ diag::ext_pp_line_zero, -1,
  /* DiagArray298 */ diag::ext_missing_varargs_arg, diag::ext_paste_comma, -1,
  /* DiagArray299 */ diag::warn_header_guard, -1,
  /* DiagArray300 */ diag::warn_using_directive_in_header, -1,
  /* DiagArray301 */ diag::warn_ignored_hip_only_option, -1,
  /* DiagArray302 */ diag::warn_condition_is_idiomatic_assignment, -1,
  /* DiagArray303 */ diag::ext_cannot_use_trivial_abi, diag::warn_alias_to_weak_alias, diag::warn_alias_with_section, diag::warn_attr_abi_tag_namespace, diag::warn_attribute_after_definition_ignored, diag::warn_attribute_dllexport_explicit_instantiation_def, diag::warn_attribute_iboutlet, diag::warn_attribute_ignored, diag::warn_attribute_ignored_for_field_of_type, diag::warn_attribute_ignored_on_inline, diag::warn_attribute_invalid_on_definition, diag::warn_attribute_no_decl, diag::warn_attribute_nonnull_no_pointers, diag::warn_attribute_nonnull_parm_no_args, diag::warn_attribute_not_on_decl, diag::warn_attribute_pointer_or_reference_only, diag::warn_attribute_pointers_only, diag::warn_attribute_precede_definition, diag::warn_attribute_return_pointers_only, diag::warn_attribute_return_pointers_refs_only, diag::warn_attribute_sentinel_named_arguments, diag::warn_attribute_sentinel_not_variadic, diag::warn_attribute_type_not_supported, diag::warn_attribute_unknown_visibility, diag::warn_attribute_void_function_method, diag::warn_attribute_weak_on_field, diag::warn_attribute_weak_on_local, diag::warn_attribute_wrong_decl_type, diag::warn_attribute_wrong_decl_type_str, diag::warn_block_literal_attributes_on_omitted_return_type, diag::warn_cconv_unsupported, diag::warn_cxx11_gnu_attribute_on_type, diag::warn_declspec_allocator_nonpointer, diag::warn_declspec_attribute_ignored, diag::warn_deprecated_anonymous_namespace, diag::warn_dllimport_dropped_from_inline_function, diag::warn_duplicate_attribute, diag::warn_duplicate_attribute_exact, diag::warn_gc_attribute_weak_on_local, diag::warn_gnu_inline_attribute_requires_inline, diag::warn_ignored_ms_inheritance, diag::warn_ignored_objc_externally_retained, diag::warn_internal_linkage_local_storage, diag::warn_interrupt_attribute_invalid, diag::warn_microsoft_qualifiers_ignored, diag::warn_mig_server_routine_does_not_return_kern_return_t, diag::warn_mmap_unknown_attribute, diag::warn_nocf_check_attribute_ignored, diag::warn_noderef_on_non_pointer_or_array, diag::warn_nothrow_attribute_ignored, diag::warn_ns_attribute_wrong_parameter_type, diag::warn_ns_attribute_wrong_return_type, diag::warn_opencl_attr_deprecated_ignored, diag::warn_require_const_init_added_too_late, diag::warn_riscv_repeated_interrupt_attribute, diag::warn_transparent_union_attribute_field_size_align, diag::warn_transparent_union_attribute_floating, diag::warn_transparent_union_attribute_not_definition, diag::warn_transparent_union_attribute_zero_fields, diag::warn_type_attribute_wrong_type, diag::warn_unhandled_ms_attribute_ignored, diag::warn_unsupported_target_attribute, diag::warn_wrong_clang_attr_namespace, -1,
  /* DiagArray304 */ diag::warn_drv_unsupported_opt_for_target, diag::warn_ignored_gcc_optimization, -1,
  /* DiagArray305 */ diag::warn_pragma_intrinsic_builtin, -1,
  /* DiagArray306 */ diag::warn_pragma_optimize, -1,
  /* DiagArray307 */ diag::warn_pragma_align_expected_equal, diag::warn_pragma_align_invalid_option, diag::warn_pragma_begin_end_mismatch, diag::warn_pragma_comment_ignored, diag::warn_pragma_debug_missing_argument, diag::warn_pragma_debug_unexpected_command, diag::warn_pragma_debug_unknown_module, diag::warn_pragma_expected_action_or_r_paren, diag::warn_pragma_expected_colon, diag::warn_pragma_expected_colon_r_paren, diag::warn_pragma_expected_comma, diag::warn_pragma_expected_identifier, diag::warn_pragma_expected_init_seg, diag::warn_pragma_expected_integer, diag::warn_pragma_expected_lparen, diag::warn_pragma_expected_non_wide_string, diag::warn_pragma_expected_predicate, diag::warn_pragma_expected_punc, diag::warn_pragma_expected_rparen, diag::warn_pragma_expected_section_label_or_name, diag::warn_pragma_expected_section_name, diag::warn_pragma_expected_section_push_pop_or_name, diag::warn_pragma_expected_string, diag::warn_pragma_extra_tokens_at_eol, diag::warn_pragma_force_cuda_host_device_bad_arg, diag::warn_pragma_init_seg_unsupported_target, diag::warn_pragma_invalid_action, diag::warn_pragma_invalid_argument, diag::warn_pragma_invalid_specific_action, diag::warn_pragma_missing_argument, diag::warn_pragma_ms_struct, diag::warn_pragma_options_align_reset_failed, diag::warn_pragma_options_expected_align, diag::warn_pragma_pack_invalid_alignment, diag::warn_pragma_pack_malformed, diag::warn_pragma_pop_failed, diag::warn_pragma_pop_macro_no_push, diag::warn_pragma_unknown_extension, diag::warn_pragma_unsupported_action, diag::warn_pragma_unsupported_extension, diag::warn_pragma_unused_expected_var, diag::warn_pragma_unused_expected_var_arg, diag::warn_pragma_unused_undeclared_var, -1,
  /* DiagArray308 */ diag::warn_arc_lifetime_result_type, diag::warn_block_literal_qualifiers_on_omitted_return_type, diag::warn_qual_return_type, diag::warn_typecheck_function_qualifiers_ignored, diag::warn_typecheck_reference_qualifiers, -1,
  /* DiagArray310 */ diag::warn_auto_implicit_atomic_property, diag::warn_implicit_atomic_property, -1,
  /* DiagArray311 */ diag::warn_impcast_floating_point_to_bool, -1,
  /* DiagArray312 */ diag::ext_implicit_exception_spec_mismatch, -1,
  /* DiagArray313 */ diag::warn_fallthrough_attr_unreachable, diag::warn_unannotated_fallthrough, -1,
  /* DiagArray314 */ diag::warn_unannotated_fallthrough_per_function, -1,
  /* DiagArray315 */ diag::warn_impcast_fixed_point_range, -1,
  /* DiagArray316 */ diag::warn_impcast_float_precision, diag::warn_impcast_float_result_precision, -1,
  /* DiagArray317 */ diag::ext_implicit_function_decl, diag::ext_implicit_lib_function_decl, diag::warn_builtin_unknown, diag::warn_implicit_function_decl, -1,
  /* DiagArray318 */ diag::ext_missing_type_specifier, -1,
  /* DiagArray319 */ diag::warn_impcast_high_order_zero_bits, diag::warn_impcast_integer_precision, -1,
  /* DiagArray320 */ diag::warn_impcast_integer_float_precision, diag::warn_impcast_integer_float_precision_constant, -1,
  /* DiagArray321 */ diag::warn_implicitly_retains_self, -1,
  /* DiagArray322 */ diag::ext_integer_literal_too_large_for_signed, -1,
  /* DiagArray324 */ diag::ext_pp_import_directive, -1,
  /* DiagArray325 */ diag::warn_inaccessible_base_class, -1,
  /* DiagArray326 */ diag::pp_include_next_absolute_path, -1,
  /* DiagArray327 */ diag::pp_include_next_in_primary, -1,
  /* DiagArray328 */ diag::warn_deep_exception_specs_differ, diag::warn_incompatible_exception_specs, -1,
  /* DiagArray329 */ diag::ext_typecheck_convert_incompatible_function_pointer, -1,
  /* DiagArray330 */ diag::warn_redecl_library_builtin, -1,
  /* DiagArray331 */ diag::warn_cxx_ms_struct, diag::warn_npot_ms_struct, -1,
  /* DiagArray332 */ diag::ext_typecheck_convert_incompatible_pointer, -1,
  /* DiagArray333 */ diag::ext_nested_pointer_qualifier_mismatch, diag::ext_typecheck_convert_discards_qualifiers, -1,
  /* DiagArray334 */ diag::warn_property_types_are_incompatible, -1,
  /* DiagArray335 */ diag::warn_incompatible_sysroot, -1,
  /* DiagArray336 */ diag::warn_mmap_incomplete_framework_module_declaration, -1,
  /* DiagArray337 */ diag::warn_undef_method_impl, -1,
  /* DiagArray339 */ diag::warn_implicit_decl_no_jmp_buf, -1,
  /* DiagArray340 */ diag::warn_missing_submodule, diag::warn_mmap_umbrella_dir_not_found, diag::warn_uncovered_module_header, -1,
  /* DiagArray341 */ diag::warn_redeclaration_without_attribute_prev_attribute_ignored, diag::warn_redeclaration_without_import_attribute, -1,
  /* DiagArray342 */ diag::warn_destructor_marked_not_override_overriding, -1,
  /* DiagArray343 */ diag::warn_function_marked_not_override_overriding, -1,
  /* DiagArray344 */ diag::ext_increment_bool, -1,
  /* DiagArray345 */ diag::warn_infinite_recursive_function, -1,
  /* DiagArray347 */ diag::ext_initializer_overrides, diag::warn_initializer_overrides, -1,
  /* DiagArray348 */ diag::ext_out_of_line_qualified_id_type_names_constructor, -1,
  /* DiagArray350 */ diag::warn_fe_inline_asm, -1,
  /* DiagArray351 */ diag::ext_operator_new_delete_declared_inline, -1,
  /* DiagArray352 */ diag::warn_explicit_instantiation_after_specialization, -1,
  /* DiagArray353 */ diag::ext_typecheck_convert_int_pointer, diag::ext_typecheck_convert_pointer_int, -1,
  /* DiagArray355 */ diag::warn_enum_constant_in_bool_context, diag::warn_left_shift_in_bool_context, -1,
  /* DiagArray356 */ diag::warn_int_to_pointer_cast, -1,
  /* DiagArray357 */ diag::warn_int_to_void_pointer_cast, -1,
  /* DiagArray358 */ diag::warn_integer_constant_overflow, -1,
  /* DiagArray359 */ diag::warn_drv_msp430_hwmult_mismatch, diag::warn_drv_msp430_hwmult_no_device, diag::warn_drv_msp430_hwmult_unsupported, diag::warn_drv_object_size_disabled_O0, diag::warn_drv_optimization_value, diag::warn_target_unsupported_extension, -1,
  /* DiagArray360 */ diag::ext_constexpr_function_never_constant_expr, -1,
  /* DiagArray361 */ diag::warn_iboutlet_object_type, diag::warn_iboutletcollection_property_assign, -1,
  /* DiagArray362 */ diag::warn_invalid_initializer_from_system_header, -1,
  /* DiagArray363 */ diag::warn_invalid_ios_deployment_target, -1,
  /* DiagArray364 */ diag::warn_falloff_noreturn_function, diag::warn_noreturn_function_has_return_expr, -1,
  /* DiagArray365 */ diag::ext_offsetof_non_pod_type, diag::ext_offsetof_non_standardlayout_type, -1,
  /* DiagArray366 */ diag::warn_drv_ps4_sdk_dir, diag::warn_drv_unable_to_find_directory_expected, -1,
  /* DiagArray367 */ diag::ext_partial_spec_not_more_specialized_than_primary, -1,
  /* DiagArray369 */ diag::ext_empty_character, diag::ext_unterminated_char_or_string, -1,
  /* DiagArray370 */ diag::warn_bad_character_encoding, diag::warn_bad_string_encoding, -1,
  /* DiagArray371 */ diag::ext_pp_bad_paste_ms, -1,
  /* DiagArray372 */ diag::warn_jump_out_of_seh_finally, -1,
  /* DiagArray373 */ diag::ext_keyword_as_ident, -1,
  /* DiagArray374 */ diag::warn_pp_macro_hides_keyword, -1,
  /* DiagArray375 */ diag::ext_param_promoted_not_compatible_with_prototype, -1,
  /* DiagArray376 */ diag::ext_token_used, -1,
  /* DiagArray377 */ diag::warn_parameter_size, diag::warn_return_value_size, -1,
  /* DiagArray379 */ diag::warn_impcast_literal_float_to_integer, diag::warn_impcast_literal_float_to_integer_out_of_range, -1,
  /* DiagArray380 */ diag::warn_float_overflow, diag::warn_float_underflow, -1,
  /* DiagArray381 */ diag::ext_template_arg_local_type, -1,
  /* DiagArray382 */ diag::warn_logical_not_on_lhs_of_check, -1,
  /* DiagArray383 */ diag::warn_logical_and_in_logical_or, -1,
  /* DiagArray384 */ diag::ext_c99_longlong, -1,
  /* DiagArray386 */ diag::ext_pp_macro_redef, -1,
  /* DiagArray387 */ diag::ext_main_used, diag::ext_noreturn_main, diag::ext_variadic_main, diag::warn_main_one_arg, diag::warn_main_redefined, diag::warn_main_returns_bool_literal, diag::warn_static_main, -1,
  /* DiagArray388 */ diag::ext_main_returns_nonint, -1,
  /* DiagArray389 */ diag::warn_has_warning_invalid_option, -1,
  /* DiagArray390 */ diag::ext_many_braces_around_scalar_init, -1,
  /* DiagArray391 */ diag::warn_max_unsigned_zero, -1,
  /* DiagArray392 */ diag::warn_suspicious_sizeof_memset, -1,
  /* DiagArray393 */ diag::warn_memsize_comparison, -1,
  /* DiagArray394 */ diag::warn_non_contravariant_param_types, diag::warn_non_covariant_ret_types, -1,
  /* DiagArray396 */ diag::ext_anonymous_record_with_type, diag::ext_ms_anonymous_record, -1,
  /* DiagArray397 */ diag::ext_ms_cast_fn_obj, diag::ext_ms_impcast_fn_obj, -1,
  /* DiagArray398 */ diag::ext_charize_microsoft, -1,
  /* DiagArray399 */ diag::ext_comment_paste_microsoft, -1,
  /* DiagArray400 */ diag::ext_default_init_const, -1,
  /* DiagArray401 */ diag::ext_pp_operator_used_as_macro_name, -1,
  /* DiagArray402 */ diag::ext_param_default_argument_redefinition, -1,
  /* DiagArray403 */ diag::warn_attribute_section_drectve, -1,
  /* DiagArray404 */ diag::ext_ctrl_z_eof_microsoft, -1,
  /* DiagArray405 */ diag::ext_ms_forward_ref_enum, -1,
  /* DiagArray406 */ diag::ext_enumerator_too_large, -1,
  /* DiagArray407 */ diag::ext_ellipsis_exception_spec, diag::ext_incomplete_in_exception_spec, diag::ext_mismatched_exception_spec, diag::ext_mismatched_exception_spec_explicit_instantiation, diag::ext_ms_missing_exception_specification, diag::ext_override_exception_spec, -1,
  /* DiagArray408 */ diag::warn_microsoft_dependent_exists, -1,
  /* DiagArray409 */ diag::ext_ms_explicit_constructor_call, -1,
  /* DiagArray410 */ diag::warn_member_extra_qualification, -1,
  /* DiagArray411 */ diag::ext_ms_c_enum_fixed_underlying_type, -1,
  /* DiagArray412 */ diag::ext_flexible_array_empty_aggregate_ms, diag::ext_flexible_array_union_ms, -1,
  /* DiagArray413 */ diag::ext_goto_into_protected_scope, -1,
  /* DiagArray414 */ diag::ext_ms_ambiguous_direct_base, -1,
  /* DiagArray415 */ diag::ext_pp_include_search_ms, -1,
  /* DiagArray416 */ diag::ext_mutable_reference, -1,
  /* DiagArray417 */ diag::ext_pure_function_definition, -1,
  /* DiagArray418 */ diag::ext_static_non_static, -1,
  /* DiagArray419 */ diag::ext_ms_sealed_keyword, -1,
  /* DiagArray420 */ diag::ext_explicit_instantiation_duplicate, diag::ext_found_via_dependent_bases_lookup, diag::ext_ms_delayed_template_argument, diag::ext_ms_deref_template_argument, diag::ext_ms_template_spec_redecl_out_of_scope, diag::ext_ms_template_type_arg_missing_typename, diag::ext_static_out_of_line, diag::ext_template_param_shadow, diag::ext_undeclared_unqual_id_with_dependent_base, -1,
  /* DiagArray421 */ diag::ext_union_member_of_reference_type, -1,
  /* DiagArray422 */ diag::ext_friend_tag_redecl_outside_namespace, -1,
  /* DiagArray423 */ diag::ext_ms_using_declaration_inaccessible, -1,
  /* DiagArray424 */ diag::ext_pseudo_dtor_on_void, -1,
  /* DiagArray425 */ diag::warn_profile_data_misexpect, -1,
  /* DiagArray426 */ diag::warn_mismatched_delete_new, -1,
  /* DiagArray427 */ diag::warn_conflicting_param_types, -1,
  /* DiagArray428 */ diag::warn_conflicting_ret_types, -1,
  /* DiagArray429 */ diag::warn_struct_class_previous_tag_mismatch, diag::warn_struct_class_tag_mismatch, -1,
  /* DiagArray430 */ diag::warn_missing_braces, -1,
  /* DiagArray431 */ diag::ext_constinit_missing, -1,
  /* DiagArray432 */ diag::ext_no_declarators, diag::ext_standalone_specifier, diag::ext_typedef_without_a_name, diag::warn_standalone_specifier, -1,
  /* DiagArray433 */ diag::ext_missing_exception_specification, -1,
  /* DiagArray434 */ diag::warn_missing_field_initializers, -1,
  /* DiagArray437 */ diag::warn_missing_method_return_type, -1,
  /* DiagArray438 */ diag::warn_overriding_method_missing_noescape, -1,
  /* DiagArray439 */ diag::warn_suggest_noreturn_block, diag::warn_suggest_noreturn_function, -1,
  /* DiagArray440 */ diag::warn_cconv_knr, -1,
  /* DiagArray441 */ diag::warn_missing_prototype, -1,
  /* DiagArray442 */ diag::warn_missing_selector_name, -1,
  /* DiagArray443 */ diag::warn_missing_sysroot, -1,
  /* DiagArray444 */ diag::warn_missing_variable_declarations, -1,
  /* DiagArray445 */ diag::remark_module_build, diag::remark_module_build_done, diag::remark_module_lock_failure, diag::remark_module_lock_timeout, -1,
  /* DiagArray446 */ diag::warn_module_conflict, diag::warn_module_system_bit_conflict, -1,
  /* DiagArray447 */ diag::warn_module_config_mismatch, -1,
  /* DiagArray448 */ diag::warn_duplicate_module_file_extension, -1,
  /* DiagArray449 */ diag::remark_module_import, -1,
  /* DiagArray450 */ diag::ext_module_import_in_extern_c, -1,
  /* DiagArray451 */ diag::ext_equivalent_internal_linkage_decl_in_modules, -1,
  /* DiagArray452 */ diag::ext_module_import_not_at_top_level_noop, -1,
  /* DiagArray456 */ diag::warn_drv_msvc_not_found, -1,
  /* DiagArray457 */ diag::ext_multichar_character_literal, -1,
  /* DiagArray458 */ diag::warn_vbase_moved_multiple_times, -1,
  /* DiagArray460 */ diag::ext_anonymous_record_with_anonymous_type, -1,
  /* DiagArray462 */ diag::warn_operator_new_returns_null, -1,
  /* DiagArray463 */ diag::ext_no_newline_eof, diag::warn_no_newline_eof, -1,
  /* DiagArray464 */ diag::warn_dereference_of_noderef_type, diag::warn_dereference_of_noderef_type_no_decl, diag::warn_noderef_to_dereferenceable_pointer, -1,
  /* DiagArray467 */ diag::warn_non_literal_null_pointer, -1,
  /* DiagArray468 */ diag::warn_non_modular_include_in_framework_module, -1,
  /* DiagArray469 */ diag::warn_non_modular_include_in_module, -1,
  /* DiagArray470 */ diag::warn_cannot_pass_non_pod_arg_to_vararg, diag::warn_non_pod_vararg_with_format_string, diag::warn_second_parameter_to_va_arg_not_pod, diag::warn_second_parameter_to_va_arg_ownership_qualified, -1,
  /* DiagArray471 */ diag::warn_non_virtual_dtor, -1,
  /* DiagArray472 */ diag::warn_null_arg, diag::warn_null_ret, -1,
  /* DiagArray474 */ diag::pp_nonportable_path, -1,
  /* DiagArray475 */ diag::pp_nonportable_system_path, -1,
  /* DiagArray476 */ diag::warn_neon_vector_initializer_non_portable, -1,
  /* DiagArray477 */ diag::warn_cstruct_memaccess, -1,
  /* DiagArray478 */ diag::warn_nsconsumed_attribute_mismatch, -1,
  /* DiagArray479 */ diag::warn_nsreturns_retained_attribute_mismatch, -1,
  /* DiagArray480 */ diag::warn_null_in_arithmetic_operation, diag::warn_null_in_comparison_operation, -1,
  /* DiagArray481 */ diag::null_in_char_or_string, diag::null_in_file, -1,
  /* DiagArray482 */ diag::warn_impcast_null_pointer_to_integer, -1,
  /* DiagArray483 */ diag::warn_binding_null_to_reference, diag::warn_indirection_through_null, -1,
  /* DiagArray484 */ diag::warn_gnu_null_ptr_arith, diag::warn_pointer_arith_null_ptr, -1,
  /* DiagArray485 */ diag::warn_conflicting_nullability_attr_overriding_param_types, diag::warn_conflicting_nullability_attr_overriding_ret_types, diag::warn_mismatched_nullability_attr, diag::warn_null_resettable_setter, diag::warn_nullability_duplicate, -1,
  /* DiagArray486 */ diag::warn_nullability_missing, -1,
  /* DiagArray487 */ diag::warn_nullability_missing_array, -1,
  /* DiagArray488 */ diag::warn_nullability_declspec, -1,
  /* DiagArray489 */ diag::ext_nullability, -1,
  /* DiagArray490 */ diag::warn_nullability_inferred_on_nested_type, -1,
  /* DiagArray491 */ diag::warn_nullability_lost, -1,
  /* DiagArray492 */ diag::warn_autosynthesis_property_ivar_match, -1,
  /* DiagArray493 */ diag::warn_impcast_constant_value_to_objc_bool, -1,
  /* DiagArray494 */ diag::warn_objc_boxing_invalid_utf8_string, -1,
  /* DiagArray495 */ diag::warn_objc_circular_container, -1,
  /* DiagArray497 */ diag::warn_objc_designated_init_missing_super_call, diag::warn_objc_designated_init_non_designated_init_call, diag::warn_objc_designated_init_non_super_designated_init_call, diag::warn_objc_implementation_missing_designated_init_override, diag::warn_objc_secondary_init_missing_init_call, diag::warn_objc_secondary_init_super_init_call, -1,
  /* DiagArray498 */ diag::warn_superclass_variable_sized_type_not_at_end, diag::warn_variable_sized_ivar_visibility, -1,
  /* DiagArray499 */ diag::warn_forward_class_redefinition, -1,
  /* DiagArray500 */ diag::warn_ivars_in_interface, -1,
  /* DiagArray501 */ diag::warn_objc_literal_comparison, -1,
  /* DiagArray502 */ diag::warn_impcast_objective_c_literal_to_bool, diag::warn_objc_collection_literal_element, -1,
  /* DiagArray503 */ diag::warn_pp_objc_macro_redef_ignored, -1,
  /* DiagArray504 */ diag::warn_messaging_unqualified_id, -1,
  /* DiagArray505 */ diag::warn_class_method_not_found, diag::warn_class_method_not_found_with_typo, diag::warn_inst_method_not_found, diag::warn_instance_method_not_found_with_typo, diag::warn_instance_method_on_class_found, diag::warn_root_inst_method_not_found, -1,
  /* DiagArray506 */ diag::warn_missing_explicit_synthesis, -1,
  /* DiagArray507 */ diag::warn_objc_missing_super_call, -1,
  /* DiagArray508 */ diag::warn_multiple_method_decl, -1,
  /* DiagArray509 */ diag::warn_objc_property_retain_of_block, -1,
  /* DiagArray510 */ diag::warn_objc_pointer_cxx_catch_fragile, -1,
  /* DiagArray511 */ diag::warn_objc_property_assign_on_object, -1,
  /* DiagArray512 */ diag::warn_impl_required_for_class_property, diag::warn_impl_required_in_category_for_class_property, diag::warn_setter_getter_impl_required, diag::warn_setter_getter_impl_required_in_category, -1,
  /* DiagArray513 */ diag::warn_property_implicitly_mismatched, -1,
  /* DiagArray514 */ diag::warn_cocoa_naming_owned_rule, -1,
  /* DiagArray515 */ diag::warn_objc_property_default_assign_on_object, diag::warn_objc_property_no_assignment_attribute, -1,
  /* DiagArray516 */ diag::warn_autosynthesis_property_in_superclass, diag::warn_no_autosynthesis_property, diag::warn_no_autosynthesis_shared_ivar_property, -1,
  /* DiagArray517 */ diag::warn_category_method_impl_match, -1,
  /* DiagArray518 */ diag::warn_auto_synthesizing_protocol_property, -1,
  /* DiagArray519 */ diag::warn_objc_redundant_qualified_class_type, -1,
  /* DiagArray520 */ diag::warn_objc_readonly_property_has_setter, -1,
  /* DiagArray522 */ diag::warn_objc_redundant_literal_use, -1,
  /* DiagArray523 */ diag::warn_objc_root_class_missing, -1,
  /* DiagArray525 */ diag::warn_impcast_float_to_objc_signed_char_bool, -1,
  /* DiagArray526 */ diag::warn_impcast_int_to_objc_signed_char_bool, -1,
  /* DiagArray527 */ diag::warn_objc_string_literal_comparison, -1,
  /* DiagArray528 */ diag::warn_concatenated_nsarray_literal, -1,
  /* DiagArray529 */ diag::warn_objc_unsafe_perform_selector, -1,
  /* DiagArray530 */ diag::warn_odr_different_num_template_parameters, diag::warn_odr_different_template_parameter_kind, diag::warn_odr_field_type_inconsistent, diag::warn_odr_function_type_inconsistent, diag::warn_odr_ivar_type_inconsistent, diag::warn_odr_non_type_parameter_type_inconsistent, diag::warn_odr_objc_method_num_params_inconsistent, diag::warn_odr_objc_method_param_type_inconsistent, diag::warn_odr_objc_method_result_type_inconsistent, diag::warn_odr_objc_method_variadic_inconsistent, diag::warn_odr_objc_property_impl_kind_inconsistent, diag::warn_odr_objc_property_type_inconsistent, diag::warn_odr_objc_superclass_inconsistent, diag::warn_odr_objc_synthesize_ivar_inconsistent, diag::warn_odr_parameter_pack_non_pack, diag::warn_odr_tag_type_inconsistent, diag::warn_odr_variable_multiple_def, diag::warn_odr_variable_type_inconsistent, -1,
  /* DiagArray531 */ diag::warn_old_style_cast, -1,
  /* DiagArray533 */ diag::ext_opencl_ext_vector_type_rgba_selector, -1,
  /* DiagArray534 */ diag::warn_omp_alignment_not_power_of_two, diag::warn_omp_allocate_thread_on_task_target_directive, diag::warn_omp_declare_variant_cs_name_expected, diag::warn_omp_linear_step_zero, diag::warn_omp_more_one_device_type_clause, diag::warn_omp_used_different_allocator, -1,
  /* DiagArray535 */ diag::ext_omp_loop_not_canonical_init, diag::warn_omp_loop_64_bit_var, -1,
  /* DiagArray536 */ diag::warn_drv_omp_offload_target_duplicate, diag::warn_drv_omp_offload_target_missingbcruntime, diag::warn_omp_declare_target_after_first_use, diag::warn_omp_non_trivial_type_mapped, diag::warn_omp_not_in_target_context, -1,
  /* DiagArray537 */ diag::warn_drv_fine_grained_bitfield_accesses_ignored, diag::warn_drv_moutline_unsupported_opt, diag::warn_drv_ps4_force_pic, diag::warn_drv_unsupported_longcalls, diag::warn_drv_unsupported_pic_with_mabicalls, diag::warn_drv_vectorize_needs_hvx, -1,
  /* DiagArray538 */ diag::ext_typecheck_ordered_comparison_of_function_pointers, -1,
  /* DiagArray539 */ diag::ext_out_of_line_declaration, -1,
  /* DiagArray540 */ diag::ext_use_out_of_scope_declaration, -1,
  /* DiagArray541 */ diag::warn_overaligned_type, -1,
  /* DiagArray543 */ diag::ext_string_too_long, -1,
  /* DiagArray544 */ diag::warn_overloaded_shift_in_comparison, -1,
  /* DiagArray545 */ diag::warn_overloaded_virtual, -1,
  /* DiagArray547 */ diag::warn_fe_override_module, -1,
  /* DiagArray548 */ diag::warn_conflicting_overriding_param_modifiers, diag::warn_conflicting_overriding_param_types, diag::warn_conflicting_overriding_ret_type_modifiers, diag::warn_conflicting_overriding_ret_types, diag::warn_conflicting_overriding_variadic, diag::warn_non_contravariant_overriding_param_types, diag::warn_non_covariant_overriding_ret_types, -1,
  /* DiagArray549 */ diag::warn_drv_overriding_flag_option, -1,
  /* DiagArray550 */ diag::warn_unnecessary_packed, -1,
  /* DiagArray551 */ diag::warn_padded_struct_anon_field, diag::warn_padded_struct_field, diag::warn_padded_struct_size, -1,
  /* DiagArray552 */ diag::warn_condition_is_assignment, diag::warn_precedence_bitwise_rel, diag::warn_precedence_conditional, -1,
  /* DiagArray553 */ diag::warn_equality_with_extra_parens, -1,
  /* DiagArray555 */ diag::remark_fe_backend_optimization_remark, -1,
  /* DiagArray556 */ diag::remark_fe_backend_optimization_remark_analysis, diag::remark_fe_backend_optimization_remark_analysis_aliasing, diag::remark_fe_backend_optimization_remark_analysis_fpcommute, -1,
  /* DiagArray557 */ diag::warn_fe_backend_optimization_failure, -1,
  /* DiagArray558 */ diag::remark_fe_backend_optimization_remark_missed, -1,
  /* DiagArray559 */ diag::warn_module_uses_date_time, -1,
  /* DiagArray560 */ diag::ext_aggregate_init_not_constant, diag::ext_anonymous_record_with_type, diag::ext_anonymous_struct_union_qualified, diag::ext_array_size_conversion, diag::ext_auto_new_list_init, diag::ext_c99_array_usage, diag::ext_c99_compound_literal, diag::ext_c99_feature, diag::ext_c99_flexible_array_member, diag::ext_c99_variable_decl_in_for_loop, diag::ext_cast_fn_obj, diag::ext_clang_diagnose_if, diag::ext_clang_enable_if, diag::ext_cxx11_enum_fixed_underlying_type, diag::ext_cxx14_attr, diag::ext_cxx17_attr, diag::ext_cxx2a_attr, diag::ext_designated_init, diag::ext_duplicate_declspec, diag::ext_ellipsis_exception_spec, diag::ext_empty_fnmacro_arg, diag::ext_enum_value_not_int, diag::ext_enumerator_list_comma_c, diag::ext_enumerator_list_comma_cxx, diag::ext_explicit_instantiation_without_qualified_id, diag::ext_extern_template, diag::ext_extra_semi, diag::ext_forward_ref_enum, diag::ext_freestanding_complex, diag::ext_gnu_array_range, diag::ext_gnu_ptr_func_arith, diag::ext_gnu_subscript_void_type, diag::ext_gnu_void_ptr, diag::ext_hex_constant_invalid, diag::ext_hex_literal_invalid, diag::ext_ident_list_in_param, diag::ext_integer_complement_complex, diag::ext_integer_increment_complex, diag::ext_internal_in_extern_inline_quiet, diag::ext_line_comment, diag::ext_main_used, diag::ext_multi_line_line_comment, diag::ext_named_variadic_macro, diag::ext_no_newline_eof, diag::ext_nonstandard_escape, diag::ext_ns_enum_attribute, diag::ext_param_not_declared, diag::ext_pointer_to_const_ref_member_on_rvalue, diag::ext_pp_bad_vaargs_use, diag::ext_pp_comma_expr, diag::ext_pp_ident_directive, diag::ext_pp_line_too_big, diag::ext_pp_opencl_variadic_macros, diag::ext_pp_warning_directive, diag::ext_return_has_void_expr, diag::ext_rvalue_to_reference_access_ctor, diag::ext_rvalue_to_reference_temp_copy_no_viable, diag::ext_sizeof_alignof_function_type, diag::ext_sizeof_alignof_void_type, diag::ext_subscript_non_lvalue, diag::ext_thread_before, diag::ext_typecheck_addrof_void, diag::ext_typecheck_cast_nonscalar, diag::ext_typecheck_comparison_of_fptr_to_void, diag::ext_typecheck_cond_one_void, diag::ext_typecheck_convert_pointer_void_func, diag::ext_typecheck_ordered_comparison_of_pointer_and_zero, diag::ext_variadic_macro, diag::warn_defined_in_function_type_macro, diag::warn_format_conversion_argument_type_mismatch_pedantic, diag::warn_illegal_constant_array_size, diag::warn_kern_is_method, -1,
  /* DiagArray561 */ diag::warn_pragma_extension_is_core, -1,
  /* DiagArray562 */ diag::warn_pessimizing_move_on_initialization, diag::warn_pessimizing_move_on_return, -1,
  /* DiagArray563 */ diag::ext_gnu_ptr_func_arith, diag::ext_gnu_subscript_void_type, diag::ext_gnu_void_ptr, diag::ext_sizeof_alignof_function_type, diag::ext_sizeof_alignof_void_type, diag::warn_sub_ptr_zero_size_types, -1,
  /* DiagArray564 */ diag::warn_cast_nonnull_to_bool, diag::warn_impcast_pointer_to_bool, -1,
  /* DiagArray565 */ diag::warn_pointer_compare, -1,
  /* DiagArray566 */ diag::ext_typecheck_comparison_of_pointer_integer, -1,
  /* DiagArray567 */ diag::ext_typecheck_convert_incompatible_pointer_sign, -1,
  /* DiagArray569 */ diag::ext_typecheck_cond_incompatible_pointers, -1,
  /* DiagArray570 */ diag::warn_poison_system_directories, -1,
  /* DiagArray571 */ diag::warn_side_effects_typeid, -1,
  /* DiagArray572 */ diag::warn_pragma_attribute_unused, -1,
  /* DiagArray573 */ diag::pp_pragma_once_in_main_file, -1,
  /* DiagArray574 */ diag::warn_pragma_pack_modified_after_include, diag::warn_pragma_pack_no_pop_eof, -1,
  /* DiagArray575 */ diag::warn_pragma_pack_non_default_at_include, -1,
  /* DiagArray576 */ diag::pp_pragma_sysheader_in_main_file, -1,
  /* DiagArray577 */ diag::warn_redefine_extname_not_applied, -1,
  /* DiagArray578 */ diag::ext_predef_outside_function, -1,
  /* DiagArray579 */ diag::warn_private_extern, -1,
  /* DiagArray580 */ diag::warn_use_of_private_header_outside_module, -1,
  /* DiagArray581 */ diag::warn_mmap_mismatched_private_module_name, diag::warn_mmap_mismatched_private_submodule, diag::warn_mmap_redundant_export_as, diag::warn_no_priv_submodule_use_toplevel, -1,
  /* DiagArray582 */ diag::warn_profile_data_missing, -1,
  /* DiagArray583 */ diag::warn_profile_data_out_of_date, -1,
  /* DiagArray584 */ diag::warn_profile_data_unprofiled, -1,
  /* DiagArray585 */ diag::warn_property_access_suggest, -1,
  /* DiagArray586 */ diag::warn_property_attr_mismatch, diag::warn_property_attribute, diag::warn_property_redecl_getter_mismatch, diag::warn_readonly_property, -1,
  /* DiagArray587 */ diag::warn_unimplemented_protocol_method, -1,
  /* DiagArray588 */ diag::warn_protocol_property_mismatch, -1,
  /* DiagArray589 */ diag::err_func_returning_qualified_void, -1,
  /* DiagArray590 */ diag::warn_quoted_include_in_framework_header, -1,
  /* DiagArray591 */ diag::warn_for_range_const_reference_copy, diag::warn_for_range_copy, diag::warn_for_range_variable_always_copy, -1,
  /* DiagArray592 */ diag::warn_auto_readonly_iboutlet_property, -1,
  /* DiagArray593 */ diag::warn_bad_receiver_type, -1,
  /* DiagArray594 */ diag::warn_receiver_forward_class, diag::warn_receiver_forward_instance, -1,
  /* DiagArray595 */ diag::ext_member_redeclared, -1,
  /* DiagArray597 */ diag::warn_redundant_move_on_return, -1,
  /* DiagArray598 */ diag::warn_redundant_parens_around_declarator, -1,
  /* DiagArray599 */ diag::ext_register_storage_class, -1,
  /* DiagArray600 */ diag::warn_reinterpret_different_from_static, -1,
  /* DiagArray601 */ diag::remark_fe_backend_plugin, -1,
  /* DiagArray603 */ diag::warn_initializer_out_of_order, -1,
  /* DiagArray604 */ diag::ext_designated_init_reordered, -1,
  /* DiagArray605 */ diag::warn_objc_requires_super_protocol, -1,
  /* DiagArray606 */ diag::warn_pp_macro_is_reserved_id, -1,
  /* DiagArray607 */ diag::ext_ms_reserved_user_defined_literal, diag::ext_reserved_user_defined_literal, -1,
  /* DiagArray608 */ diag::ext_retained_language_linkage, -1,
  /* DiagArray609 */ diag::warn_ret_addr_label, diag::warn_ret_local_temp_addr_ref, diag::warn_ret_stack_addr_ref, -1,
  /* DiagArray610 */ diag::warn_return_std_move, -1,
  /* DiagArray611 */ diag::warn_return_std_move_in_cxx11, -1,
  /* DiagArray612 */ diag::ext_return_has_expr, diag::ext_return_missing_expr, diag::warn_falloff_nonvoid_coroutine, diag::warn_falloff_nonvoid_function, diag::warn_falloff_nonvoid_lambda, diag::warn_maybe_falloff_nonvoid_coroutine, diag::warn_maybe_falloff_nonvoid_function, diag::warn_maybe_falloff_nonvoid_lambda, diag::warn_return_missing_expr, -1,
  /* DiagArray613 */ diag::warn_return_value_udt, diag::warn_return_value_udt_incomplete, -1,
  /* DiagArray614 */ diag::remark_sanitize_address_insert_extra_padding_accepted, diag::remark_sanitize_address_insert_extra_padding_rejected, -1,
  /* DiagArray615 */ diag::warn_attribute_section_on_redeclaration, diag::warn_duplicate_codeseg_attribute, diag::warn_mismatched_section, -1,
  /* DiagArray616 */ diag::warn_unimplemented_selector, -1,
  /* DiagArray617 */ diag::warn_multiple_selectors, -1,
  /* DiagArray618 */ diag::warn_self_assignment_builtin, -1,
  /* DiagArray619 */ diag::warn_identity_field_assign, -1,
  /* DiagArray620 */ diag::warn_self_assignment_overloaded, -1,
  /* DiagArray621 */ diag::warn_self_move, -1,
  /* DiagArray622 */ diag::warn_semicolon_before_method_body, -1,
  /* DiagArray623 */ diag::warn_missing_sentinel, diag::warn_not_enough_argument, -1,
  /* DiagArray625 */ diag::warn_fe_serialized_diag_failure, diag::warn_fe_serialized_diag_merge_failure, -1,
  /* DiagArray626 */ diag::warn_decl_shadow, -1,
  /* DiagArray628 */ diag::warn_shadow_field, -1,
  /* DiagArray629 */ diag::warn_ctor_parm_shadows_field, -1,
  /* DiagArray630 */ diag::warn_modifying_shadowing_decl, -1,
  /* DiagArray631 */ diag::warn_ivar_use_hidden, -1,
  /* DiagArray632 */ diag::warn_decl_shadow_uncaptured_local, -1,
  /* DiagArray633 */ diag::warn_shift_negative, -1,
  /* DiagArray634 */ diag::warn_shift_gt_typewidth, -1,
  /* DiagArray635 */ diag::warn_shift_lhs_negative, -1,
  /* DiagArray636 */ diag::warn_addition_in_bitshift, -1,
  /* DiagArray637 */ diag::warn_shift_result_gt_typewidth, -1,
  /* DiagArray638 */ diag::warn_shift_result_sets_sign_bit, -1,
  /* DiagArray639 */ diag::warn_impcast_integer_64_32, -1,
  /* DiagArray640 */ diag::warn_mixed_sign_comparison, -1,
  /* DiagArray641 */ diag::warn_impcast_integer_sign, diag::warn_impcast_integer_sign_conditional, diag::warn_impcast_nonnegative_result, -1,
  /* DiagArray643 */ diag::warn_no_underlying_type_specified_for_enum_bitfield, -1,
  /* DiagArray644 */ diag::ext_wchar_t_sign_spec, -1,
  /* DiagArray645 */ diag::warn_sizeof_array_param, -1,
  /* DiagArray646 */ diag::warn_sizeof_array_decay, -1,
  /* DiagArray647 */ diag::warn_division_sizeof_array, -1,
  /* DiagArray648 */ diag::warn_division_sizeof_ptr, -1,
  /* DiagArray649 */ diag::warn_sizeof_pointer_expr_memaccess, diag::warn_sizeof_pointer_type_memaccess, -1,
  /* DiagArray650 */ diag::warn_slash_u_filename, -1,
  /* DiagArray651 */ diag::warn_sometimes_uninit_var, -1,
  /* DiagArray652 */ diag::warn_omp_declare_variant_after_emitted, diag::warn_omp_declare_variant_after_used, diag::warn_omp_declare_variant_marked_as_declare_variant, diag::warn_omp_nesting_simd, diag::warn_pragma_omp_ignored, -1,
  /* DiagArray653 */ diag::warn_sampler_initializer_invalid_bits, -1,
  /* DiagArray654 */ diag::warn_stack_exhausted, -1,
  /* DiagArray656 */ diag::ext_in_class_initializer_float_type_cxx11, -1,
  /* DiagArray657 */ diag::ext_internal_in_extern_inline, diag::ext_internal_in_extern_inline_quiet, -1,
  /* DiagArray658 */ diag::warn_static_inline_explicit_inst_ignored, -1,
  /* DiagArray659 */ diag::warn_static_local_in_extern_inline, -1,
  /* DiagArray660 */ diag::warn_static_self_reference_in_init, -1,
  /* DiagArray661 */ diag::warn_drv_libstdcxx_not_found, -1,
  /* DiagArray673 */ diag::warn_strict_prototypes, -1,
  /* DiagArray674 */ diag::warn_strict_multiple_method_decl, -1,
  /* DiagArray675 */ diag::warn_stringcompare, -1,
  /* DiagArray676 */ diag::warn_impcast_string_literal_to_bool, -1,
  /* DiagArray677 */ diag::warn_string_plus_char, -1,
  /* DiagArray678 */ diag::warn_string_plus_int, -1,
  /* DiagArray679 */ diag::warn_strlcpycat_wrong_size, -1,
  /* DiagArray680 */ diag::warn_strncat_large_size, diag::warn_strncat_src_size, diag::warn_strncat_wrong_size, -1,
  /* DiagArray681 */ diag::ext_typecheck_base_super, -1,
  /* DiagArray682 */ diag::warn_suspicious_bzero_size, -1,
  /* DiagArray684 */ diag::warn_case_value_overflow, diag::warn_missing_case, diag::warn_not_in_enum, -1,
  /* DiagArray685 */ diag::warn_bool_switch_condition, -1,
  /* DiagArray687 */ diag::warn_def_missing_case, -1,
  /* DiagArray688 */ diag::warn_sync_fetch_and_nand_semantics_change, -1,
  /* DiagArray690 */ diag::warn_comparison_bitwise_always, diag::warn_comparison_bitwise_or, -1,
  /* DiagArray691 */ diag::warn_comparison_always, -1,
  /* DiagArray692 */ diag::warn_integer_constants_in_conditional_always_true, diag::warn_left_shift_always, diag::warn_tautological_bool_compare, -1,
  /* DiagArray694 */ diag::warn_out_of_range_compare, -1,
  /* DiagArray695 */ diag::warn_tautological_compare_objc_bool, -1,
  /* DiagArray696 */ diag::warn_tautological_overlap_comparison, -1,
  /* DiagArray697 */ diag::warn_nonnull_expr_compare, diag::warn_null_pointer_compare, -1,
  /* DiagArray698 */ diag::warn_tautological_constant_compare, -1,
  /* DiagArray699 */ diag::warn_address_of_reference_null_compare, diag::warn_this_null_compare, -1,
  /* DiagArray700 */ diag::warn_unsigned_enum_always_true_comparison, -1,
  /* DiagArray701 */ diag::warn_unsigned_always_true_comparison, -1,
  /* DiagArray702 */ diag::ext_typecheck_decl_incomplete_type, -1,
  /* DiagArray704 */ diag::warn_acquired_before, diag::warn_acquired_before_after_cycle, diag::warn_cannot_resolve_lock, diag::warn_double_lock, diag::warn_expecting_lock_held_on_loop, diag::warn_expecting_locked, diag::warn_fun_excludes_mutex, diag::warn_fun_requires_lock, diag::warn_lock_exclusive_and_shared, diag::warn_lock_some_predecessors, diag::warn_no_unlock, diag::warn_unlock_but_no_lock, diag::warn_unlock_kind_mismatch, diag::warn_var_deref_requires_any_lock, diag::warn_var_deref_requires_lock, diag::warn_variable_requires_any_lock, diag::warn_variable_requires_lock, -1,
  /* DiagArray705 */ diag::warn_invalid_capability_name, diag::warn_thread_attribute_argument_not_lockable, diag::warn_thread_attribute_decl_not_lockable, diag::warn_thread_attribute_decl_not_pointer, diag::warn_thread_attribute_ignored, diag::warn_thread_attribute_not_on_capability_member, diag::warn_thread_attribute_not_on_non_static_member, -1,
  /* DiagArray706 */ diag::warn_thread_safety_beta, -1,
  /* DiagArray707 */ diag::warn_acquire_requires_negative_cap, -1,
  /* DiagArray708 */ diag::warn_fun_requires_lock_precise, diag::warn_var_deref_requires_lock_precise, diag::warn_variable_requires_lock_precise, -1,
  /* DiagArray709 */ diag::warn_guarded_pass_by_reference, diag::warn_pt_guarded_pass_by_reference, -1,
  /* DiagArray710 */ diag::warn_thread_safety_verbose, -1,
  /* DiagArray711 */ diag::trigraph_converted, diag::trigraph_ends_block_comment, diag::trigraph_ignored, diag::trigraph_ignored_block_comment, -1,
  /* DiagArray713 */ diag::warn_type_safety_null_pointer_required, diag::warn_type_safety_type_mismatch, diag::warn_type_tag_for_datatype_wrong_kind, -1,
  /* DiagArray714 */ diag::ext_redefinition_of_typedef, -1,
  /* DiagArray715 */ diag::ext_typename_missing, -1,
  /* DiagArray716 */ diag::warn_fe_unable_to_open_stats_file, -1,
  /* DiagArray717 */ diag::warn_unavailable_fwdclass_message, -1,
  /* DiagArray718 */ diag::warn_undeclared_selector, diag::warn_undeclared_selector_with_typo, -1,
  /* DiagArray719 */ diag::warn_pp_undef_identifier, -1,
  /* DiagArray720 */ diag::warn_address_of_reference_bool_conversion, diag::warn_this_bool_conversion, -1,
  /* DiagArray721 */ diag::warn_func_template_missing, -1,
  /* DiagArray722 */ diag::warn_undefined_inline, -1,
  /* DiagArray723 */ diag::warn_undefined_internal, -1,
  /* DiagArray724 */ diag::ext_undefined_internal_type, -1,
  /* DiagArray725 */ diag::warn_pointer_indirection_from_incompatible_type, diag::warn_undefined_reinterpret_cast, -1,
  /* DiagArray726 */ diag::warn_var_template_missing, -1,
  /* DiagArray727 */ diag::warn_throw_underaligned_obj, -1,
  /* DiagArray728 */ diag::warn_side_effects_unevaluated_context, -1,
  /* DiagArray729 */ diag::warn_unguarded_availability, -1,
  /* DiagArray730 */ diag::warn_unguarded_availability_new, -1,
  /* DiagArray731 */ diag::warn_ucn_escape_incomplete, diag::warn_ucn_escape_no_digits, diag::warn_ucn_escape_surrogate, diag::warn_ucn_not_valid_in_c89, diag::warn_ucn_not_valid_in_c89_literal, -1,
  /* DiagArray732 */ diag::warn_utf8_symbol_homoglyph, -1,
  /* DiagArray733 */ diag::ext_unicode_whitespace, -1,
  /* DiagArray734 */ diag::warn_utf8_symbol_zero_width, -1,
  /* DiagArray735 */ diag::warn_base_class_is_uninit, diag::warn_field_is_uninit, diag::warn_reference_field_is_uninit, diag::warn_uninit_byref_blockvar_captured_by_block, diag::warn_uninit_self_reference_in_init, diag::warn_uninit_self_reference_in_reference_init, diag::warn_uninit_var, -1,
  /* DiagArray736 */ diag::warn_drv_unknown_argument_clang_cl, diag::warn_drv_unknown_argument_clang_cl_with_suggestion, -1,
  /* DiagArray737 */ diag::warn_unknown_attribute_ignored, -1,
  /* DiagArray738 */ diag::ext_unknown_escape, -1,
  /* DiagArray739 */ diag::ext_on_off_switch_syntax, diag::ext_pragma_syntax_eod, diag::ext_stdc_pragma_ignored, diag::warn_pragma_diagnostic_cannot_pop, diag::warn_pragma_diagnostic_invalid, diag::warn_pragma_diagnostic_invalid_option, diag::warn_pragma_diagnostic_invalid_token, diag::warn_pragma_exec_charset_expected, diag::warn_pragma_exec_charset_push_invalid, diag::warn_pragma_exec_charset_spec_invalid, diag::warn_pragma_ignored, diag::warn_pragma_include_alias_expected, diag::warn_pragma_include_alias_expected_filename, diag::warn_pragma_include_alias_mismatch_angle, diag::warn_pragma_include_alias_mismatch_quote, diag::warn_pragma_warning_expected, diag::warn_pragma_warning_expected_number, diag::warn_pragma_warning_push_level, diag::warn_pragma_warning_spec_invalid, diag::warn_stdc_fenv_access_not_supported, -1,
  /* DiagArray740 */ diag::warn_unknown_sanitizer_ignored, -1,
  /* DiagArray741 */ diag::warn_pragma_diagnostic_unknown_warning, diag::warn_unknown_diag_option, diag::warn_unknown_warning_specifier, -1,
  /* DiagArray742 */ diag::ext_template_arg_unnamed_type, -1,
  /* DiagArray743 */ diag::warn_unneeded_internal_decl, diag::warn_unneeded_static_internal_decl, -1,
  /* DiagArray744 */ diag::warn_unneeded_member_function, -1,
  /* DiagArray745 */ diag::warn_unreachable, -1,
  /* DiagArray747 */ diag::warn_unreachable_break, -1,
  /* DiagArray748 */ diag::warn_unreachable_loop_increment, -1,
  /* DiagArray749 */ diag::warn_unreachable_return, -1,
  /* DiagArray750 */ diag::warn_unsequenced_mod_mod, diag::warn_unsequenced_mod_use, -1,
  /* DiagArray751 */ diag::warn_target_unsupported_abs2008, diag::warn_target_unsupported_abslegacy, -1,
  /* DiagArray752 */ diag::warn_at_available_unchecked_use, -1,
  /* DiagArray753 */ diag::warn_target_unsupported_compact_branches, -1,
  /* DiagArray754 */ diag::warn_attribute_dll_instantiated_base_class, -1,
  /* DiagArray755 */ diag::warn_template_qualified_friend_ignored, diag::warn_template_qualified_friend_unsupported, -1,
  /* DiagArray756 */ diag::warn_drv_unsupported_gpopt, -1,
  /* DiagArray757 */ diag::warn_target_unsupported_nan2008, diag::warn_target_unsupported_nanlegacy, -1,
  /* DiagArray758 */ diag::warn_drv_unsupported_debug_info_opt_for_target, -1,
  /* DiagArray759 */ diag::warn_attribute_protected_visibility, -1,
  /* DiagArray760 */ diag::ext_partial_specs_not_deducible, -1,
  /* DiagArray763 */ diag::warn_drv_diagnostics_hotness_requires_pgo, diag::warn_drv_empty_joined_argument, diag::warn_drv_input_file_unused, diag::warn_drv_input_file_unused_by_cpp, diag::warn_drv_preprocessed_input_file_unused, diag::warn_drv_unused_argument, diag::warn_ignored_clang_option, -1,
  /* DiagArray764 */ diag::warn_unused_comparison, -1,
  /* DiagArray765 */ diag::warn_unused_const_variable, -1,
  /* DiagArray766 */ diag::warn_unused_exception_param, -1,
  /* DiagArray767 */ diag::warn_unused_function, -1,
  /* DiagArray768 */ diag::warn_unused_property_expr, -1,
  /* DiagArray769 */ diag::warn_unused_label, -1,
  /* DiagArray770 */ diag::warn_unused_lambda_capture, -1,
  /* DiagArray771 */ diag::warn_unused_local_typedef, -1,
  /* DiagArray773 */ diag::pp_macro_not_used, -1,
  /* DiagArray774 */ diag::warn_unused_member_function, -1,
  /* DiagArray775 */ diag::warn_unused_parameter, -1,
  /* DiagArray776 */ diag::warn_unused_private_field, -1,
  /* DiagArray777 */ diag::warn_unused_property_backing_ivar, -1,
  /* DiagArray778 */ diag::warn_unused_result, diag::warn_unused_result_msg, -1,
  /* DiagArray779 */ diag::warn_unused_template, -1,
  /* DiagArray780 */ diag::warn_unused_call, diag::warn_unused_constructor, diag::warn_unused_constructor_msg, diag::warn_unused_container_subscript_expr, diag::warn_unused_expr, diag::warn_unused_voidptr, -1,
  /* DiagArray781 */ diag::warn_unused_variable, -1,
  /* DiagArray782 */ diag::warn_unused_volatile, -1,
  /* DiagArray783 */ diag::warn_used_but_marked_unused, -1,
  /* DiagArray784 */ diag::warn_user_literal_reserved, -1,
  /* DiagArray785 */ diag::warn_diagnose_if_succeeded, -1,
  /* DiagArray786 */ diag::warn_second_arg_of_va_start_not_last_named_param, diag::warn_second_parameter_to_va_arg_never_compatible, diag::warn_va_start_type_is_undefined, -1,
  /* DiagArray787 */ diag::ext_named_variadic_macro, diag::ext_pp_bad_vaopt_use, diag::ext_variadic_macro, -1,
  /* DiagArray788 */ diag::warn_typecheck_vector_element_sizes_not_equal, -1,
  /* DiagArray789 */ diag::warn_incompatible_vectors, -1,
  /* DiagArray791 */ diag::warn_empty_parens_are_function_decl, diag::warn_parens_disambiguated_as_function_declaration, diag::warn_parens_disambiguated_as_variable_declaration, -1,
  /* DiagArray792 */ diag::warn_decl_in_param_list, diag::warn_redefinition_in_param_list, -1,
  /* DiagArray793 */ diag::warn_vla_used, -1,
  /* DiagArray794 */ diag::ext_vla, -1,
  /* DiagArray795 */ diag::ext_typecheck_indirection_through_void_pointer, -1,
  /* DiagArray797 */ diag::warn_weak_template_vtable, -1,
  /* DiagArray798 */ diag::warn_weak_vtable, -1,
  /* DiagArray799 */ diag::ext_deprecated_string_literal_conversion, -1,
  /* DiagArray801 */ diag::warn_xor_used_as_pow, diag::warn_xor_used_as_pow_base, diag::warn_xor_used_as_pow_base_extra, -1,
  /* DiagArray802 */ diag::warn_zero_as_null_pointer_constant, -1,
  /* DiagArray803 */ diag::ext_typecheck_zero_array_size, -1,
};

static const int16_t DiagSubGroups[] = {
  /* Empty */ -1,
  /* DiagSubGroup0 */ 236, -1,
  /* DiagSubGroup4 */ 15, 236, -1,
  /* DiagSubGroup11 */ 564, 675, 697, -1,
  /* DiagSubGroup15 */ 453, 552, 684, 685, -1,
  /* DiagSubGroup25 */ 32, 31, 28, -1,
  /* DiagSubGroup30 */ 27, -1,
  /* DiagSubGroup36 */ 38, 37, -1,
  /* DiagSubGroup46 */ 310, 157, -1,
  /* DiagSubGroup49 */ 737, 303, -1,
  /* DiagSubGroup59 */ 90, 111, 276, -1,
  /* DiagSubGroup60 */ 114, -1,
  /* DiagSubGroup68 */ 564, 720, -1,
  /* DiagSubGroup69 */ 68, -1,
  /* DiagSubGroup78 */ 81, -1,
  /* DiagSubGroup79 */ 85, -1,
  /* DiagSubGroup80 */ 89, -1,
  /* DiagSubGroup81 */ 89, 84, 82, 110, 108, 106, -1,
  /* DiagSubGroup83 */ 81, 112, 109, 107, -1,
  /* DiagSubGroup85 */ 86, 87, 88, -1,
  /* DiagSubGroup91 */ 108, 106, -1,
  /* DiagSubGroup92 */ 91, 109, 107, -1,
  /* DiagSubGroup93 */ 90, -1,
  /* DiagSubGroup94 */ 185, 181, 95, 106, -1,
  /* DiagSubGroup96 */ 94, 107, -1,
  /* DiagSubGroup98 */ 93, -1,
  /* DiagSubGroup99 */ 94, -1,
  /* DiagSubGroup100 */ 95, -1,
  /* DiagSubGroup101 */ 97, -1,
  /* DiagSubGroup103 */ 102, -1,
  /* DiagSubGroup105 */ 104, -1,
  /* DiagSubGroup107 */ 106, -1,
  /* DiagSubGroup109 */ 108, -1,
  /* DiagSubGroup112 */ 110, 111, -1,
  /* DiagSubGroup113 */ 116, 118, 110, 108, 106, -1,
  /* DiagSubGroup117 */ 113, 114, 115, 112, 109, 107, -1,
  /* DiagSubGroup121 */ 104, -1,
  /* DiagSubGroup122 */ 121, -1,
  /* DiagSubGroup132 */ 470, -1,
  /* DiagSubGroup135 */ 134, -1,
  /* DiagSubGroup142 */ 62, 493, -1,
  /* DiagSubGroup146 */ 68, 142, 224, 63, 246, 639, 353, 319, 316, 379, 467, 482, 502, 641, 676, -1,
  /* DiagSubGroup147 */ 482, -1,
  /* DiagSubGroup148 */ 149, -1,
  /* DiagSubGroup151 */ 2, -1,
  /* DiagSubGroup158 */ 160, 162, 161, 609, -1,
  /* DiagSubGroup174 */ 173, 171, -1,
  /* DiagSubGroup175 */ 176, 177, 178, 179, 181, 185, 186, 187, 188, -1,
  /* DiagSubGroup183 */ 184, -1,
  /* DiagSubGroup188 */ 82, -1,
  /* DiagSubGroup194 */ 195, -1,
  /* DiagSubGroup199 */ 201, 200, -1,
  /* DiagSubGroup202 */ 203, -1,
  /* DiagSubGroup212 */ 179, -1,
  /* DiagSubGroup213 */ 471, -1,
  /* DiagSubGroup220 */ 240, -1,
  /* DiagSubGroup221 */ 223, -1,
  /* DiagSubGroup236 */ 434, 308, 347, 622, 437, 640, 775, 484, 217, -1,
  /* DiagSubGroup238 */ 115, 86, -1,
  /* DiagSubGroup239 */ 217, -1,
  /* DiagSubGroup246 */ 248, 249, -1,
  /* DiagSubGroup251 */ 252, 260, 472, 257, 259, 253, -1,
  /* DiagSubGroup261 */ 255, 257, 259, -1,
  /* DiagSubGroup271 */ 272, 273, 275, 276, 277, 278, 279, 280, 281, 282, 283, 794, 284, 285, 286, 287, 288, 290, 595, 291, 292, 293, 294, 295, 296, 803, 297, 298, -1,
  /* DiagSubGroup307 */ 305, 306, -1,
  /* DiagSubGroup309 */ 317, 318, -1,
  /* DiagSubGroup313 */ 314, -1,
  /* DiagSubGroup316 */ 320, 525, -1,
  /* DiagSubGroup319 */ 526, -1,
  /* DiagSubGroup332 */ 333, 329, -1,
  /* DiagSubGroup338 */ 340, 469, -1,
  /* DiagSubGroup344 */ 181, -1,
  /* DiagSubGroup354 */ 353, -1,
  /* DiagSubGroup356 */ 357, -1,
  /* DiagSubGroup359 */ 304, -1,
  /* DiagSubGroup381 */ 116, -1,
  /* DiagSubGroup384 */ 88, -1,
  /* DiagSubGroup385 */ 250, 591, -1,
  /* DiagSubGroup395 */ 398, 403, 415, 401, 411, 419, 422, 407, 423, 416, 417, 421, 409, 406, 402, 420, 418, 405, 413, 412, 410, 397, 400, 424, 396, 399, 404, 341, -1,
  /* DiagSubGroup453 */ 130, 134, 174, 250, 251, 309, 345, 355, 429, 430, 454, 457, 602, 612, 618, 621, 645, 646, 678, 711, 735, 739, 761, 796, 507, 497, 498, 545, 579, 126, 234, 785, -1,
  /* DiagSubGroup454 */ 562, 597, 610, 621, -1,
  /* DiagSubGroup455 */ 415, -1,
  /* DiagSubGroup459 */ 89, -1,
  /* DiagSubGroup465 */ 95, -1,
  /* DiagSubGroup466 */ 640, 146, 380, -1,
  /* DiagSubGroup469 */ 468, -1,
  /* DiagSubGroup486 */ 487, -1,
  /* DiagSubGroup496 */ 521, -1,
  /* DiagSubGroup501 */ 527, -1,
  /* DiagSubGroup521 */ 522, -1,
  /* DiagSubGroup524 */ 526, 525, 493, 695, -1,
  /* DiagSubGroup546 */ 347, -1,
  /* DiagSubGroup552 */ 383, 382, 65, 66, 636, 544, 553, 159, -1,
  /* DiagSubGroup554 */ 729, -1,
  /* DiagSubGroup560 */ 119, 86, 88, 90, 104, 245, 263, 273, 275, 276, 277, 278, 279, 280, 282, 283, 284, 285, 286, 287, 288, 290, 291, 292, 295, 297, 298, 374, 384, 398, 399, 401, 404, 406, 411, 412, 418, 543, 794, 803, 218, 489, 243, 724, 608, 137, 460, 167, 204, 376, 324, 214, -1,
  /* DiagSubGroup574 */ 575, -1,
  /* DiagSubGroup577 */ 739, 307, 572, 574, -1,
  /* DiagSubGroup599 */ 185, -1,
  /* DiagSubGroup602 */ 603, 604, -1,
  /* DiagSubGroup607 */ 84, -1,
  /* DiagSubGroup612 */ 613, -1,
  /* DiagSubGroup616 */ 617, -1,
  /* DiagSubGroup618 */ 620, 619, -1,
  /* DiagSubGroup624 */ 750, -1,
  /* DiagSubGroup626 */ 630, 631, -1,
  /* DiagSubGroup627 */ 626, 629, 632, 628, -1,
  /* DiagSubGroup629 */ 630, -1,
  /* DiagSubGroup656 */ 293, -1,
  /* DiagSubGroup683 */ 649, 211, 477, 392, 682, -1,
  /* DiagSubGroup691 */ 692, 697, 696, 690, 699, 695, -1,
  /* DiagSubGroup692 */ 694, -1,
  /* DiagSubGroup693 */ 698, 701, 700, -1,
  /* DiagSubGroup703 */ 705, 704, 708, 709, -1,
  /* DiagSubGroup712 */ 693, -1,
  /* DiagSubGroup728 */ 571, -1,
  /* DiagSubGroup729 */ 730, -1,
  /* DiagSubGroup735 */ 651, 660, -1,
  /* DiagSubGroup742 */ 118, -1,
  /* DiagSubGroup745 */ 748, -1,
  /* DiagSubGroup746 */ 745, 747, 749, -1,
  /* DiagSubGroup761 */ 762, 767, 769, 776, 770, 771, 780, 781, 777, -1,
  /* DiagSubGroup767 */ 743, -1,
  /* DiagSubGroup772 */ 771, -1,
  /* DiagSubGroup774 */ 744, -1,
  /* DiagSubGroup779 */ 743, -1,
  /* DiagSubGroup780 */ 764, 778, 728, -1,
  /* DiagSubGroup781 */ 765, -1,
  /* DiagSubGroup790 */ 789, -1,
  /* DiagSubGroup799 */ 188, -1,
  /* DiagSubGroup800 */ 799, -1,
};

static const char DiagGroupNames[] = {
    "\000\020#pragma-messages\t#warnings\020CFString-literal\003CL4\032Indep"
    "endentClass-attribute\022NSObject-attribute\003abi\016absolute-value\024"
    "abstract-final-class\023abstract-vbase-init\007address\030address-of-pa"
    "cked-member\024address-of-temporary\020aggregate-return\003all\006alloc"
    "a\031alloca-with-align-alignof\020ambiguous-delete\022ambiguous-ellipsi"
    "s\017ambiguous-macro\031ambiguous-member-template\033ambiguous-reversed"
    "-operator\034analyzer-incompatible-plugin\025anonymous-pack-parens\003a"
    "rc%arc-bridge-casts-disallowed-in-nonarc\036arc-maybe-repeated-use-of-w"
    "eak\025arc-non-pod-memaccess\031arc-performSelector-leaks\030arc-repeat"
    "ed-use-of-weak\021arc-retain-cycles\032arc-unsafe-retained-assign\026ar"
    "gument-outside-range\014array-bounds\037array-bounds-pointer-arithmetic"
    "\003asm\025asm-ignored-qualifier\022asm-operand-widths\013assign-enum\006"
    "assume\013at-protocol\034atimport-in-framework-header\020atomic-alignme"
    "nt\027atomic-implicit-seq-cst\026atomic-memory-ordering\021atomic-prope"
    "rties*atomic-property-with-user-defined-accessor\035attribute-packed-fo"
    "r-bitfield\nattributes\033auto-disable-vptr-sanitizer\013auto-import\022"
    "auto-storage-class\013auto-var-id\014availability\030avr-rtlib-linking-"
    "quirks\016backend-plugin\030backslash-newline-escape\021bad-function-ca"
    "st\016binary-literal\026bind-to-temporary-copy\024binding-in-condition\034"
    "bitfield-constant-conversion\030bitfield-enum-conversion\016bitfield-wi"
    "dth\037bitwise-conditional-parentheses\026bitwise-op-parentheses\033blo"
    "ck-capture-autoreleasing\017bool-conversion\020bool-conversions\016bool"
    "-operation\022braced-scalar-init\013bridge-cast builtin-assume-aligned-"
    "alignment\027builtin-macro-redefined\027builtin-memcpy-chk-size\027buil"
    "tin-requires-header\nc++-compat\014c++0x-compat\020c++0x-extensions\017"
    "c++0x-narrowing\014c++11-compat(c++11-compat-deprecated-writable-string"
    "s\025c++11-compat-pedantic*c++11-compat-reserved-user-defined-literal\020"
    "c++11-extensions\020c++11-extra-semi\026c++11-inline-namespace\017c++11"
    "-long-long\017c++11-narrowing\024c++14-binary-literal\014c++14-compat\025"
    "c++14-compat-pedantic\020c++14-extensions\014c++17-compat\025c++17-comp"
    "at-mangling\025c++17-compat-pedantic\020c++17-extensions\020c++1y-exten"
    "sions\014c++1z-compat\025c++1z-compat-mangling\020c++1z-extensions\014c"
    "++2a-compat\025c++2a-compat-pedantic\020c++2a-designator\020c++2a-exten"
    "sions\036c++98-c++11-c++14-c++17-compat'c++98-c++11-c++14-c++17-compat-"
    "pedantic\030c++98-c++11-c++14-compat!c++98-c++11-c++14-compat-pedantic\022"
    "c++98-c++11-compat!c++98-c++11-compat-binary-literal\033c++98-c++11-com"
    "pat-pedantic\014c++98-compat#c++98-compat-bind-to-temporary-copy\027c++"
    "98-compat-extra-semi%c++98-compat-local-type-template-args\025c++98-com"
    "pat-pedantic'c++98-compat-unnamed-type-template-args\016c11-extensions\n"
    "c99-compat\016c99-designator\016c99-extensions#call-to-pure-virtual-fro"
    "m-ctor-dtor\ncast-align\027cast-calling-convention\020cast-of-sel-type\t"
    "cast-qual\023cast-qual-unrelated\nchar-align\017char-subscripts\014clan"
    "g-cl-pch\015class-varargs\005comma\007comment\010comments\036compare-di"
    "stinct-pointer-types\026complex-component-init\022concepts-ts-compat\031"
    "conditional-type-mismatch\031conditional-uninitialized\015config-macros"
    "\023constant-conversion\030constant-logical-operand\023constexpr-not-co"
    "nst\010consumed\nconversion\017conversion-null\tcoroutine%coroutine-mis"
    "sing-unhandled-exception\026covered-switch-default\003cpp\030cstring-fo"
    "rmat-directive\026ctad-maybe-unsupported\021ctor-dtor-privacy\003ctu\013"
    "cuda-compat\030custom-atomic-properties\010dangling\015dangling-else\016"
    "dangling-field\014dangling-gsl\031dangling-initializer-list\023darwin-s"
    "dk-settings\tdate-time\023dealloc-in-category\035debug-compression-unav"
    "ailable\033declaration-after-statement\024defaulted-comparison\032defau"
    "lted-function-deleted\026delegating-ctor-cycles delete-abstract-non-vir"
    "tual-dtor\021delete-incomplete$delete-non-abstract-non-virtual-dtor\027"
    "delete-non-virtual-dtor\ndeprecated\025deprecated-attributes\032depreca"
    "ted-comma-subscript\027deprecated-declarations!deprecated-dynamic-excep"
    "tion-spec\032deprecated-implementations\031deprecated-increment-bool\031"
    "deprecated-objc-isa-usage%deprecated-objc-pointer-introspection5depreca"
    "ted-objc-pointer-introspection-performSelector\023deprecated-register\027"
    "deprecated-this-capture\023deprecated-volatile\033deprecated-writable-s"
    "trings\022direct-ivar-access\030disabled-macro-expansion\025disabled-op"
    "timization\014discard-qual\034distributed-object-modifiers\013div-by-ze"
    "ro\020division-by-zero\036dll-attribute-on-redeclaration%dllexport-expl"
    "icit-instantiation-decl\032dllimport-static-field-def\015documentation\035"
    "documentation-deprecated-sync\022documentation-html\026documentation-pe"
    "dantic\035documentation-unknown-command\036dollar-in-identifier-extensi"
    "on\020double-promotion\030duplicate-decl-specifier\016duplicate-enum\024"
    "duplicate-method-arg\026duplicate-method-match\022duplicate-protocol\027"
    "dynamic-class-memaccess\026dynamic-exception-spec\006effc++\022embedded"
    "-directive\nempty-body\023empty-decomposition\017empty-init-stmt\026emp"
    "ty-translation-unit\013encode-type\014endif-labels\014enum-compare\030e"
    "num-compare-conditional\023enum-compare-switch\017enum-conversion\016en"
    "um-too-large\nexceptions\025exit-time-destructors\024expansion-to-defin"
    "ed\021experimental-isel\030explicit-initialize-call\027explicit-ownersh"
    "ip-type\016export-unnamed\026export-using-directive\017extern-c-compat\022"
    "extern-initializer\005extra\023extra-qualification\nextra-semi\017extra"
    "-semi-stmt\014extra-tokens\010fallback\032final-dtor-non-final-class\024"
    "fixed-enum-extension\tflag-enum\031flexible-array-extensions\020float-c"
    "onversion\013float-equal\031float-overflow-conversion\025float-zero-con"
    "version\021for-loop-analysis\006format\021format-extra-args\030format-i"
    "nvalid-specifier\016format-non-iso\021format-nonliteral\017format-pedan"
    "tic\017format-security\025format-type-confusion\nformat-y2k\022format-z"
    "ero-length\010format=2\016fortify-source\023four-char-constants\022fram"
    "e-larger-than=%framework-include-private-from-public\036function-def-in"
    "-objc-container\025function-multiversion\015future-compat\ngcc-compat\023"
    "global-constructors\003gnu\026gnu-alignof-expression\024gnu-anonymous-s"
    "truct\033gnu-array-member-paren-init\015gnu-auto-type\022gnu-binary-lit"
    "eral\016gnu-case-range\023gnu-complex-integer gnu-compound-literal-init"
    "ializer\037gnu-conditional-omitted-operand\016gnu-designator\025gnu-emp"
    "ty-initializer\020gnu-empty-struct\036gnu-flexible-array-initializer\037"
    "gnu-flexible-array-union-member\024gnu-folding-constant\026gnu-imaginar"
    "y-constant\020gnu-include-next\035gnu-inline-cpp-without-extern\022gnu-"
    "label-as-value\023gnu-redeclared-enum\030gnu-statement-expression\025gn"
    "u-static-float-init$gnu-string-literal-operator-template\016gnu-union-c"
    "ast\"gnu-variable-sized-type-not-at-end\027gnu-zero-line-directive!gnu-"
    "zero-variadic-macro-arguments\014header-guard\016header-hygiene\010hip-"
    "only\025idiomatic-parentheses\022ignored-attributes\035ignored-optimiza"
    "tion-argument\030ignored-pragma-intrinsic\027ignored-pragma-optimize\017"
    "ignored-pragmas\022ignored-qualifiers\010implicit\032implicit-atomic-pr"
    "operties*implicit-conversion-floating-point-to-bool implicit-exception-"
    "spec-mismatch\024implicit-fallthrough!implicit-fallthrough-per-function"
    "\037implicit-fixed-point-conversion\031implicit-float-conversion\035imp"
    "licit-function-declaration\014implicit-int\027implicit-int-conversion\035"
    "implicit-int-float-conversion\024implicit-retain-self\033implicitly-uns"
    "igned-literal\006import&import-preprocessor-directive-pedantic\021inacc"
    "essible-base\032include-next-absolute-path\033include-next-outside-head"
    "er\033incompatible-exception-spec#incompatible-function-pointer-types\""
    "incompatible-library-redeclaration\026incompatible-ms-struct\032incompa"
    "tible-pointer-types.incompatible-pointer-types-discards-qualifiers\032i"
    "ncompatible-property-type\024incompatible-sysroot'incomplete-framework-"
    "module-declaration\031incomplete-implementation\021incomplete-module\035"
    "incomplete-setjmp-declaration\023incomplete-umbrella\026inconsistent-dl"
    "limport(inconsistent-missing-destructor-override\035inconsistent-missin"
    "g-override\016increment-bool\022infinite-recursion\tinit-self\025initia"
    "lizer-overrides\023injected-class-name\006inline\ninline-asm\021inline-"
    "new-delete\"instantiation-after-specialization\016int-conversion\017int"
    "-conversions\023int-in-bool-context\023int-to-pointer-cast\030int-to-vo"
    "id-pointer-cast\020integer-overflow\035invalid-command-line-argument\021"
    "invalid-constexpr\020invalid-iboutlet&invalid-initializer-from-system-h"
    "eader\035invalid-ios-deployment-target\020invalid-noreturn\020invalid-o"
    "ffsetof invalid-or-nonexistent-directory\036invalid-partial-specializat"
    "ion\013invalid-pch\020invalid-pp-token\027invalid-source-encoding\023in"
    "valid-token-paste\020jump-seh-finally\016keyword-compat\015keyword-macr"
    "o\026knr-promoted-parameter\030language-extension-token\023large-by-val"
    "ue-copy\006liblto\022literal-conversion\015literal-range\030local-type-"
    "template-args\027logical-not-parentheses\026logical-op-parentheses\tlon"
    "g-long\015loop-analysis\017macro-redefined\004main\020main-return-type\027"
    "malformed-warning-check\036many-braces-around-scalar-init\021max-unsign"
    "ed-zero\026memset-transposed-args\022memsize-comparison\021method-signa"
    "tures\tmicrosoft\022microsoft-anon-tag\016microsoft-cast\021microsoft-c"
    "harize\027microsoft-comment-paste\024microsoft-const-init\023microsoft-"
    "cpp-macro\"microsoft-default-arg-redefinition\031microsoft-drectve-sect"
    "ion\025microsoft-end-of-file microsoft-enum-forward-reference\024micros"
    "oft-enum-value\030microsoft-exception-spec\020microsoft-exists#microsof"
    "t-explicit-constructor-call\035microsoft-extra-qualification\024microso"
    "ft-fixed-enum\030microsoft-flexible-array\016microsoft-goto\033microsof"
    "t-inaccessible-base\021microsoft-include\033microsoft-mutable-reference"
    "\031microsoft-pure-definition\032microsoft-redeclare-static\020microsof"
    "t-sealed\022microsoft-template microsoft-union-member-reference\034micr"
    "osoft-unqualified-friend\024microsoft-using-decl\032microsoft-void-pseu"
    "do-dtor\tmisexpect\025mismatched-new-delete\032mismatched-parameter-typ"
    "es\027mismatched-return-types\017mismatched-tags\016missing-braces\021m"
    "issing-constinit\024missing-declarations\026missing-exception-spec\032m"
    "issing-field-initializers\030missing-format-attribute\024missing-includ"
    "e-dirs\032missing-method-return-type\020missing-noescape\020missing-nor"
    "eturn\030missing-prototype-for-cc\022missing-prototypes\025missing-sele"
    "ctor-name\017missing-sysroot\035missing-variable-declarations\014module"
    "-build\017module-conflict\033module-file-config-mismatch\025module-file"
    "-extension\015module-import\031module-import-in-extern-c\"modules-ambig"
    "uous-internal-linkage\037modules-import-nested-redundant\004most\004mov"
    "e\014msvc-include\016msvc-not-found\tmultichar\023multiple-move-vbase\t"
    "narrowing\021nested-anon-types\016nested-externs\020new-returns-null\013"
    "newline-eof\007noderef\015noexcept-type\007non-gcc\033non-literal-null-"
    "conversion'non-modular-include-in-framework-module\035non-modular-inclu"
    "de-in-module\017non-pod-varargs\020non-virtual-dtor\007nonnull\025nonpo"
    "rtable-cfstrings\030nonportable-include-path\037nonportable-system-incl"
    "ude-path!nonportable-vector-initialization\024nontrivial-memaccess\023n"
    "sconsumed-mismatch\022nsreturns-mismatch\017null-arithmetic\016null-cha"
    "racter\017null-conversion\020null-dereference\027null-pointer-arithmeti"
    "c\013nullability\030nullability-completeness\"nullability-completeness-"
    "on-arrays\024nullability-declspec\025nullability-extension#nullability-"
    "inferred-on-nested-type\036nullable-to-nonnull-conversion+objc-autosynt"
    "hesis-property-ivar-name-match\035objc-bool-constant-conversion\013objc"
    "-boxing\027objc-circular-container\016objc-cocoa-api\034objc-designated"
    "-initializers\023objc-flexible-array\037objc-forward-class-redefinition"
    "\024objc-interface-ivars\024objc-literal-compare\027objc-literal-conver"
    "sion\027objc-macro-redefinition\021objc-messaging-id\022objc-method-acc"
    "ess\037objc-missing-property-synthesis\030objc-missing-super-calls\032o"
    "bjc-multiple-method-names\"objc-noncopy-retain-block-property\032objc-n"
    "onunified-exceptions#objc-property-assign-on-object-type\034objc-proper"
    "ty-implementation\037objc-property-implicit-mismatch*objc-property-matc"
    "hes-cocoa-ownership-rule\032objc-property-no-attribute\027objc-property"
    "-synthesis#objc-protocol-method-implementation objc-protocol-property-s"
    "ynthesis\030objc-protocol-qualifiers\"objc-readonly-with-setter-propert"
    "y\026objc-redundant-api-use\032objc-redundant-literal-use\017objc-root-"
    "class\025objc-signed-char-bool/objc-signed-char-bool-implicit-float-con"
    "version-objc-signed-char-bool-implicit-int-conversion\023objc-string-co"
    "mpare\031objc-string-concatenation\034objc-unsafe-perform-selector\003o"
    "dr\016old-style-cast\024old-style-definition\027opencl-unsupported-rgba"
    "\016openmp-clauses\020openmp-loop-form\015openmp-target\016option-ignor"
    "ed!ordered-compare-function-pointers\027out-of-line-declaration\025out-"
    "of-scope-function\014over-aligned\010overflow\022overlength-strings\037"
    "overloaded-shift-op-parentheses\022overloaded-virtual\015override-init\017"
    "override-module\032overriding-method-mismatch\023overriding-t-option\006"
    "packed\006padded\013parentheses\024parentheses-equality\024partial-avai"
    "lability\004pass\015pass-analysis\013pass-failed\013pass-missed\015pch-"
    "date-time\010pedantic\026pedantic-core-features\020pessimizing-move\015"
    "pointer-arith\027pointer-bool-conversion\017pointer-compare\027pointer-"
    "integer-compare\014pointer-sign\023pointer-to-int-cast\025pointer-type-"
    "mismatch\031poison-system-directories potentially-evaluated-expression\026"
    "pragma-clang-attribute\032pragma-once-outside-header\013pragma-pack\036"
    "pragma-pack-suspicious-include#pragma-system-header-outside-header\007p"
    "ragmas&predefined-identifier-outside-function\016private-extern\016priv"
    "ate-header\016private-module\025profile-instr-missing\031profile-instr-"
    "out-of-date\030profile-instr-unprofiled\032property-access-dot-syntax\033"
    "property-attribute-mismatch\010protocol%protocol-property-synthesis-amb"
    "iguity\032qualified-void-return-type\"quoted-include-in-framework-heade"
    "r\023range-loop-analysis\032readonly-iboutlet-property\015receiver-expr"
    "\026receiver-forward-class\027redeclared-class-member\017redundant-decl"
    "s\016redundant-move\020redundant-parens\010register\026reinterpret-base"
    "-class\025remark-backend-plugin\007reorder\014reorder-ctor\021reorder-i"
    "nit-list\030requires-super-attribute\021reserved-id-macro\035reserved-u"
    "ser-defined-literal\031retained-language-linkage\024return-stack-addres"
    "s\017return-std-move\030return-std-move-in-c++11\013return-type\025retu"
    "rn-type-c-linkage\020sanitize-address\007section\010selector\026selecto"
    "r-type-mismatch\013self-assign\021self-assign-field\026self-assign-over"
    "loaded\tself-move\034semicolon-before-method-body\010sentinel\016sequen"
    "ce-point\026serialized-diagnostics\006shadow\nshadow-all\014shadow-fiel"
    "d\033shadow-field-in-constructor$shadow-field-in-constructor-modified\013"
    "shadow-ivar\027shadow-uncaptured-local\024shift-count-negative\024shift"
    "-count-overflow\024shift-negative-value\024shift-op-parentheses\016shif"
    "t-overflow\023shift-sign-overflow\020shorten-64-to-32\014sign-compare\017"
    "sign-conversion\nsign-promo\024signed-enum-bitfield\025signed-unsigned-"
    "wchar\025sizeof-array-argument\022sizeof-array-decay\020sizeof-array-di"
    "v\022sizeof-pointer-div\030sizeof-pointer-memaccess\020slash-u-filename"
    "\027sometimes-uninitialized\022source-uses-openmp\013spir-compat\017sta"
    "ck-exhausted\017stack-protector\021static-float-init\020static-in-inlin"
    "e$static-inline-explicit-instantiation\026static-local-in-inline\020sta"
    "tic-self-init\023stdlibcxx-not-found\017strict-aliasing\021strict-alias"
    "ing=0\021strict-aliasing=1\021strict-aliasing=2\017strict-overflow\021s"
    "trict-overflow=0\021strict-overflow=1\021strict-overflow=2\021strict-ov"
    "erflow=3\021strict-overflow=4\021strict-overflow=5\021strict-prototypes"
    "\025strict-selector-match\016string-compare\021string-conversion\020str"
    "ing-plus-char\017string-plus-int\024strlcpy-strlcat-size\014strncat-siz"
    "e\033super-class-method-mismatch\020suspicious-bzero\024suspicious-mema"
    "ccess\006switch\013switch-bool\016switch-default\013switch-enum%sync-fe"
    "tch-and-nand-semantics-changed\005synth\034tautological-bitwise-compare"
    "\024tautological-compare\035tautological-constant-compare&tautological-"
    "constant-in-range-compare*tautological-constant-out-of-range-compare\036"
    "tautological-objc-bool-compare\034tautological-overlap-compare\034tauto"
    "logical-pointer-compare\037tautological-type-limit-compare\036tautologi"
    "cal-undefined-compare'tautological-unsigned-enum-zero-compare\"tautolog"
    "ical-unsigned-zero-compare$tentative-definition-incomplete-type\015thre"
    "ad-safety\026thread-safety-analysis\030thread-safety-attributes\022thre"
    "ad-safety-beta\026thread-safety-negative\025thread-safety-precise\027th"
    "read-safety-reference\025thread-safety-verbose\ttrigraphs\013type-limit"
    "s\013type-safety\024typedef-redefinition\020typename-missing\031unable-"
    "to-open-stats-file\030unavailable-declarations\023undeclared-selector\005"
    "undef\031undefined-bool-conversion\027undefined-func-template\020undefi"
    "ned-inline\022undefined-internal\027undefined-internal-type\032undefine"
    "d-reinterpret-cast\026undefined-var-template\035underaligned-exception-"
    "object\026unevaluated-expression\026unguarded-availability\032unguarded"
    "-availability-new\007unicode\021unicode-homoglyph\022unicode-whitespace"
    "\022unicode-zero-width\015uninitialized\020unknown-argument\022unknown-"
    "attributes\027unknown-escape-sequence\017unknown-pragmas\022unknown-san"
    "itizers\026unknown-warning-option\032unnamed-type-template-args\035unne"
    "eded-internal-declaration\030unneeded-member-function\020unreachable-co"
    "de\033unreachable-code-aggressive\026unreachable-code-break\037unreacha"
    "ble-code-loop-increment\027unreachable-code-return\013unsequenced\017un"
    "supported-abs\036unsupported-availability-guard\016unsupported-cb#unsup"
    "ported-dll-base-class-template\022unsupported-friend\021unsupported-gpo"
    "pt\017unsupported-nan\026unsupported-target-opt\026unsupported-visibili"
    "ty\037unusable-partial-specialization\006unused\017unused-argument\034u"
    "nused-command-line-argument\021unused-comparison\025unused-const-variab"
    "le\032unused-exception-parameter\017unused-function\032unused-getter-re"
    "turn-value\014unused-label\025unused-lambda-capture\024unused-local-typ"
    "edef\025unused-local-typedefs\015unused-macros\026unused-member-functio"
    "n\020unused-parameter\024unused-private-field\024unused-property-ivar\015"
    "unused-result\017unused-template\014unused-value\017unused-variable\026"
    "unused-volatile-lvalue\026used-but-marked-unused\025user-defined-litera"
    "ls\025user-defined-warnings\007varargs\017variadic-macros\015vec-elem-s"
    "ize\021vector-conversion\022vector-conversions\014vexing-parse\nvisibil"
    "ity\003vla\015vla-extension\024void-ptr-dereference\025volatile-registe"
    "r-var\025weak-template-vtables\014weak-vtables\020writable-strings\015w"
    "rite-strings\017xor-used-as-pow\035zero-as-null-pointer-constant\021zer"
    "o-length-array"};

#endif // GET_DIAG_ARRAYS


#ifdef GET_DIAG_TABLE
  { /*  */                                                      0, /* Empty */     0, /* DiagSubGroup0 */ 1 },
  { /* #pragma-messages */                                      1, /* DiagArray1 */ 1, /* Empty */         0 },
  { /* #warnings */                                             18, /* DiagArray2 */ 3, /* Empty */         0 },
  { /* CFString-literal */                                      28, /* DiagArray3 */ 5, /* Empty */         0 },
  { /* CL4 */                                                   45, /* Empty */     0, /* DiagSubGroup4 */ 3 },
  { /* IndependentClass-attribute */                            49, /* DiagArray5 */ 7, /* Empty */         0 },
  { /* NSObject-attribute */                                    76, /* DiagArray6 */ 10, /* Empty */         0 },
  { /* abi */                                                   95, /* Empty */     0, /* Empty */         0 },
  { /* absolute-value */                                        99, /* DiagArray8 */ 12, /* Empty */         0 },
  { /* abstract-final-class */                                  114, /* DiagArray9 */ 17, /* Empty */         0 },
  { /* abstract-vbase-init */                                   135, /* DiagArray10 */ 19, /* Empty */         0 },
  { /* address */                                               155, /* Empty */     0, /* DiagSubGroup11 */ 6 },
  { /* address-of-packed-member */                              163, /* DiagArray12 */ 21, /* Empty */         0 },
  { /* address-of-temporary */                                  188, /* DiagArray13 */ 23, /* Empty */         0 },
  { /* aggregate-return */                                      209, /* Empty */     0, /* Empty */         0 },
  { /* all */                                                   226, /* Empty */     0, /* DiagSubGroup15 */ 10 },
  { /* alloca */                                                230, /* DiagArray16 */ 25, /* Empty */         0 },
  { /* alloca-with-align-alignof */                             237, /* DiagArray17 */ 27, /* Empty */         0 },
  { /* ambiguous-delete */                                      263, /* DiagArray18 */ 29, /* Empty */         0 },
  { /* ambiguous-ellipsis */                                    280, /* DiagArray19 */ 31, /* Empty */         0 },
  { /* ambiguous-macro */                                       299, /* DiagArray20 */ 33, /* Empty */         0 },
  { /* ambiguous-member-template */                             315, /* DiagArray21 */ 35, /* Empty */         0 },
  { /* ambiguous-reversed-operator */                           341, /* DiagArray22 */ 37, /* Empty */         0 },
  { /* analyzer-incompatible-plugin */                          369, /* DiagArray23 */ 39, /* Empty */         0 },
  { /* anonymous-pack-parens */                                 398, /* DiagArray24 */ 41, /* Empty */         0 },
  { /* arc */                                                   420, /* Empty */     0, /* DiagSubGroup25 */ 15 },
  { /* arc-bridge-casts-disallowed-in-nonarc */                 424, /* DiagArray26 */ 43, /* Empty */         0 },
  { /* arc-maybe-repeated-use-of-weak */                        462, /* DiagArray27 */ 45, /* Empty */         0 },
  { /* arc-non-pod-memaccess */                                 493, /* DiagArray28 */ 47, /* Empty */         0 },
  { /* arc-performSelector-leaks */                             515, /* DiagArray29 */ 49, /* Empty */         0 },
  { /* arc-repeated-use-of-weak */                              541, /* DiagArray30 */ 51, /* DiagSubGroup30 */ 19 },
  { /* arc-retain-cycles */                                     566, /* DiagArray31 */ 53, /* Empty */         0 },
  { /* arc-unsafe-retained-assign */                            584, /* DiagArray32 */ 55, /* Empty */         0 },
  { /* argument-outside-range */                                611, /* DiagArray33 */ 59, /* Empty */         0 },
  { /* array-bounds */                                          634, /* DiagArray34 */ 61, /* Empty */         0 },
  { /* array-bounds-pointer-arithmetic */                       647, /* DiagArray35 */ 66, /* Empty */         0 },
  { /* asm */                                                   679, /* Empty */     0, /* DiagSubGroup36 */ 21 },
  { /* asm-ignored-qualifier */                                 683, /* DiagArray37 */ 69, /* Empty */         0 },
  { /* asm-operand-widths */                                    705, /* DiagArray38 */ 72, /* Empty */         0 },
  { /* assign-enum */                                           724, /* DiagArray39 */ 74, /* Empty */         0 },
  { /* assume */                                                736, /* DiagArray40 */ 76, /* Empty */         0 },
  { /* at-protocol */                                           743, /* Empty */     0, /* Empty */         0 },
  { /* atimport-in-framework-header */                          755, /* DiagArray42 */ 78, /* Empty */         0 },
  { /* atomic-alignment */                                      784, /* DiagArray43 */ 80, /* Empty */         0 },
  { /* atomic-implicit-seq-cst */                               801, /* DiagArray44 */ 82, /* Empty */         0 },
  { /* atomic-memory-ordering */                                825, /* DiagArray45 */ 84, /* Empty */         0 },
  { /* atomic-properties */                                     848, /* Empty */     0, /* DiagSubGroup46 */ 24 },
  { /* atomic-property-with-user-defined-accessor */            866, /* DiagArray47 */ 86, /* Empty */         0 },
  { /* attribute-packed-for-bitfield */                         909, /* DiagArray48 */ 88, /* Empty */         0 },
  { /* attributes */                                            939, /* Empty */     0, /* DiagSubGroup49 */ 27 },
  { /* auto-disable-vptr-sanitizer */                           950, /* DiagArray50 */ 90, /* Empty */         0 },
  { /* auto-import */                                           978, /* DiagArray51 */ 92, /* Empty */         0 },
  { /* auto-storage-class */                                    990, /* DiagArray52 */ 94, /* Empty */         0 },
  { /* auto-var-id */                                           1009, /* DiagArray53 */ 96, /* Empty */         0 },
  { /* availability */                                          1021, /* DiagArray54 */ 98, /* Empty */         0 },
  { /* avr-rtlib-linking-quirks */                              1034, /* DiagArray55 */ 108, /* Empty */         0 },
  { /* backend-plugin */                                        1059, /* DiagArray56 */ 114, /* Empty */         0 },
  { /* backslash-newline-escape */                              1074, /* DiagArray57 */ 116, /* Empty */         0 },
  { /* bad-function-cast */                                     1099, /* DiagArray58 */ 118, /* Empty */         0 },
  { /* binary-literal */                                        1117, /* Empty */     0, /* DiagSubGroup59 */ 30 },
  { /* bind-to-temporary-copy */                                1132, /* DiagArray60 */ 120, /* DiagSubGroup60 */ 34 },
  { /* binding-in-condition */                                  1155, /* DiagArray61 */ 123, /* Empty */         0 },
  { /* bitfield-constant-conversion */                          1176, /* DiagArray62 */ 125, /* Empty */         0 },
  { /* bitfield-enum-conversion */                              1205, /* DiagArray63 */ 127, /* Empty */         0 },
  { /* bitfield-width */                                        1230, /* DiagArray64 */ 131, /* Empty */         0 },
  { /* bitwise-conditional-parentheses */                       1245, /* DiagArray65 */ 134, /* Empty */         0 },
  { /* bitwise-op-parentheses */                                1277, /* DiagArray66 */ 136, /* Empty */         0 },
  { /* block-capture-autoreleasing */                           1300, /* DiagArray67 */ 138, /* Empty */         0 },
  { /* bool-conversion */                                       1328, /* DiagArray68 */ 140, /* DiagSubGroup68 */ 36 },
  { /* bool-conversions */                                      1344, /* Empty */     0, /* DiagSubGroup69 */ 39 },
  { /* bool-operation */                                        1361, /* DiagArray70 */ 142, /* Empty */         0 },
  { /* braced-scalar-init */                                    1376, /* DiagArray71 */ 144, /* Empty */         0 },
  { /* bridge-cast */                                           1395, /* DiagArray72 */ 146, /* Empty */         0 },
  { /* builtin-assume-aligned-alignment */                      1407, /* DiagArray73 */ 149, /* Empty */         0 },
  { /* builtin-macro-redefined */                               1440, /* DiagArray74 */ 151, /* Empty */         0 },
  { /* builtin-memcpy-chk-size */                               1464, /* DiagArray75 */ 154, /* Empty */         0 },
  { /* builtin-requires-header */                               1488, /* DiagArray76 */ 156, /* Empty */         0 },
  { /* c++-compat */                                            1512, /* DiagArray77 */ 158, /* Empty */         0 },
  { /* c++0x-compat */                                          1523, /* Empty */     0, /* DiagSubGroup78 */ 41 },
  { /* c++0x-extensions */                                      1536, /* Empty */     0, /* DiagSubGroup79 */ 43 },
  { /* c++0x-narrowing */                                       1553, /* Empty */     0, /* DiagSubGroup80 */ 45 },
  { /* c++11-compat */                                          1569, /* DiagArray81 */ 160, /* DiagSubGroup81 */ 47 },
  { /* c++11-compat-deprecated-writable-strings */              1582, /* DiagArray82 */ 171, /* Empty */         0 },
  { /* c++11-compat-pedantic */                                 1623, /* Empty */     0, /* DiagSubGroup83 */ 54 },
  { /* c++11-compat-reserved-user-defined-literal */            1645, /* DiagArray84 */ 173, /* Empty */         0 },
  { /* c++11-extensions */                                      1688, /* DiagArray85 */ 175, /* DiagSubGroup85 */ 59 },
  { /* c++11-extra-semi */                                      1705, /* DiagArray86 */ 201, /* Empty */         0 },
  { /* c++11-inline-namespace */                                1722, /* DiagArray87 */ 203, /* Empty */         0 },
  { /* c++11-long-long */                                       1745, /* DiagArray88 */ 205, /* Empty */         0 },
  { /* c++11-narrowing */                                       1761, /* DiagArray89 */ 207, /* Empty */         0 },
  { /* c++14-binary-literal */                                  1777, /* DiagArray90 */ 215, /* Empty */         0 },
  { /* c++14-compat */                                          1798, /* Empty */     0, /* DiagSubGroup91 */ 63 },
  { /* c++14-compat-pedantic */                                 1811, /* Empty */     0, /* DiagSubGroup92 */ 66 },
  { /* c++14-extensions */                                      1833, /* DiagArray93 */ 217, /* DiagSubGroup93 */ 70 },
  { /* c++17-compat */                                          1850, /* Empty */     0, /* DiagSubGroup94 */ 72 },
  { /* c++17-compat-mangling */                                 1863, /* DiagArray95 */ 226, /* Empty */         0 },
  { /* c++17-compat-pedantic */                                 1885, /* Empty */     0, /* DiagSubGroup96 */ 77 },
  { /* c++17-extensions */                                      1907, /* DiagArray97 */ 228, /* Empty */         0 },
  { /* c++1y-extensions */                                      1924, /* Empty */     0, /* DiagSubGroup98 */ 80 },
  { /* c++1z-compat */                                          1941, /* Empty */     0, /* DiagSubGroup99 */ 82 },
  { /* c++1z-compat-mangling */                                 1954, /* Empty */     0, /* DiagSubGroup100 */ 84 },
  { /* c++1z-extensions */                                      1976, /* Empty */     0, /* DiagSubGroup101 */ 86 },
  { /* c++2a-compat */                                          1993, /* DiagArray102 */ 247, /* Empty */         0 },
  { /* c++2a-compat-pedantic */                                 2006, /* Empty */     0, /* DiagSubGroup103 */ 88 },
  { /* c++2a-designator */                                      2028, /* DiagArray104 */ 255, /* Empty */         0 },
  { /* c++2a-extensions */                                      2045, /* DiagArray105 */ 257, /* DiagSubGroup105 */ 90 },
  { /* c++98-c++11-c++14-c++17-compat */                        2062, /* DiagArray106 */ 274, /* Empty */         0 },
  { /* c++98-c++11-c++14-c++17-compat-pedantic */               2093, /* DiagArray107 */ 294, /* DiagSubGroup107 */ 92 },
  { /* c++98-c++11-c++14-compat */                              2133, /* DiagArray108 */ 297, /* Empty */         0 },
  { /* c++98-c++11-c++14-compat-pedantic */                     2158, /* DiagArray109 */ 315, /* DiagSubGroup109 */ 94 },
  { /* c++98-c++11-compat */                                    2192, /* DiagArray110 */ 318, /* Empty */         0 },
  { /* c++98-c++11-compat-binary-literal */                     2211, /* DiagArray111 */ 330, /* Empty */         0 },
  { /* c++98-c++11-compat-pedantic */                           2245, /* Empty */     0, /* DiagSubGroup112 */ 96 },
  { /* c++98-compat */                                          2273, /* DiagArray113 */ 332, /* DiagSubGroup113 */ 99 },
  { /* c++98-compat-bind-to-temporary-copy */                   2286, /* DiagArray114 */ 392, /* Empty */         0 },
  { /* c++98-compat-extra-semi */                               2322, /* DiagArray115 */ 394, /* Empty */         0 },
  { /* c++98-compat-local-type-template-args */                 2346, /* DiagArray116 */ 396, /* Empty */         0 },
  { /* c++98-compat-pedantic */                                 2384, /* DiagArray117 */ 398, /* DiagSubGroup117 */ 105 },
  { /* c++98-compat-unnamed-type-template-args */               2406, /* DiagArray118 */ 408, /* Empty */         0 },
  { /* c11-extensions */                                        2446, /* DiagArray119 */ 410, /* Empty */         0 },
  { /* c99-compat */                                            2461, /* DiagArray120 */ 414, /* Empty */         0 },
  { /* c99-designator */                                        2472, /* DiagArray121 */ 418, /* DiagSubGroup121 */ 112 },
  { /* c99-extensions */                                        2487, /* DiagArray122 */ 423, /* DiagSubGroup122 */ 114 },
  { /* call-to-pure-virtual-from-ctor-dtor */                   2502, /* DiagArray123 */ 434, /* Empty */         0 },
  { /* cast-align */                                            2538, /* DiagArray124 */ 436, /* Empty */         0 },
  { /* cast-calling-convention */                               2549, /* DiagArray125 */ 438, /* Empty */         0 },
  { /* cast-of-sel-type */                                      2573, /* DiagArray126 */ 440, /* Empty */         0 },
  { /* cast-qual */                                             2590, /* DiagArray127 */ 442, /* Empty */         0 },
  { /* cast-qual-unrelated */                                   2600, /* DiagArray128 */ 445, /* Empty */         0 },
  { /* char-align */                                            2620, /* Empty */     0, /* Empty */         0 },
  { /* char-subscripts */                                       2631, /* DiagArray130 */ 447, /* Empty */         0 },
  { /* clang-cl-pch */                                          2647, /* DiagArray131 */ 450, /* Empty */         0 },
  { /* class-varargs */                                         2660, /* DiagArray132 */ 455, /* DiagSubGroup132 */ 116 },
  { /* comma */                                                 2674, /* DiagArray133 */ 457, /* Empty */         0 },
  { /* comment */                                               2680, /* DiagArray134 */ 459, /* Empty */         0 },
  { /* comments */                                              2688, /* Empty */     0, /* DiagSubGroup135 */ 118 },
  { /* compare-distinct-pointer-types */                        2697, /* DiagArray136 */ 464, /* Empty */         0 },
  { /* complex-component-init */                                2728, /* DiagArray137 */ 466, /* Empty */         0 },
  { /* concepts-ts-compat */                                    2751, /* DiagArray138 */ 468, /* Empty */         0 },
  { /* conditional-type-mismatch */                             2770, /* DiagArray139 */ 470, /* Empty */         0 },
  { /* conditional-uninitialized */                             2796, /* DiagArray140 */ 472, /* Empty */         0 },
  { /* config-macros */                                         2822, /* DiagArray141 */ 474, /* Empty */         0 },
  { /* constant-conversion */                                   2836, /* DiagArray142 */ 476, /* DiagSubGroup142 */ 120 },
  { /* constant-logical-operand */                              2856, /* DiagArray143 */ 478, /* Empty */         0 },
  { /* constexpr-not-const */                                   2881, /* DiagArray144 */ 480, /* Empty */         0 },
  { /* consumed */                                              2901, /* DiagArray145 */ 482, /* Empty */         0 },
  { /* conversion */                                            2910, /* DiagArray146 */ 491, /* DiagSubGroup146 */ 123 },
  { /* conversion-null */                                       2921, /* Empty */     0, /* DiagSubGroup147 */ 139 },
  { /* coroutine */                                             2937, /* Empty */     0, /* DiagSubGroup148 */ 141 },
  { /* coroutine-missing-unhandled-exception */                 2947, /* DiagArray149 */ 497, /* Empty */         0 },
  { /* covered-switch-default */                                2985, /* DiagArray150 */ 499, /* Empty */         0 },
  { /* cpp */                                                   3008, /* Empty */     0, /* DiagSubGroup151 */ 143 },
  { /* cstring-format-directive */                              3012, /* DiagArray152 */ 501, /* Empty */         0 },
  { /* ctad-maybe-unsupported */                                3037, /* DiagArray153 */ 503, /* Empty */         0 },
  { /* ctor-dtor-privacy */                                     3060, /* Empty */     0, /* Empty */         0 },
  { /* ctu */                                                   3078, /* DiagArray155 */ 505, /* Empty */         0 },
  { /* cuda-compat */                                           3082, /* DiagArray156 */ 507, /* Empty */         0 },
  { /* custom-atomic-properties */                              3094, /* DiagArray157 */ 513, /* Empty */         0 },
  { /* dangling */                                              3119, /* DiagArray158 */ 515, /* DiagSubGroup158 */ 145 },
  { /* dangling-else */                                         3128, /* DiagArray159 */ 518, /* Empty */         0 },
  { /* dangling-field */                                        3142, /* DiagArray160 */ 520, /* Empty */         0 },
  { /* dangling-gsl */                                          3157, /* DiagArray161 */ 525, /* Empty */         0 },
  { /* dangling-initializer-list */                             3170, /* DiagArray162 */ 528, /* Empty */         0 },
  { /* darwin-sdk-settings */                                   3196, /* DiagArray163 */ 530, /* Empty */         0 },
  { /* date-time */                                             3216, /* DiagArray164 */ 532, /* Empty */         0 },
  { /* dealloc-in-category */                                   3226, /* DiagArray165 */ 534, /* Empty */         0 },
  { /* debug-compression-unavailable */                         3246, /* DiagArray166 */ 536, /* Empty */         0 },
  { /* declaration-after-statement */                           3276, /* DiagArray167 */ 538, /* Empty */         0 },
  { /* defaulted-comparison */                                  3304, /* DiagArray168 */ 540, /* Empty */         0 },
  { /* defaulted-function-deleted */                            3325, /* DiagArray169 */ 544, /* Empty */         0 },
  { /* delegating-ctor-cycles */                                3352, /* DiagArray170 */ 546, /* Empty */         0 },
  { /* delete-abstract-non-virtual-dtor */                      3375, /* DiagArray171 */ 548, /* Empty */         0 },
  { /* delete-incomplete */                                     3408, /* DiagArray172 */ 550, /* Empty */         0 },
  { /* delete-non-abstract-non-virtual-dtor */                  3426, /* DiagArray173 */ 553, /* Empty */         0 },
  { /* delete-non-virtual-dtor */                               3463, /* Empty */     0, /* DiagSubGroup174 */ 150 },
  { /* deprecated */                                            3487, /* DiagArray175 */ 555, /* DiagSubGroup175 */ 153 },
  { /* deprecated-attributes */                                 3498, /* DiagArray176 */ 564, /* Empty */         0 },
  { /* deprecated-comma-subscript */                            3520, /* DiagArray177 */ 566, /* Empty */         0 },
  { /* deprecated-declarations */                               3547, /* DiagArray178 */ 568, /* Empty */         0 },
  { /* deprecated-dynamic-exception-spec */                     3571, /* DiagArray179 */ 575, /* Empty */         0 },
  { /* deprecated-implementations */                            3605, /* DiagArray180 */ 577, /* Empty */         0 },
  { /* deprecated-increment-bool */                             3632, /* DiagArray181 */ 580, /* Empty */         0 },
  { /* deprecated-objc-isa-usage */                             3658, /* DiagArray182 */ 582, /* Empty */         0 },
  { /* deprecated-objc-pointer-introspection */                 3684, /* DiagArray183 */ 585, /* DiagSubGroup183 */ 163 },
  { /* deprecated-objc-pointer-introspection-performSelector */ 3722, /* DiagArray184 */ 587, /* Empty */         0 },
  { /* deprecated-register */                                   3776, /* DiagArray185 */ 589, /* Empty */         0 },
  { /* deprecated-this-capture */                               3796, /* DiagArray186 */ 591, /* Empty */         0 },
  { /* deprecated-volatile */                                   3820, /* DiagArray187 */ 593, /* Empty */         0 },
  { /* deprecated-writable-strings */                           3840, /* Empty */     0, /* DiagSubGroup188 */ 165 },
  { /* direct-ivar-access */                                    3868, /* DiagArray189 */ 600, /* Empty */         0 },
  { /* disabled-macro-expansion */                              3887, /* DiagArray190 */ 602, /* Empty */         0 },
  { /* disabled-optimization */                                 3912, /* Empty */     0, /* Empty */         0 },
  { /* discard-qual */                                          3934, /* Empty */     0, /* Empty */         0 },
  { /* distributed-object-modifiers */                          3947, /* DiagArray193 */ 604, /* Empty */         0 },
  { /* div-by-zero */                                           3976, /* Empty */     0, /* DiagSubGroup194 */ 167 },
  { /* division-by-zero */                                      3988, /* DiagArray195 */ 607, /* Empty */         0 },
  { /* dll-attribute-on-redeclaration */                        4005, /* DiagArray196 */ 609, /* Empty */         0 },
  { /* dllexport-explicit-instantiation-decl */                 4036, /* DiagArray197 */ 611, /* Empty */         0 },
  { /* dllimport-static-field-def */                            4074, /* DiagArray198 */ 613, /* Empty */         0 },
  { /* documentation */                                         4101, /* DiagArray199 */ 615, /* DiagSubGroup199 */ 169 },
  { /* documentation-deprecated-sync */                         4115, /* DiagArray200 */ 635, /* Empty */         0 },
  { /* documentation-html */                                    4145, /* DiagArray201 */ 637, /* Empty */         0 },
  { /* documentation-pedantic */                                4164, /* DiagArray202 */ 642, /* DiagSubGroup202 */ 172 },
  { /* documentation-unknown-command */                         4187, /* DiagArray203 */ 644, /* Empty */         0 },
  { /* dollar-in-identifier-extension */                        4217, /* DiagArray204 */ 647, /* Empty */         0 },
  { /* double-promotion */                                      4248, /* DiagArray205 */ 649, /* Empty */         0 },
  { /* duplicate-decl-specifier */                              4265, /* DiagArray206 */ 651, /* Empty */         0 },
  { /* duplicate-enum */                                        4290, /* DiagArray207 */ 656, /* Empty */         0 },
  { /* duplicate-method-arg */                                  4305, /* DiagArray208 */ 658, /* Empty */         0 },
  { /* duplicate-method-match */                                4326, /* DiagArray209 */ 660, /* Empty */         0 },
  { /* duplicate-protocol */                                    4349, /* DiagArray210 */ 662, /* Empty */         0 },
  { /* dynamic-class-memaccess */                               4368, /* DiagArray211 */ 664, /* Empty */         0 },
  { /* dynamic-exception-spec */                                4392, /* DiagArray212 */ 666, /* DiagSubGroup212 */ 174 },
  { /* effc++ */                                                4415, /* Empty */     0, /* DiagSubGroup213 */ 176 },
  { /* embedded-directive */                                    4422, /* DiagArray214 */ 668, /* Empty */         0 },
  { /* empty-body */                                            4441, /* DiagArray215 */ 670, /* Empty */         0 },
  { /* empty-decomposition */                                   4452, /* DiagArray216 */ 676, /* Empty */         0 },
  { /* empty-init-stmt */                                       4472, /* DiagArray217 */ 678, /* Empty */         0 },
  { /* empty-translation-unit */                                4488, /* DiagArray218 */ 680, /* Empty */         0 },
  { /* encode-type */                                           4511, /* DiagArray219 */ 682, /* Empty */         0 },
  { /* endif-labels */                                          4523, /* Empty */     0, /* DiagSubGroup220 */ 178 },
  { /* enum-compare */                                          4536, /* DiagArray221 */ 684, /* DiagSubGroup221 */ 180 },
  { /* enum-compare-conditional */                              4549, /* DiagArray222 */ 686, /* Empty */         0 },
  { /* enum-compare-switch */                                   4574, /* DiagArray223 */ 688, /* Empty */         0 },
  { /* enum-conversion */                                       4594, /* DiagArray224 */ 690, /* Empty */         0 },
  { /* enum-too-large */                                        4610, /* DiagArray225 */ 692, /* Empty */         0 },
  { /* exceptions */                                            4625, /* DiagArray226 */ 695, /* Empty */         0 },
  { /* exit-time-destructors */                                 4636, /* DiagArray227 */ 699, /* Empty */         0 },
  { /* expansion-to-defined */                                  4658, /* DiagArray228 */ 701, /* Empty */         0 },
  { /* experimental-isel */                                     4679, /* DiagArray229 */ 704, /* Empty */         0 },
  { /* explicit-initialize-call */                              4697, /* DiagArray230 */ 707, /* Empty */         0 },
  { /* explicit-ownership-type */                               4722, /* DiagArray231 */ 710, /* Empty */         0 },
  { /* export-unnamed */                                        4746, /* DiagArray232 */ 712, /* Empty */         0 },
  { /* export-using-directive */                                4761, /* DiagArray233 */ 715, /* Empty */         0 },
  { /* extern-c-compat */                                       4784, /* DiagArray234 */ 717, /* Empty */         0 },
  { /* extern-initializer */                                    4800, /* DiagArray235 */ 719, /* Empty */         0 },
  { /* extra */                                                 4819, /* DiagArray236 */ 721, /* DiagSubGroup236 */ 182 },
  { /* extra-qualification */                                   4825, /* DiagArray237 */ 723, /* Empty */         0 },
  { /* extra-semi */                                            4845, /* DiagArray238 */ 725, /* DiagSubGroup238 */ 192 },
  { /* extra-semi-stmt */                                       4856, /* DiagArray239 */ 728, /* DiagSubGroup239 */ 195 },
  { /* extra-tokens */                                          4872, /* DiagArray240 */ 730, /* Empty */         0 },
  { /* fallback */                                              4885, /* DiagArray241 */ 733, /* Empty */         0 },
  { /* final-dtor-non-final-class */                            4894, /* DiagArray242 */ 735, /* Empty */         0 },
  { /* fixed-enum-extension */                                  4921, /* DiagArray243 */ 737, /* Empty */         0 },
  { /* flag-enum */                                             4942, /* DiagArray244 */ 739, /* Empty */         0 },
  { /* flexible-array-extensions */                             4952, /* DiagArray245 */ 741, /* Empty */         0 },
  { /* float-conversion */                                      4978, /* DiagArray246 */ 744, /* DiagSubGroup246 */ 197 },
  { /* float-equal */                                           4995, /* DiagArray247 */ 746, /* Empty */         0 },
  { /* float-overflow-conversion */                             5007, /* DiagArray248 */ 748, /* Empty */         0 },
  { /* float-zero-conversion */                                 5033, /* DiagArray249 */ 751, /* Empty */         0 },
  { /* for-loop-analysis */                                     5055, /* DiagArray250 */ 753, /* Empty */         0 },
  { /* format */                                                5073, /* DiagArray251 */ 756, /* DiagSubGroup251 */ 200 },
  { /* format-extra-args */                                     5080, /* DiagArray252 */ 783, /* Empty */         0 },
  { /* format-invalid-specifier */                              5098, /* DiagArray253 */ 785, /* Empty */         0 },
  { /* format-non-iso */                                        5123, /* DiagArray254 */ 787, /* Empty */         0 },
  { /* format-nonliteral */                                     5138, /* DiagArray255 */ 791, /* Empty */         0 },
  { /* format-pedantic */                                       5156, /* DiagArray256 */ 793, /* Empty */         0 },
  { /* format-security */                                       5172, /* DiagArray257 */ 796, /* Empty */         0 },
  { /* format-type-confusion */                                 5188, /* DiagArray258 */ 798, /* Empty */         0 },
  { /* format-y2k */                                            5210, /* Empty */     0, /* Empty */         0 },
  { /* format-zero-length */                                    5221, /* DiagArray260 */ 800, /* Empty */         0 },
  { /* format=2 */                                              5240, /* Empty */     0, /* DiagSubGroup261 */ 207 },
  { /* fortify-source */                                        5249, /* DiagArray262 */ 802, /* Empty */         0 },
  { /* four-char-constants */                                   5264, /* DiagArray263 */ 805, /* Empty */         0 },
  { /* frame-larger-than= */                                    5284, /* DiagArray264 */ 807, /* Empty */         0 },
  { /* framework-include-private-from-public */                 5303, /* DiagArray265 */ 810, /* Empty */         0 },
  { /* function-def-in-objc-container */                        5341, /* DiagArray266 */ 812, /* Empty */         0 },
  { /* function-multiversion */                                 5372, /* DiagArray267 */ 814, /* Empty */         0 },
  { /* future-compat */                                         5394, /* Empty */     0, /* Empty */         0 },
  { /* gcc-compat */                                            5408, /* DiagArray269 */ 817, /* Empty */         0 },
  { /* global-constructors */                                   5419, /* DiagArray270 */ 828, /* Empty */         0 },
  { /* gnu */                                                   5439, /* Empty */     0, /* DiagSubGroup271 */ 211 },
  { /* gnu-alignof-expression */                                5443, /* DiagArray272 */ 831, /* Empty */         0 },
  { /* gnu-anonymous-struct */                                  5466, /* DiagArray273 */ 833, /* Empty */         0 },
  { /* gnu-array-member-paren-init */                           5487, /* DiagArray274 */ 835, /* Empty */         0 },
  { /* gnu-auto-type */                                         5515, /* DiagArray275 */ 837, /* Empty */         0 },
  { /* gnu-binary-literal */                                    5529, /* DiagArray276 */ 839, /* Empty */         0 },
  { /* gnu-case-range */                                        5548, /* DiagArray277 */ 841, /* Empty */         0 },
  { /* gnu-complex-integer */                                   5563, /* DiagArray278 */ 843, /* Empty */         0 },
  { /* gnu-compound-literal-initializer */                      5583, /* DiagArray279 */ 845, /* Empty */         0 },
  { /* gnu-conditional-omitted-operand */                       5616, /* DiagArray280 */ 847, /* Empty */         0 },
  { /* gnu-designator */                                        5648, /* DiagArray281 */ 849, /* Empty */         0 },
  { /* gnu-empty-initializer */                                 5663, /* DiagArray282 */ 853, /* Empty */         0 },
  { /* gnu-empty-struct */                                      5685, /* DiagArray283 */ 855, /* Empty */         0 },
  { /* gnu-flexible-array-initializer */                        5702, /* DiagArray284 */ 859, /* Empty */         0 },
  { /* gnu-flexible-array-union-member */                       5733, /* DiagArray285 */ 861, /* Empty */         0 },
  { /* gnu-folding-constant */                                  5765, /* DiagArray286 */ 863, /* Empty */         0 },
  { /* gnu-imaginary-constant */                                5786, /* DiagArray287 */ 867, /* Empty */         0 },
  { /* gnu-include-next */                                      5809, /* DiagArray288 */ 869, /* Empty */         0 },
  { /* gnu-inline-cpp-without-extern */                         5826, /* DiagArray289 */ 871, /* Empty */         0 },
  { /* gnu-label-as-value */                                    5856, /* DiagArray290 */ 873, /* Empty */         0 },
  { /* gnu-redeclared-enum */                                   5875, /* DiagArray291 */ 876, /* Empty */         0 },
  { /* gnu-statement-expression */                              5895, /* DiagArray292 */ 878, /* Empty */         0 },
  { /* gnu-static-float-init */                                 5920, /* DiagArray293 */ 880, /* Empty */         0 },
  { /* gnu-string-literal-operator-template */                  5942, /* DiagArray294 */ 882, /* Empty */         0 },
  { /* gnu-union-cast */                                        5979, /* DiagArray295 */ 884, /* Empty */         0 },
  { /* gnu-variable-sized-type-not-at-end */                    5994, /* DiagArray296 */ 886, /* Empty */         0 },
  { /* gnu-zero-line-directive */                               6029, /* DiagArray297 */ 888, /* Empty */         0 },
  { /* gnu-zero-variadic-macro-arguments */                     6053, /* DiagArray298 */ 890, /* Empty */         0 },
  { /* header-guard */                                          6087, /* DiagArray299 */ 893, /* Empty */         0 },
  { /* header-hygiene */                                        6100, /* DiagArray300 */ 895, /* Empty */         0 },
  { /* hip-only */                                              6115, /* DiagArray301 */ 897, /* Empty */         0 },
  { /* idiomatic-parentheses */                                 6124, /* DiagArray302 */ 899, /* Empty */         0 },
  { /* ignored-attributes */                                    6146, /* DiagArray303 */ 901, /* Empty */         0 },
  { /* ignored-optimization-argument */                         6165, /* DiagArray304 */ 965, /* Empty */         0 },
  { /* ignored-pragma-intrinsic */                              6195, /* DiagArray305 */ 968, /* Empty */         0 },
  { /* ignored-pragma-optimize */                               6220, /* DiagArray306 */ 970, /* Empty */         0 },
  { /* ignored-pragmas */                                       6244, /* DiagArray307 */ 972, /* DiagSubGroup307 */ 240 },
  { /* ignored-qualifiers */                                    6260, /* DiagArray308 */ 1016, /* Empty */         0 },
  { /* implicit */                                              6279, /* Empty */     0, /* DiagSubGroup309 */ 243 },
  { /* implicit-atomic-properties */                            6288, /* DiagArray310 */ 1022, /* Empty */         0 },
  { /* implicit-conversion-floating-point-to-bool */            6315, /* DiagArray311 */ 1025, /* Empty */         0 },
  { /* implicit-exception-spec-mismatch */                      6358, /* DiagArray312 */ 1027, /* Empty */         0 },
  { /* implicit-fallthrough */                                  6391, /* DiagArray313 */ 1029, /* DiagSubGroup313 */ 246 },
  { /* implicit-fallthrough-per-function */                     6412, /* DiagArray314 */ 1032, /* Empty */         0 },
  { /* implicit-fixed-point-conversion */                       6446, /* DiagArray315 */ 1034, /* Empty */         0 },
  { /* implicit-float-conversion */                             6478, /* DiagArray316 */ 1036, /* DiagSubGroup316 */ 248 },
  { /* implicit-function-declaration */                         6504, /* DiagArray317 */ 1039, /* Empty */         0 },
  { /* implicit-int */                                          6534, /* DiagArray318 */ 1044, /* Empty */         0 },
  { /* implicit-int-conversion */                               6547, /* DiagArray319 */ 1046, /* DiagSubGroup319 */ 251 },
  { /* implicit-int-float-conversion */                         6571, /* DiagArray320 */ 1049, /* Empty */         0 },
  { /* implicit-retain-self */                                  6601, /* DiagArray321 */ 1052, /* Empty */         0 },
  { /* implicitly-unsigned-literal */                           6622, /* DiagArray322 */ 1054, /* Empty */         0 },
  { /* import */                                                6650, /* Empty */     0, /* Empty */         0 },
  { /* import-preprocessor-directive-pedantic */                6657, /* DiagArray324 */ 1056, /* Empty */         0 },
  { /* inaccessible-base */                                     6696, /* DiagArray325 */ 1058, /* Empty */         0 },
  { /* include-next-absolute-path */                            6714, /* DiagArray326 */ 1060, /* Empty */         0 },
  { /* include-next-outside-header */                           6741, /* DiagArray327 */ 1062, /* Empty */         0 },
  { /* incompatible-exception-spec */                           6769, /* DiagArray328 */ 1064, /* Empty */         0 },
  { /* incompatible-function-pointer-types */                   6797, /* DiagArray329 */ 1067, /* Empty */         0 },
  { /* incompatible-library-redeclaration */                    6833, /* DiagArray330 */ 1069, /* Empty */         0 },
  { /* incompatible-ms-struct */                                6868, /* DiagArray331 */ 1071, /* Empty */         0 },
  { /* incompatible-pointer-types */                            6891, /* DiagArray332 */ 1074, /* DiagSubGroup332 */ 253 },
  { /* incompatible-pointer-types-discards-qualifiers */        6918, /* DiagArray333 */ 1076, /* Empty */         0 },
  { /* incompatible-property-type */                            6965, /* DiagArray334 */ 1079, /* Empty */         0 },
  { /* incompatible-sysroot */                                  6992, /* DiagArray335 */ 1081, /* Empty */         0 },
  { /* incomplete-framework-module-declaration */               7013, /* DiagArray336 */ 1083, /* Empty */         0 },
  { /* incomplete-implementation */                             7053, /* DiagArray337 */ 1085, /* Empty */         0 },
  { /* incomplete-module */                                     7079, /* Empty */     0, /* DiagSubGroup338 */ 256 },
  { /* incomplete-setjmp-declaration */                         7097, /* DiagArray339 */ 1087, /* Empty */         0 },
  { /* incomplete-umbrella */                                   7127, /* DiagArray340 */ 1089, /* Empty */         0 },
  { /* inconsistent-dllimport */                                7147, /* DiagArray341 */ 1093, /* Empty */         0 },
  { /* inconsistent-missing-destructor-override */              7170, /* DiagArray342 */ 1096, /* Empty */         0 },
  { /* inconsistent-missing-override */                         7211, /* DiagArray343 */ 1098, /* Empty */         0 },
  { /* increment-bool */                                        7241, /* DiagArray344 */ 1100, /* DiagSubGroup344 */ 259 },
  { /* infinite-recursion */                                    7256, /* DiagArray345 */ 1102, /* Empty */         0 },
  { /* init-self */                                             7275, /* Empty */     0, /* Empty */         0 },
  { /* initializer-overrides */                                 7285, /* DiagArray347 */ 1104, /* Empty */         0 },
  { /* injected-class-name */                                   7307, /* DiagArray348 */ 1107, /* Empty */         0 },
  { /* inline */                                                7327, /* Empty */     0, /* Empty */         0 },
  { /* inline-asm */                                            7334, /* DiagArray350 */ 1109, /* Empty */         0 },
  { /* inline-new-delete */                                     7345, /* DiagArray351 */ 1111, /* Empty */         0 },
  { /* instantiation-after-specialization */                    7363, /* DiagArray352 */ 1113, /* Empty */         0 },
  { /* int-conversion */                                        7398, /* DiagArray353 */ 1115, /* Empty */         0 },
  { /* int-conversions */                                       7413, /* Empty */     0, /* DiagSubGroup354 */ 261 },
  { /* int-in-bool-context */                                   7429, /* DiagArray355 */ 1118, /* Empty */         0 },
  { /* int-to-pointer-cast */                                   7449, /* DiagArray356 */ 1121, /* DiagSubGroup356 */ 263 },
  { /* int-to-void-pointer-cast */                              7469, /* DiagArray357 */ 1123, /* Empty */         0 },
  { /* integer-overflow */                                      7494, /* DiagArray358 */ 1125, /* Empty */         0 },
  { /* invalid-command-line-argument */                         7511, /* DiagArray359 */ 1127, /* DiagSubGroup359 */ 265 },
  { /* invalid-constexpr */                                     7541, /* DiagArray360 */ 1134, /* Empty */         0 },
  { /* invalid-iboutlet */                                      7559, /* DiagArray361 */ 1136, /* Empty */         0 },
  { /* invalid-initializer-from-system-header */                7576, /* DiagArray362 */ 1139, /* Empty */         0 },
  { /* invalid-ios-deployment-target */                         7615, /* DiagArray363 */ 1141, /* Empty */         0 },
  { /* invalid-noreturn */                                      7645, /* DiagArray364 */ 1143, /* Empty */         0 },
  { /* invalid-offsetof */                                      7662, /* DiagArray365 */ 1146, /* Empty */         0 },
  { /* invalid-or-nonexistent-directory */                      7679, /* DiagArray366 */ 1149, /* Empty */         0 },
  { /* invalid-partial-specialization */                        7712, /* DiagArray367 */ 1152, /* Empty */         0 },
  { /* invalid-pch */                                           7743, /* Empty */     0, /* Empty */         0 },
  { /* invalid-pp-token */                                      7755, /* DiagArray369 */ 1154, /* Empty */         0 },
  { /* invalid-source-encoding */                               7772, /* DiagArray370 */ 1157, /* Empty */         0 },
  { /* invalid-token-paste */                                   7796, /* DiagArray371 */ 1160, /* Empty */         0 },
  { /* jump-seh-finally */                                      7816, /* DiagArray372 */ 1162, /* Empty */         0 },
  { /* keyword-compat */                                        7833, /* DiagArray373 */ 1164, /* Empty */         0 },
  { /* keyword-macro */                                         7848, /* DiagArray374 */ 1166, /* Empty */         0 },
  { /* knr-promoted-parameter */                                7862, /* DiagArray375 */ 1168, /* Empty */         0 },
  { /* language-extension-token */                              7885, /* DiagArray376 */ 1170, /* Empty */         0 },
  { /* large-by-value-copy */                                   7910, /* DiagArray377 */ 1172, /* Empty */         0 },
  { /* liblto */                                                7930, /* Empty */     0, /* Empty */         0 },
  { /* literal-conversion */                                    7937, /* DiagArray379 */ 1175, /* Empty */         0 },
  { /* literal-range */                                         7956, /* DiagArray380 */ 1178, /* Empty */         0 },
  { /* local-type-template-args */                              7970, /* DiagArray381 */ 1181, /* DiagSubGroup381 */ 267 },
  { /* logical-not-parentheses */                               7995, /* DiagArray382 */ 1183, /* Empty */         0 },
  { /* logical-op-parentheses */                                8019, /* DiagArray383 */ 1185, /* Empty */         0 },
  { /* long-long */                                             8042, /* DiagArray384 */ 1187, /* DiagSubGroup384 */ 269 },
  { /* loop-analysis */                                         8052, /* Empty */     0, /* DiagSubGroup385 */ 271 },
  { /* macro-redefined */                                       8066, /* DiagArray386 */ 1189, /* Empty */         0 },
  { /* main */                                                  8082, /* DiagArray387 */ 1191, /* Empty */         0 },
  { /* main-return-type */                                      8087, /* DiagArray388 */ 1199, /* Empty */         0 },
  { /* malformed-warning-check */                               8104, /* DiagArray389 */ 1201, /* Empty */         0 },
  { /* many-braces-around-scalar-init */                        8128, /* DiagArray390 */ 1203, /* Empty */         0 },
  { /* max-unsigned-zero */                                     8159, /* DiagArray391 */ 1205, /* Empty */         0 },
  { /* memset-transposed-args */                                8177, /* DiagArray392 */ 1207, /* Empty */         0 },
  { /* memsize-comparison */                                    8200, /* DiagArray393 */ 1209, /* Empty */         0 },
  { /* method-signatures */                                     8219, /* DiagArray394 */ 1211, /* Empty */         0 },
  { /* microsoft */                                             8237, /* Empty */     0, /* DiagSubGroup395 */ 274 },
  { /* microsoft-anon-tag */                                    8247, /* DiagArray396 */ 1214, /* Empty */         0 },
  { /* microsoft-cast */                                        8266, /* DiagArray397 */ 1217, /* Empty */         0 },
  { /* microsoft-charize */                                     8281, /* DiagArray398 */ 1220, /* Empty */         0 },
  { /* microsoft-comment-paste */                               8299, /* DiagArray399 */ 1222, /* Empty */         0 },
  { /* microsoft-const-init */                                  8323, /* DiagArray400 */ 1224, /* Empty */         0 },
  { /* microsoft-cpp-macro */                                   8344, /* DiagArray401 */ 1226, /* Empty */         0 },
  { /* microsoft-default-arg-redefinition */                    8364, /* DiagArray402 */ 1228, /* Empty */         0 },
  { /* microsoft-drectve-section */                             8399, /* DiagArray403 */ 1230, /* Empty */         0 },
  { /* microsoft-end-of-file */                                 8425, /* DiagArray404 */ 1232, /* Empty */         0 },
  { /* microsoft-enum-forward-reference */                      8447, /* DiagArray405 */ 1234, /* Empty */         0 },
  { /* microsoft-enum-value */                                  8480, /* DiagArray406 */ 1236, /* Empty */         0 },
  { /* microsoft-exception-spec */                              8501, /* DiagArray407 */ 1238, /* Empty */         0 },
  { /* microsoft-exists */                                      8526, /* DiagArray408 */ 1245, /* Empty */         0 },
  { /* microsoft-explicit-constructor-call */                   8543, /* DiagArray409 */ 1247, /* Empty */         0 },
  { /* microsoft-extra-qualification */                         8579, /* DiagArray410 */ 1249, /* Empty */         0 },
  { /* microsoft-fixed-enum */                                  8609, /* DiagArray411 */ 1251, /* Empty */         0 },
  { /* microsoft-flexible-array */                              8630, /* DiagArray412 */ 1253, /* Empty */         0 },
  { /* microsoft-goto */                                        8655, /* DiagArray413 */ 1256, /* Empty */         0 },
  { /* microsoft-inaccessible-base */                           8670, /* DiagArray414 */ 1258, /* Empty */         0 },
  { /* microsoft-include */                                     8698, /* DiagArray415 */ 1260, /* Empty */         0 },
  { /* microsoft-mutable-reference */                           8716, /* DiagArray416 */ 1262, /* Empty */         0 },
  { /* microsoft-pure-definition */                             8744, /* DiagArray417 */ 1264, /* Empty */         0 },
  { /* microsoft-redeclare-static */                            8770, /* DiagArray418 */ 1266, /* Empty */         0 },
  { /* microsoft-sealed */                                      8797, /* DiagArray419 */ 1268, /* Empty */         0 },
  { /* microsoft-template */                                    8814, /* DiagArray420 */ 1270, /* Empty */         0 },
  { /* microsoft-union-member-reference */                      8833, /* DiagArray421 */ 1280, /* Empty */         0 },
  { /* microsoft-unqualified-friend */                          8866, /* DiagArray422 */ 1282, /* Empty */         0 },
  { /* microsoft-using-decl */                                  8895, /* DiagArray423 */ 1284, /* Empty */         0 },
  { /* microsoft-void-pseudo-dtor */                            8916, /* DiagArray424 */ 1286, /* Empty */         0 },
  { /* misexpect */                                             8943, /* DiagArray425 */ 1288, /* Empty */         0 },
  { /* mismatched-new-delete */                                 8953, /* DiagArray426 */ 1290, /* Empty */         0 },
  { /* mismatched-parameter-types */                            8975, /* DiagArray427 */ 1292, /* Empty */         0 },
  { /* mismatched-return-types */                               9002, /* DiagArray428 */ 1294, /* Empty */         0 },
  { /* mismatched-tags */                                       9026, /* DiagArray429 */ 1296, /* Empty */         0 },
  { /* missing-braces */                                        9042, /* DiagArray430 */ 1299, /* Empty */         0 },
  { /* missing-constinit */                                     9057, /* DiagArray431 */ 1301, /* Empty */         0 },
  { /* missing-declarations */                                  9075, /* DiagArray432 */ 1303, /* Empty */         0 },
  { /* missing-exception-spec */                                9096, /* DiagArray433 */ 1308, /* Empty */         0 },
  { /* missing-field-initializers */                            9119, /* DiagArray434 */ 1310, /* Empty */         0 },
  { /* missing-format-attribute */                              9146, /* Empty */     0, /* Empty */         0 },
  { /* missing-include-dirs */                                  9171, /* Empty */     0, /* Empty */         0 },
  { /* missing-method-return-type */                            9192, /* DiagArray437 */ 1312, /* Empty */         0 },
  { /* missing-noescape */                                      9219, /* DiagArray438 */ 1314, /* Empty */         0 },
  { /* missing-noreturn */                                      9236, /* DiagArray439 */ 1316, /* Empty */         0 },
  { /* missing-prototype-for-cc */                              9253, /* DiagArray440 */ 1319, /* Empty */         0 },
  { /* missing-prototypes */                                    9278, /* DiagArray441 */ 1321, /* Empty */         0 },
  { /* missing-selector-name */                                 9297, /* DiagArray442 */ 1323, /* Empty */         0 },
  { /* missing-sysroot */                                       9319, /* DiagArray443 */ 1325, /* Empty */         0 },
  { /* missing-variable-declarations */                         9335, /* DiagArray444 */ 1327, /* Empty */         0 },
  { /* module-build */                                          9365, /* DiagArray445 */ 1329, /* Empty */         0 },
  { /* module-conflict */                                       9378, /* DiagArray446 */ 1334, /* Empty */         0 },
  { /* module-file-config-mismatch */                           9394, /* DiagArray447 */ 1337, /* Empty */         0 },
  { /* module-file-extension */                                 9422, /* DiagArray448 */ 1339, /* Empty */         0 },
  { /* module-import */                                         9444, /* DiagArray449 */ 1341, /* Empty */         0 },
  { /* module-import-in-extern-c */                             9458, /* DiagArray450 */ 1343, /* Empty */         0 },
  { /* modules-ambiguous-internal-linkage */                    9484, /* DiagArray451 */ 1345, /* Empty */         0 },
  { /* modules-import-nested-redundant */                       9519, /* DiagArray452 */ 1347, /* Empty */         0 },
  { /* most */                                                  9551, /* Empty */     0, /* DiagSubGroup453 */ 303 },
  { /* move */                                                  9556, /* Empty */     0, /* DiagSubGroup454 */ 336 },
  { /* msvc-include */                                          9561, /* Empty */     0, /* DiagSubGroup455 */ 341 },
  { /* msvc-not-found */                                        9574, /* DiagArray456 */ 1349, /* Empty */         0 },
  { /* multichar */                                             9589, /* DiagArray457 */ 1351, /* Empty */         0 },
  { /* multiple-move-vbase */                                   9599, /* DiagArray458 */ 1353, /* Empty */         0 },
  { /* narrowing */                                             9619, /* Empty */     0, /* DiagSubGroup459 */ 343 },
  { /* nested-anon-types */                                     9629, /* DiagArray460 */ 1355, /* Empty */         0 },
  { /* nested-externs */                                        9647, /* Empty */     0, /* Empty */         0 },
  { /* new-returns-null */                                      9662, /* DiagArray462 */ 1357, /* Empty */         0 },
  { /* newline-eof */                                           9679, /* DiagArray463 */ 1359, /* Empty */         0 },
  { /* noderef */                                               9691, /* DiagArray464 */ 1362, /* Empty */         0 },
  { /* noexcept-type */                                         9699, /* Empty */     0, /* DiagSubGroup465 */ 345 },
  { /* non-gcc */                                               9713, /* Empty */     0, /* DiagSubGroup466 */ 347 },
  { /* non-literal-null-conversion */                           9721, /* DiagArray467 */ 1366, /* Empty */         0 },
  { /* non-modular-include-in-framework-module */               9749, /* DiagArray468 */ 1368, /* Empty */         0 },
  { /* non-modular-include-in-module */                         9789, /* DiagArray469 */ 1370, /* DiagSubGroup469 */ 351 },
  { /* non-pod-varargs */                                       9819, /* DiagArray470 */ 1372, /* Empty */         0 },
  { /* non-virtual-dtor */                                      9835, /* DiagArray471 */ 1377, /* Empty */         0 },
  { /* nonnull */                                               9852, /* DiagArray472 */ 1379, /* Empty */         0 },
  { /* nonportable-cfstrings */                                 9860, /* Empty */     0, /* Empty */         0 },
  { /* nonportable-include-path */                              9882, /* DiagArray474 */ 1382, /* Empty */         0 },
  { /* nonportable-system-include-path */                       9907, /* DiagArray475 */ 1384, /* Empty */         0 },
  { /* nonportable-vector-initialization */                     9939, /* DiagArray476 */ 1386, /* Empty */         0 },
  { /* nontrivial-memaccess */                                  9973, /* DiagArray477 */ 1388, /* Empty */         0 },
  { /* nsconsumed-mismatch */                                   9994, /* DiagArray478 */ 1390, /* Empty */         0 },
  { /* nsreturns-mismatch */                                    10014, /* DiagArray479 */ 1392, /* Empty */         0 },
  { /* null-arithmetic */                                       10033, /* DiagArray480 */ 1394, /* Empty */         0 },
  { /* null-character */                                        10049, /* DiagArray481 */ 1397, /* Empty */         0 },
  { /* null-conversion */                                       10064, /* DiagArray482 */ 1400, /* Empty */         0 },
  { /* null-dereference */                                      10080, /* DiagArray483 */ 1402, /* Empty */         0 },
  { /* null-pointer-arithmetic */                               10097, /* DiagArray484 */ 1405, /* Empty */         0 },
  { /* nullability */                                           10121, /* DiagArray485 */ 1408, /* Empty */         0 },
  { /* nullability-completeness */                              10133, /* DiagArray486 */ 1414, /* DiagSubGroup486 */ 353 },
  { /* nullability-completeness-on-arrays */                    10158, /* DiagArray487 */ 1416, /* Empty */         0 },
  { /* nullability-declspec */                                  10193, /* DiagArray488 */ 1418, /* Empty */         0 },
  { /* nullability-extension */                                 10214, /* DiagArray489 */ 1420, /* Empty */         0 },
  { /* nullability-inferred-on-nested-type */                   10236, /* DiagArray490 */ 1422, /* Empty */         0 },
  { /* nullable-to-nonnull-conversion */                        10272, /* DiagArray491 */ 1424, /* Empty */         0 },
  { /* objc-autosynthesis-property-ivar-name-match */           10303, /* DiagArray492 */ 1426, /* Empty */         0 },
  { /* objc-bool-constant-conversion */                         10347, /* DiagArray493 */ 1428, /* Empty */         0 },
  { /* objc-boxing */                                           10377, /* DiagArray494 */ 1430, /* Empty */         0 },
  { /* objc-circular-container */                               10389, /* DiagArray495 */ 1432, /* Empty */         0 },
  { /* objc-cocoa-api */                                        10413, /* Empty */     0, /* DiagSubGroup496 */ 355 },
  { /* objc-designated-initializers */                          10428, /* DiagArray497 */ 1434, /* Empty */         0 },
  { /* objc-flexible-array */                                   10457, /* DiagArray498 */ 1441, /* Empty */         0 },
  { /* objc-forward-class-redefinition */                       10477, /* DiagArray499 */ 1444, /* Empty */         0 },
  { /* objc-interface-ivars */                                  10509, /* DiagArray500 */ 1446, /* Empty */         0 },
  { /* objc-literal-compare */                                  10530, /* DiagArray501 */ 1448, /* DiagSubGroup501 */ 357 },
  { /* objc-literal-conversion */                               10551, /* DiagArray502 */ 1450, /* Empty */         0 },
  { /* objc-macro-redefinition */                               10575, /* DiagArray503 */ 1453, /* Empty */         0 },
  { /* objc-messaging-id */                                     10599, /* DiagArray504 */ 1455, /* Empty */         0 },
  { /* objc-method-access */                                    10617, /* DiagArray505 */ 1457, /* Empty */         0 },
  { /* objc-missing-property-synthesis */                       10636, /* DiagArray506 */ 1464, /* Empty */         0 },
  { /* objc-missing-super-calls */                              10668, /* DiagArray507 */ 1466, /* Empty */         0 },
  { /* objc-multiple-method-names */                            10693, /* DiagArray508 */ 1468, /* Empty */         0 },
  { /* objc-noncopy-retain-block-property */                    10720, /* DiagArray509 */ 1470, /* Empty */         0 },
  { /* objc-nonunified-exceptions */                            10755, /* DiagArray510 */ 1472, /* Empty */         0 },
  { /* objc-property-assign-on-object-type */                   10782, /* DiagArray511 */ 1474, /* Empty */         0 },
  { /* objc-property-implementation */                          10818, /* DiagArray512 */ 1476, /* Empty */         0 },
  { /* objc-property-implicit-mismatch */                       10847, /* DiagArray513 */ 1481, /* Empty */         0 },
  { /* objc-property-matches-cocoa-ownership-rule */            10879, /* DiagArray514 */ 1483, /* Empty */         0 },
  { /* objc-property-no-attribute */                            10922, /* DiagArray515 */ 1485, /* Empty */         0 },
  { /* objc-property-synthesis */                               10949, /* DiagArray516 */ 1488, /* Empty */         0 },
  { /* objc-protocol-method-implementation */                   10973, /* DiagArray517 */ 1492, /* Empty */         0 },
  { /* objc-protocol-property-synthesis */                      11009, /* DiagArray518 */ 1494, /* Empty */         0 },
  { /* objc-protocol-qualifiers */                              11042, /* DiagArray519 */ 1496, /* Empty */         0 },
  { /* objc-readonly-with-setter-property */                    11067, /* DiagArray520 */ 1498, /* Empty */         0 },
  { /* objc-redundant-api-use */                                11102, /* Empty */     0, /* DiagSubGroup521 */ 359 },
  { /* objc-redundant-literal-use */                            11125, /* DiagArray522 */ 1500, /* Empty */         0 },
  { /* objc-root-class */                                       11152, /* DiagArray523 */ 1502, /* Empty */         0 },
  { /* objc-signed-char-bool */                                 11168, /* Empty */     0, /* DiagSubGroup524 */ 361 },
  { /* objc-signed-char-bool-implicit-float-conversion */       11190, /* DiagArray525 */ 1504, /* Empty */         0 },
  { /* objc-signed-char-bool-implicit-int-conversion */         11238, /* DiagArray526 */ 1506, /* Empty */         0 },
  { /* objc-string-compare */                                   11284, /* DiagArray527 */ 1508, /* Empty */         0 },
  { /* objc-string-concatenation */                             11304, /* DiagArray528 */ 1510, /* Empty */         0 },
  { /* objc-unsafe-perform-selector */                          11330, /* DiagArray529 */ 1512, /* Empty */         0 },
  { /* odr */                                                   11359, /* DiagArray530 */ 1514, /* Empty */         0 },
  { /* old-style-cast */                                        11363, /* DiagArray531 */ 1533, /* Empty */         0 },
  { /* old-style-definition */                                  11378, /* Empty */     0, /* Empty */         0 },
  { /* opencl-unsupported-rgba */                               11399, /* DiagArray533 */ 1535, /* Empty */         0 },
  { /* openmp-clauses */                                        11423, /* DiagArray534 */ 1537, /* Empty */         0 },
  { /* openmp-loop-form */                                      11438, /* DiagArray535 */ 1544, /* Empty */         0 },
  { /* openmp-target */                                         11455, /* DiagArray536 */ 1547, /* Empty */         0 },
  { /* option-ignored */                                        11469, /* DiagArray537 */ 1553, /* Empty */         0 },
  { /* ordered-compare-function-pointers */                     11484, /* DiagArray538 */ 1560, /* Empty */         0 },
  { /* out-of-line-declaration */                               11518, /* DiagArray539 */ 1562, /* Empty */         0 },
  { /* out-of-scope-function */                                 11542, /* DiagArray540 */ 1564, /* Empty */         0 },
  { /* over-aligned */                                          11564, /* DiagArray541 */ 1566, /* Empty */         0 },
  { /* overflow */                                              11577, /* Empty */     0, /* Empty */         0 },
  { /* overlength-strings */                                    11586, /* DiagArray543 */ 1568, /* Empty */         0 },
  { /* overloaded-shift-op-parentheses */                       11605, /* DiagArray544 */ 1570, /* Empty */         0 },
  { /* overloaded-virtual */                                    11637, /* DiagArray545 */ 1572, /* Empty */         0 },
  { /* override-init */                                         11656, /* Empty */     0, /* DiagSubGroup546 */ 366 },
  { /* override-module */                                       11670, /* DiagArray547 */ 1574, /* Empty */         0 },
  { /* overriding-method-mismatch */                            11686, /* DiagArray548 */ 1576, /* Empty */         0 },
  { /* overriding-t-option */                                   11713, /* DiagArray549 */ 1584, /* Empty */         0 },
  { /* packed */                                                11733, /* DiagArray550 */ 1586, /* Empty */         0 },
  { /* padded */                                                11740, /* DiagArray551 */ 1588, /* Empty */         0 },
  { /* parentheses */                                           11747, /* DiagArray552 */ 1592, /* DiagSubGroup552 */ 368 },
  { /* parentheses-equality */                                  11759, /* DiagArray553 */ 1596, /* Empty */         0 },
  { /* partial-availability */                                  11780, /* Empty */     0, /* DiagSubGroup554 */ 377 },
  { /* pass */                                                  11801, /* DiagArray555 */ 1598, /* Empty */         0 },
  { /* pass-analysis */                                         11806, /* DiagArray556 */ 1600, /* Empty */         0 },
  { /* pass-failed */                                           11820, /* DiagArray557 */ 1604, /* Empty */         0 },
  { /* pass-missed */                                           11832, /* DiagArray558 */ 1606, /* Empty */         0 },
  { /* pch-date-time */                                         11844, /* DiagArray559 */ 1608, /* Empty */         0 },
  { /* pedantic */                                              11858, /* DiagArray560 */ 1610, /* DiagSubGroup560 */ 379 },
  { /* pedantic-core-features */                                11867, /* DiagArray561 */ 1683, /* Empty */         0 },
  { /* pessimizing-move */                                      11890, /* DiagArray562 */ 1685, /* Empty */         0 },
  { /* pointer-arith */                                         11907, /* DiagArray563 */ 1688, /* Empty */         0 },
  { /* pointer-bool-conversion */                               11921, /* DiagArray564 */ 1695, /* Empty */         0 },
  { /* pointer-compare */                                       11945, /* DiagArray565 */ 1698, /* Empty */         0 },
  { /* pointer-integer-compare */                               11961, /* DiagArray566 */ 1700, /* Empty */         0 },
  { /* pointer-sign */                                          11985, /* DiagArray567 */ 1702, /* Empty */         0 },
  { /* pointer-to-int-cast */                                   11998, /* Empty */     0, /* Empty */         0 },
  { /* pointer-type-mismatch */                                 12018, /* DiagArray569 */ 1704, /* Empty */         0 },
  { /* poison-system-directories */                             12040, /* DiagArray570 */ 1706, /* Empty */         0 },
  { /* potentially-evaluated-expression */                      12066, /* DiagArray571 */ 1708, /* Empty */         0 },
  { /* pragma-clang-attribute */                                12099, /* DiagArray572 */ 1710, /* Empty */         0 },
  { /* pragma-once-outside-header */                            12122, /* DiagArray573 */ 1712, /* Empty */         0 },
  { /* pragma-pack */                                           12149, /* DiagArray574 */ 1714, /* DiagSubGroup574 */ 432 },
  { /* pragma-pack-suspicious-include */                        12161, /* DiagArray575 */ 1717, /* Empty */         0 },
  { /* pragma-system-header-outside-header */                   12192, /* DiagArray576 */ 1719, /* Empty */         0 },
  { /* pragmas */                                               12228, /* DiagArray577 */ 1721, /* DiagSubGroup577 */ 434 },
  { /* predefined-identifier-outside-function */                12236, /* DiagArray578 */ 1723, /* Empty */         0 },
  { /* private-extern */                                        12275, /* DiagArray579 */ 1725, /* Empty */         0 },
  { /* private-header */                                        12290, /* DiagArray580 */ 1727, /* Empty */         0 },
  { /* private-module */                                        12305, /* DiagArray581 */ 1729, /* Empty */         0 },
  { /* profile-instr-missing */                                 12320, /* DiagArray582 */ 1734, /* Empty */         0 },
  { /* profile-instr-out-of-date */                             12342, /* DiagArray583 */ 1736, /* Empty */         0 },
  { /* profile-instr-unprofiled */                              12368, /* DiagArray584 */ 1738, /* Empty */         0 },
  { /* property-access-dot-syntax */                            12393, /* DiagArray585 */ 1740, /* Empty */         0 },
  { /* property-attribute-mismatch */                           12420, /* DiagArray586 */ 1742, /* Empty */         0 },
  { /* protocol */                                              12448, /* DiagArray587 */ 1747, /* Empty */         0 },
  { /* protocol-property-synthesis-ambiguity */                 12457, /* DiagArray588 */ 1749, /* Empty */         0 },
  { /* qualified-void-return-type */                            12495, /* DiagArray589 */ 1751, /* Empty */         0 },
  { /* quoted-include-in-framework-header */                    12522, /* DiagArray590 */ 1753, /* Empty */         0 },
  { /* range-loop-analysis */                                   12557, /* DiagArray591 */ 1755, /* Empty */         0 },
  { /* readonly-iboutlet-property */                            12577, /* DiagArray592 */ 1759, /* Empty */         0 },
  { /* receiver-expr */                                         12604, /* DiagArray593 */ 1761, /* Empty */         0 },
  { /* receiver-forward-class */                                12618, /* DiagArray594 */ 1763, /* Empty */         0 },
  { /* redeclared-class-member */                               12641, /* DiagArray595 */ 1766, /* Empty */         0 },
  { /* redundant-decls */                                       12665, /* Empty */     0, /* Empty */         0 },
  { /* redundant-move */                                        12681, /* DiagArray597 */ 1768, /* Empty */         0 },
  { /* redundant-parens */                                      12696, /* DiagArray598 */ 1770, /* Empty */         0 },
  { /* register */                                              12713, /* DiagArray599 */ 1772, /* DiagSubGroup599 */ 439 },
  { /* reinterpret-base-class */                                12722, /* DiagArray600 */ 1774, /* Empty */         0 },
  { /* remark-backend-plugin */                                 12745, /* DiagArray601 */ 1776, /* Empty */         0 },
  { /* reorder */                                               12767, /* Empty */     0, /* DiagSubGroup602 */ 441 },
  { /* reorder-ctor */                                          12775, /* DiagArray603 */ 1778, /* Empty */         0 },
  { /* reorder-init-list */                                     12788, /* DiagArray604 */ 1780, /* Empty */         0 },
  { /* requires-super-attribute */                              12806, /* DiagArray605 */ 1782, /* Empty */         0 },
  { /* reserved-id-macro */                                     12831, /* DiagArray606 */ 1784, /* Empty */         0 },
  { /* reserved-user-defined-literal */                         12849, /* DiagArray607 */ 1786, /* DiagSubGroup607 */ 444 },
  { /* retained-language-linkage */                             12879, /* DiagArray608 */ 1789, /* Empty */         0 },
  { /* return-stack-address */                                  12905, /* DiagArray609 */ 1791, /* Empty */         0 },
  { /* return-std-move */                                       12926, /* DiagArray610 */ 1795, /* Empty */         0 },
  { /* return-std-move-in-c++11 */                              12942, /* DiagArray611 */ 1797, /* Empty */         0 },
  { /* return-type */                                           12967, /* DiagArray612 */ 1799, /* DiagSubGroup612 */ 446 },
  { /* return-type-c-linkage */                                 12979, /* DiagArray613 */ 1809, /* Empty */         0 },
  { /* sanitize-address */                                      13001, /* DiagArray614 */ 1812, /* Empty */         0 },
  { /* section */                                               13018, /* DiagArray615 */ 1815, /* Empty */         0 },
  { /* selector */                                              13026, /* DiagArray616 */ 1819, /* DiagSubGroup616 */ 448 },
  { /* selector-type-mismatch */                                13035, /* DiagArray617 */ 1821, /* Empty */         0 },
  { /* self-assign */                                           13058, /* DiagArray618 */ 1823, /* DiagSubGroup618 */ 450 },
  { /* self-assign-field */                                     13070, /* DiagArray619 */ 1825, /* Empty */         0 },
  { /* self-assign-overloaded */                                13088, /* DiagArray620 */ 1827, /* Empty */         0 },
  { /* self-move */                                             13111, /* DiagArray621 */ 1829, /* Empty */         0 },
  { /* semicolon-before-method-body */                          13121, /* DiagArray622 */ 1831, /* Empty */         0 },
  { /* sentinel */                                              13150, /* DiagArray623 */ 1833, /* Empty */         0 },
  { /* sequence-point */                                        13159, /* Empty */     0, /* DiagSubGroup624 */ 453 },
  { /* serialized-diagnostics */                                13174, /* DiagArray625 */ 1836, /* Empty */         0 },
  { /* shadow */                                                13197, /* DiagArray626 */ 1839, /* DiagSubGroup626 */ 455 },
  { /* shadow-all */                                            13204, /* Empty */     0, /* DiagSubGroup627 */ 458 },
  { /* shadow-field */                                          13215, /* DiagArray628 */ 1841, /* Empty */         0 },
  { /* shadow-field-in-constructor */                           13228, /* DiagArray629 */ 1843, /* DiagSubGroup629 */ 463 },
  { /* shadow-field-in-constructor-modified */                  13256, /* DiagArray630 */ 1845, /* Empty */         0 },
  { /* shadow-ivar */                                           13293, /* DiagArray631 */ 1847, /* Empty */         0 },
  { /* shadow-uncaptured-local */                               13305, /* DiagArray632 */ 1849, /* Empty */         0 },
  { /* shift-count-negative */                                  13329, /* DiagArray633 */ 1851, /* Empty */         0 },
  { /* shift-count-overflow */                                  13350, /* DiagArray634 */ 1853, /* Empty */         0 },
  { /* shift-negative-value */                                  13371, /* DiagArray635 */ 1855, /* Empty */         0 },
  { /* shift-op-parentheses */                                  13392, /* DiagArray636 */ 1857, /* Empty */         0 },
  { /* shift-overflow */                                        13413, /* DiagArray637 */ 1859, /* Empty */         0 },
  { /* shift-sign-overflow */                                   13428, /* DiagArray638 */ 1861, /* Empty */         0 },
  { /* shorten-64-to-32 */                                      13448, /* DiagArray639 */ 1863, /* Empty */         0 },
  { /* sign-compare */                                          13465, /* DiagArray640 */ 1865, /* Empty */         0 },
  { /* sign-conversion */                                       13478, /* DiagArray641 */ 1867, /* Empty */         0 },
  { /* sign-promo */                                            13494, /* Empty */     0, /* Empty */         0 },
  { /* signed-enum-bitfield */                                  13505, /* DiagArray643 */ 1871, /* Empty */         0 },
  { /* signed-unsigned-wchar */                                 13526, /* DiagArray644 */ 1873, /* Empty */         0 },
  { /* sizeof-array-argument */                                 13548, /* DiagArray645 */ 1875, /* Empty */         0 },
  { /* sizeof-array-decay */                                    13570, /* DiagArray646 */ 1877, /* Empty */         0 },
  { /* sizeof-array-div */                                      13589, /* DiagArray647 */ 1879, /* Empty */         0 },
  { /* sizeof-pointer-div */                                    13606, /* DiagArray648 */ 1881, /* Empty */         0 },
  { /* sizeof-pointer-memaccess */                              13625, /* DiagArray649 */ 1883, /* Empty */         0 },
  { /* slash-u-filename */                                      13650, /* DiagArray650 */ 1886, /* Empty */         0 },
  { /* sometimes-uninitialized */                               13667, /* DiagArray651 */ 1888, /* Empty */         0 },
  { /* source-uses-openmp */                                    13691, /* DiagArray652 */ 1890, /* Empty */         0 },
  { /* spir-compat */                                           13710, /* DiagArray653 */ 1896, /* Empty */         0 },
  { /* stack-exhausted */                                       13722, /* DiagArray654 */ 1898, /* Empty */         0 },
  { /* stack-protector */                                       13738, /* Empty */     0, /* Empty */         0 },
  { /* static-float-init */                                     13754, /* DiagArray656 */ 1900, /* DiagSubGroup656 */ 465 },
  { /* static-in-inline */                                      13772, /* DiagArray657 */ 1902, /* Empty */         0 },
  { /* static-inline-explicit-instantiation */                  13789, /* DiagArray658 */ 1905, /* Empty */         0 },
  { /* static-local-in-inline */                                13826, /* DiagArray659 */ 1907, /* Empty */         0 },
  { /* static-self-init */                                      13849, /* DiagArray660 */ 1909, /* Empty */         0 },
  { /* stdlibcxx-not-found */                                   13866, /* DiagArray661 */ 1911, /* Empty */         0 },
  { /* strict-aliasing */                                       13886, /* Empty */     0, /* Empty */         0 },
  { /* strict-aliasing=0 */                                     13902, /* Empty */     0, /* Empty */         0 },
  { /* strict-aliasing=1 */                                     13920, /* Empty */     0, /* Empty */         0 },
  { /* strict-aliasing=2 */                                     13938, /* Empty */     0, /* Empty */         0 },
  { /* strict-overflow */                                       13956, /* Empty */     0, /* Empty */         0 },
  { /* strict-overflow=0 */                                     13972, /* Empty */     0, /* Empty */         0 },
  { /* strict-overflow=1 */                                     13990, /* Empty */     0, /* Empty */         0 },
  { /* strict-overflow=2 */                                     14008, /* Empty */     0, /* Empty */         0 },
  { /* strict-overflow=3 */                                     14026, /* Empty */     0, /* Empty */         0 },
  { /* strict-overflow=4 */                                     14044, /* Empty */     0, /* Empty */         0 },
  { /* strict-overflow=5 */                                     14062, /* Empty */     0, /* Empty */         0 },
  { /* strict-prototypes */                                     14080, /* DiagArray673 */ 1913, /* Empty */         0 },
  { /* strict-selector-match */                                 14098, /* DiagArray674 */ 1915, /* Empty */         0 },
  { /* string-compare */                                        14120, /* DiagArray675 */ 1917, /* Empty */         0 },
  { /* string-conversion */                                     14135, /* DiagArray676 */ 1919, /* Empty */         0 },
  { /* string-plus-char */                                      14153, /* DiagArray677 */ 1921, /* Empty */         0 },
  { /* string-plus-int */                                       14170, /* DiagArray678 */ 1923, /* Empty */         0 },
  { /* strlcpy-strlcat-size */                                  14186, /* DiagArray679 */ 1925, /* Empty */         0 },
  { /* strncat-size */                                          14207, /* DiagArray680 */ 1927, /* Empty */         0 },
  { /* super-class-method-mismatch */                           14220, /* DiagArray681 */ 1931, /* Empty */         0 },
  { /* suspicious-bzero */                                      14248, /* DiagArray682 */ 1933, /* Empty */         0 },
  { /* suspicious-memaccess */                                  14265, /* Empty */     0, /* DiagSubGroup683 */ 467 },
  { /* switch */                                                14286, /* DiagArray684 */ 1935, /* Empty */         0 },
  { /* switch-bool */                                           14293, /* DiagArray685 */ 1939, /* Empty */         0 },
  { /* switch-default */                                        14305, /* Empty */     0, /* Empty */         0 },
  { /* switch-enum */                                           14320, /* DiagArray687 */ 1941, /* Empty */         0 },
  { /* sync-fetch-and-nand-semantics-changed */                 14332, /* DiagArray688 */ 1943, /* Empty */         0 },
  { /* synth */                                                 14370, /* Empty */     0, /* Empty */         0 },
  { /* tautological-bitwise-compare */                          14376, /* DiagArray690 */ 1945, /* Empty */         0 },
  { /* tautological-compare */                                  14405, /* DiagArray691 */ 1948, /* DiagSubGroup691 */ 473 },
  { /* tautological-constant-compare */                         14426, /* DiagArray692 */ 1950, /* DiagSubGroup692 */ 480 },
  { /* tautological-constant-in-range-compare */                14456, /* Empty */     0, /* DiagSubGroup693 */ 482 },
  { /* tautological-constant-out-of-range-compare */            14495, /* DiagArray694 */ 1954, /* Empty */         0 },
  { /* tautological-objc-bool-compare */                        14538, /* DiagArray695 */ 1956, /* Empty */         0 },
  { /* tautological-overlap-compare */                          14569, /* DiagArray696 */ 1958, /* Empty */         0 },
  { /* tautological-pointer-compare */                          14598, /* DiagArray697 */ 1960, /* Empty */         0 },
  { /* tautological-type-limit-compare */                       14627, /* DiagArray698 */ 1963, /* Empty */         0 },
  { /* tautological-undefined-compare */                        14659, /* DiagArray699 */ 1965, /* Empty */         0 },
  { /* tautological-unsigned-enum-zero-compare */               14690, /* DiagArray700 */ 1968, /* Empty */         0 },
  { /* tautological-unsigned-zero-compare */                    14730, /* DiagArray701 */ 1970, /* Empty */         0 },
  { /* tentative-definition-incomplete-type */                  14765, /* DiagArray702 */ 1972, /* Empty */         0 },
  { /* thread-safety */                                         14802, /* Empty */     0, /* DiagSubGroup703 */ 486 },
  { /* thread-safety-analysis */                                14816, /* DiagArray704 */ 1974, /* Empty */         0 },
  { /* thread-safety-attributes */                              14839, /* DiagArray705 */ 1992, /* Empty */         0 },
  { /* thread-safety-beta */                                    14864, /* DiagArray706 */ 2000, /* Empty */         0 },
  { /* thread-safety-negative */                                14883, /* DiagArray707 */ 2002, /* Empty */         0 },
  { /* thread-safety-precise */                                 14906, /* DiagArray708 */ 2004, /* Empty */         0 },
  { /* thread-safety-reference */                               14928, /* DiagArray709 */ 2008, /* Empty */         0 },
  { /* thread-safety-verbose */                                 14952, /* DiagArray710 */ 2011, /* Empty */         0 },
  { /* trigraphs */                                             14974, /* DiagArray711 */ 2013, /* Empty */         0 },
  { /* type-limits */                                           14984, /* Empty */     0, /* DiagSubGroup712 */ 491 },
  { /* type-safety */                                           14996, /* DiagArray713 */ 2018, /* Empty */         0 },
  { /* typedef-redefinition */                                  15008, /* DiagArray714 */ 2022, /* Empty */         0 },
  { /* typename-missing */                                      15029, /* DiagArray715 */ 2024, /* Empty */         0 },
  { /* unable-to-open-stats-file */                             15046, /* DiagArray716 */ 2026, /* Empty */         0 },
  { /* unavailable-declarations */                              15072, /* DiagArray717 */ 2028, /* Empty */         0 },
  { /* undeclared-selector */                                   15097, /* DiagArray718 */ 2030, /* Empty */         0 },
  { /* undef */                                                 15117, /* DiagArray719 */ 2033, /* Empty */         0 },
  { /* undefined-bool-conversion */                             15123, /* DiagArray720 */ 2035, /* Empty */         0 },
  { /* undefined-func-template */                               15149, /* DiagArray721 */ 2038, /* Empty */         0 },
  { /* undefined-inline */                                      15173, /* DiagArray722 */ 2040, /* Empty */         0 },
  { /* undefined-internal */                                    15190, /* DiagArray723 */ 2042, /* Empty */         0 },
  { /* undefined-internal-type */                               15209, /* DiagArray724 */ 2044, /* Empty */         0 },
  { /* undefined-reinterpret-cast */                            15233, /* DiagArray725 */ 2046, /* Empty */         0 },
  { /* undefined-var-template */                                15260, /* DiagArray726 */ 2049, /* Empty */         0 },
  { /* underaligned-exception-object */                         15283, /* DiagArray727 */ 2051, /* Empty */         0 },
  { /* unevaluated-expression */                                15313, /* DiagArray728 */ 2053, /* DiagSubGroup728 */ 493 },
  { /* unguarded-availability */                                15336, /* DiagArray729 */ 2055, /* DiagSubGroup729 */ 495 },
  { /* unguarded-availability-new */                            15359, /* DiagArray730 */ 2057, /* Empty */         0 },
  { /* unicode */                                               15386, /* DiagArray731 */ 2059, /* Empty */         0 },
  { /* unicode-homoglyph */                                     15394, /* DiagArray732 */ 2065, /* Empty */         0 },
  { /* unicode-whitespace */                                    15412, /* DiagArray733 */ 2067, /* Empty */         0 },
  { /* unicode-zero-width */                                    15431, /* DiagArray734 */ 2069, /* Empty */         0 },
  { /* uninitialized */                                         15450, /* DiagArray735 */ 2071, /* DiagSubGroup735 */ 497 },
  { /* unknown-argument */                                      15464, /* DiagArray736 */ 2079, /* Empty */         0 },
  { /* unknown-attributes */                                    15481, /* DiagArray737 */ 2082, /* Empty */         0 },
  { /* unknown-escape-sequence */                               15500, /* DiagArray738 */ 2084, /* Empty */         0 },
  { /* unknown-pragmas */                                       15524, /* DiagArray739 */ 2086, /* Empty */         0 },
  { /* unknown-sanitizers */                                    15540, /* DiagArray740 */ 2107, /* Empty */         0 },
  { /* unknown-warning-option */                                15559, /* DiagArray741 */ 2109, /* Empty */         0 },
  { /* unnamed-type-template-args */                            15582, /* DiagArray742 */ 2113, /* DiagSubGroup742 */ 500 },
  { /* unneeded-internal-declaration */                         15609, /* DiagArray743 */ 2115, /* Empty */         0 },
  { /* unneeded-member-function */                              15639, /* DiagArray744 */ 2118, /* Empty */         0 },
  { /* unreachable-code */                                      15664, /* DiagArray745 */ 2120, /* DiagSubGroup745 */ 502 },
  { /* unreachable-code-aggressive */                           15681, /* Empty */     0, /* DiagSubGroup746 */ 504 },
  { /* unreachable-code-break */                                15709, /* DiagArray747 */ 2122, /* Empty */         0 },
  { /* unreachable-code-loop-increment */                       15732, /* DiagArray748 */ 2124, /* Empty */         0 },
  { /* unreachable-code-return */                               15764, /* DiagArray749 */ 2126, /* Empty */         0 },
  { /* unsequenced */                                           15788, /* DiagArray750 */ 2128, /* Empty */         0 },
  { /* unsupported-abs */                                       15800, /* DiagArray751 */ 2131, /* Empty */         0 },
  { /* unsupported-availability-guard */                        15816, /* DiagArray752 */ 2134, /* Empty */         0 },
  { /* unsupported-cb */                                        15847, /* DiagArray753 */ 2136, /* Empty */         0 },
  { /* unsupported-dll-base-class-template */                   15862, /* DiagArray754 */ 2138, /* Empty */         0 },
  { /* unsupported-friend */                                    15898, /* DiagArray755 */ 2140, /* Empty */         0 },
  { /* unsupported-gpopt */                                     15917, /* DiagArray756 */ 2143, /* Empty */         0 },
  { /* unsupported-nan */                                       15935, /* DiagArray757 */ 2145, /* Empty */         0 },
  { /* unsupported-target-opt */                                15951, /* DiagArray758 */ 2148, /* Empty */         0 },
  { /* unsupported-visibility */                                15974, /* DiagArray759 */ 2150, /* Empty */         0 },
  { /* unusable-partial-specialization */                       15997, /* DiagArray760 */ 2152, /* Empty */         0 },
  { /* unused */                                                16029, /* Empty */     0, /* DiagSubGroup761 */ 508 },
  { /* unused-argument */                                       16036, /* Empty */     0, /* Empty */         0 },
  { /* unused-command-line-argument */                          16052, /* DiagArray763 */ 2154, /* Empty */         0 },
  { /* unused-comparison */                                     16081, /* DiagArray764 */ 2162, /* Empty */         0 },
  { /* unused-const-variable */                                 16099, /* DiagArray765 */ 2164, /* Empty */         0 },
  { /* unused-exception-parameter */                            16121, /* DiagArray766 */ 2166, /* Empty */         0 },
  { /* unused-function */                                       16148, /* DiagArray767 */ 2168, /* DiagSubGroup767 */ 518 },
  { /* unused-getter-return-value */                            16164, /* DiagArray768 */ 2170, /* Empty */         0 },
  { /* unused-label */                                          16191, /* DiagArray769 */ 2172, /* Empty */         0 },
  { /* unused-lambda-capture */                                 16204, /* DiagArray770 */ 2174, /* Empty */         0 },
  { /* unused-local-typedef */                                  16226, /* DiagArray771 */ 2176, /* Empty */         0 },
  { /* unused-local-typedefs */                                 16247, /* Empty */     0, /* DiagSubGroup772 */ 520 },
  { /* unused-macros */                                         16269, /* DiagArray773 */ 2178, /* Empty */         0 },
  { /* unused-member-function */                                16283, /* DiagArray774 */ 2180, /* DiagSubGroup774 */ 522 },
  { /* unused-parameter */                                      16306, /* DiagArray775 */ 2182, /* Empty */         0 },
  { /* unused-private-field */                                  16323, /* DiagArray776 */ 2184, /* Empty */         0 },
  { /* unused-property-ivar */                                  16344, /* DiagArray777 */ 2186, /* Empty */         0 },
  { /* unused-result */                                         16365, /* DiagArray778 */ 2188, /* Empty */         0 },
  { /* unused-template */                                       16379, /* DiagArray779 */ 2191, /* DiagSubGroup779 */ 524 },
  { /* unused-value */                                          16395, /* DiagArray780 */ 2193, /* DiagSubGroup780 */ 526 },
  { /* unused-variable */                                       16408, /* DiagArray781 */ 2200, /* DiagSubGroup781 */ 530 },
  { /* unused-volatile-lvalue */                                16424, /* DiagArray782 */ 2202, /* Empty */         0 },
  { /* used-but-marked-unused */                                16447, /* DiagArray783 */ 2204, /* Empty */         0 },
  { /* user-defined-literals */                                 16470, /* DiagArray784 */ 2206, /* Empty */         0 },
  { /* user-defined-warnings */                                 16492, /* DiagArray785 */ 2208, /* Empty */         0 },
  { /* varargs */                                               16514, /* DiagArray786 */ 2210, /* Empty */         0 },
  { /* variadic-macros */                                       16522, /* DiagArray787 */ 2214, /* Empty */         0 },
  { /* vec-elem-size */                                         16538, /* DiagArray788 */ 2218, /* Empty */         0 },
  { /* vector-conversion */                                     16552, /* DiagArray789 */ 2220, /* Empty */         0 },
  { /* vector-conversions */                                    16570, /* Empty */     0, /* DiagSubGroup790 */ 532 },
  { /* vexing-parse */                                          16589, /* DiagArray791 */ 2222, /* Empty */         0 },
  { /* visibility */                                            16602, /* DiagArray792 */ 2226, /* Empty */         0 },
  { /* vla */                                                   16613, /* DiagArray793 */ 2229, /* Empty */         0 },
  { /* vla-extension */                                         16617, /* DiagArray794 */ 2231, /* Empty */         0 },
  { /* void-ptr-dereference */                                  16631, /* DiagArray795 */ 2233, /* Empty */         0 },
  { /* volatile-register-var */                                 16652, /* Empty */     0, /* Empty */         0 },
  { /* weak-template-vtables */                                 16674, /* DiagArray797 */ 2235, /* Empty */         0 },
  { /* weak-vtables */                                          16696, /* DiagArray798 */ 2237, /* Empty */         0 },
  { /* writable-strings */                                      16709, /* DiagArray799 */ 2239, /* DiagSubGroup799 */ 534 },
  { /* write-strings */                                         16726, /* Empty */     0, /* DiagSubGroup800 */ 536 },
  { /* xor-used-as-pow */                                       16740, /* DiagArray801 */ 2241, /* Empty */         0 },
  { /* zero-as-null-pointer-constant */                         16756, /* DiagArray802 */ 2245, /* Empty */         0 },
  { /* zero-length-array */                                     16786, /* DiagArray803 */ 2247, /* Empty */         0 },
#endif // GET_DIAG_TABLE


#ifdef GET_CATEGORY_TABLE
CATEGORY("", DiagCat_None)
CATEGORY("Lexical or Preprocessor Issue", DiagCat_Lexical_or_Preprocessor_Issue)
CATEGORY("Semantic Issue", DiagCat_Semantic_Issue)
CATEGORY("Lambda Issue", DiagCat_Lambda_Issue)
CATEGORY("Parse Issue", DiagCat_Parse_Issue)
CATEGORY("ARC Semantic Issue", DiagCat_ARC_Semantic_Issue)
CATEGORY("ARC and @properties", DiagCat_ARC_and__properties)
CATEGORY("ARC Casting Rules", DiagCat_ARC_Casting_Rules)
CATEGORY("ARC Parse Issue", DiagCat_ARC_Parse_Issue)
CATEGORY("ARC Weak References", DiagCat_ARC_Weak_References)
CATEGORY("ARC Restrictions", DiagCat_ARC_Restrictions)
CATEGORY("OpenMP Issue", DiagCat_OpenMP_Issue)
CATEGORY("Inline Assembly Issue", DiagCat_Inline_Assembly_Issue)
CATEGORY("Modules Issue", DiagCat_Modules_Issue)
CATEGORY("Coroutines Issue", DiagCat_Coroutines_Issue)
CATEGORY("Concepts Issue", DiagCat_Concepts_Issue)
CATEGORY("Dependency Directive Source Minimization Issue", DiagCat_Dependency_Directive_Source_Minimization_Issue)
CATEGORY("AST Deserialization Issue", DiagCat_AST_Deserialization_Issue)
CATEGORY("Backend Issue", DiagCat_Backend_Issue)
CATEGORY("Related Result Type Issue", DiagCat_Related_Result_Type_Issue)
CATEGORY("AST Serialization Issue", DiagCat_AST_Serialization_Issue)
CATEGORY("Nullability Issue", DiagCat_Nullability_Issue)
CATEGORY("Generics Issue", DiagCat_Generics_Issue)
CATEGORY("User-Defined Issue", DiagCat_User_Defined_Issue)
CATEGORY("Refactoring Invocation Issue", DiagCat_Refactoring_Invocation_Issue)
CATEGORY("VTable ABI Issue", DiagCat_VTable_ABI_Issue)
CATEGORY("Value Conversion Issue", DiagCat_Value_Conversion_Issue)
CATEGORY("Documentation Issue", DiagCat_Documentation_Issue)
CATEGORY("ARC Retain Cycle", DiagCat_ARC_Retain_Cycle)
CATEGORY("Deprecations", DiagCat_Deprecations)
CATEGORY("Format String Issue", DiagCat_Format_String_Issue)
CATEGORY("Cocoa API Issue", DiagCat_Cocoa_API_Issue)
CATEGORY("#pragma message Directive", DiagCat__pragma_message_Directive)
CATEGORY("Instrumentation Issue", DiagCat_Instrumentation_Issue)
CATEGORY("Unused Entity Issue", DiagCat_Unused_Entity_Issue)
#endif // GET_CATEGORY_TABLE