forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-11-20 2e7bd41e4e8ab3d1efdabd9e263a2f7fe79bff8c
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
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
/* This file is auto-generated by opth-gen.awk.  */
 
#ifndef OPTIONS_H
#define OPTIONS_H
 
#include "flag-types.h"
 
#include "config/aarch64/aarch64-opts.h"
 
#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)
#ifndef GENERATOR_FILE
#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS)
struct GTY(()) gcc_options
#else
struct gcc_options
#endif
{
#endif
#ifdef GENERATOR_FILE
extern enum aarch64_arch explicit_arch;
#else
  enum aarch64_arch x_explicit_arch;
#define explicit_arch global_options.x_explicit_arch
#endif
#ifdef GENERATOR_FILE
extern enum aarch64_processor explicit_tune_core;
#else
  enum aarch64_processor x_explicit_tune_core;
#define explicit_tune_core global_options.x_explicit_tune_core
#endif
#ifdef GENERATOR_FILE
extern unsigned long aarch64_isa_flags;
#else
  unsigned long x_aarch64_isa_flags;
#define aarch64_isa_flags global_options.x_aarch64_isa_flags
#endif
#ifdef GENERATOR_FILE
extern HOST_WIDE_INT frame_larger_than_size;
#else
  HOST_WIDE_INT x_frame_larger_than_size;
#define frame_larger_than_size global_options.x_frame_larger_than_size
#endif
#ifdef GENERATOR_FILE
extern HOST_WIDE_INT larger_than_size;
#else
  HOST_WIDE_INT x_larger_than_size;
#define larger_than_size global_options.x_larger_than_size
#endif
#ifdef GENERATOR_FILE
extern bool dump_base_name_prefixed;
#else
  bool x_dump_base_name_prefixed;
#define dump_base_name_prefixed global_options.x_dump_base_name_prefixed
#endif
#ifdef GENERATOR_FILE
extern bool exit_after_options;
#else
  bool x_exit_after_options;
#define exit_after_options global_options.x_exit_after_options
#endif
#ifdef GENERATOR_FILE
extern bool flag_disable_hsa;
#else
  bool x_flag_disable_hsa;
#define flag_disable_hsa global_options.x_flag_disable_hsa
#endif
#ifdef GENERATOR_FILE
extern bool flag_dump_all_passed;
#else
  bool x_flag_dump_all_passed;
#define flag_dump_all_passed global_options.x_flag_dump_all_passed
#endif
#ifdef GENERATOR_FILE
extern bool flag_opts_finished;
#else
  bool x_flag_opts_finished;
#define flag_opts_finished global_options.x_flag_opts_finished
#endif
#ifdef GENERATOR_FILE
extern bool flag_stack_usage_info;
#else
  bool x_flag_stack_usage_info;
#define flag_stack_usage_info global_options.x_flag_stack_usage_info
#endif
#ifdef GENERATOR_FILE
extern bool flag_warn_unused_result;
#else
  bool x_flag_warn_unused_result;
#define flag_warn_unused_result global_options.x_flag_warn_unused_result
#endif
#ifdef GENERATOR_FILE
extern bool in_lto_p;
#else
  bool x_in_lto_p;
#define in_lto_p global_options.x_in_lto_p
#endif
#ifdef GENERATOR_FILE
extern bool use_gnu_debug_info_extensions;
#else
  bool x_use_gnu_debug_info_extensions;
#define use_gnu_debug_info_extensions global_options.x_use_gnu_debug_info_extensions
#endif
#ifdef GENERATOR_FILE
extern bool warn_frame_larger_than;
#else
  bool x_warn_frame_larger_than;
#define warn_frame_larger_than global_options.x_warn_frame_larger_than
#endif
#ifdef GENERATOR_FILE
extern bool warn_larger_than;
#else
  bool x_warn_larger_than;
#define warn_larger_than global_options.x_warn_larger_than
#endif
#ifdef GENERATOR_FILE
extern char *help_enum_printed;
#else
  char * x_help_enum_printed;
#define help_enum_printed global_options.x_help_enum_printed
#endif
#ifdef GENERATOR_FILE
extern char *help_printed;
#else
  char * x_help_printed;
#define help_printed global_options.x_help_printed
#endif
#ifdef GENERATOR_FILE
extern const char *main_input_basename;
#else
  const char * x_main_input_basename;
#define main_input_basename global_options.x_main_input_basename
#endif
#ifdef GENERATOR_FILE
extern const char *main_input_filename;
#else
  const char * x_main_input_filename;
#define main_input_filename global_options.x_main_input_filename
#endif
#ifdef GENERATOR_FILE
extern enum debug_info_levels debug_info_level;
#else
  enum debug_info_levels x_debug_info_level;
#define debug_info_level global_options.x_debug_info_level
#endif
#ifdef GENERATOR_FILE
extern enum debug_info_type write_symbols;
#else
  enum debug_info_type x_write_symbols;
#define write_symbols global_options.x_write_symbols
#endif
#ifdef GENERATOR_FILE
extern enum debug_struct_file debug_struct_generic[DINFO_USAGE_NUM_ENUMS];
#else
  enum debug_struct_file x_debug_struct_generic[DINFO_USAGE_NUM_ENUMS];
#define debug_struct_generic global_options.x_debug_struct_generic
#endif
#ifdef GENERATOR_FILE
extern enum debug_struct_file debug_struct_ordinary[DINFO_USAGE_NUM_ENUMS];
#else
  enum debug_struct_file x_debug_struct_ordinary[DINFO_USAGE_NUM_ENUMS];
#define debug_struct_ordinary global_options.x_debug_struct_ordinary
#endif
#ifdef GENERATOR_FILE
extern enum dwarf_gnat_encodings gnat_encodings;
#else
  enum dwarf_gnat_encodings x_gnat_encodings;
#define gnat_encodings global_options.x_gnat_encodings
#endif
#ifdef GENERATOR_FILE
extern enum stack_check_type flag_stack_check;
#else
  enum stack_check_type x_flag_stack_check;
#define flag_stack_check global_options.x_flag_stack_check
#endif
#ifdef GENERATOR_FILE
extern int *param_values;
#else
  int * x_param_values;
#define param_values global_options.x_param_values
#endif
#ifdef GENERATOR_FILE
extern int flag_complex_method;
#else
  int x_flag_complex_method;
#define flag_complex_method global_options.x_flag_complex_method
#endif
#ifdef GENERATOR_FILE
extern int flag_debug_asm;
#else
  int x_flag_debug_asm;
#define flag_debug_asm global_options.x_flag_debug_asm
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_rtl_in_asm;
#else
  int x_flag_dump_rtl_in_asm;
#define flag_dump_rtl_in_asm global_options.x_flag_dump_rtl_in_asm
#endif
#ifdef GENERATOR_FILE
extern int flag_evaluation_order;
#else
  int x_flag_evaluation_order;
#define flag_evaluation_order global_options.x_flag_evaluation_order
#endif
#ifdef GENERATOR_FILE
extern int flag_gen_aux_info;
#else
  int x_flag_gen_aux_info;
#define flag_gen_aux_info global_options.x_flag_gen_aux_info
#endif
#ifdef GENERATOR_FILE
extern int flag_generate_lto;
#else
  int x_flag_generate_lto;
#define flag_generate_lto global_options.x_flag_generate_lto
#endif
#ifdef GENERATOR_FILE
extern int flag_generate_offload;
#else
  int x_flag_generate_offload;
#define flag_generate_offload global_options.x_flag_generate_offload
#endif
#ifdef GENERATOR_FILE
extern int flag_incremental_link;
#else
  int x_flag_incremental_link;
#define flag_incremental_link global_options.x_flag_incremental_link
#endif
#ifdef GENERATOR_FILE
extern int flag_print_asm_name;
#else
  int x_flag_print_asm_name;
#define flag_print_asm_name global_options.x_flag_print_asm_name
#endif
#ifdef GENERATOR_FILE
extern int flag_shlib;
#else
  int x_flag_shlib;
#define flag_shlib global_options.x_flag_shlib
#endif
#ifdef GENERATOR_FILE
extern int main_input_baselength;
#else
  int x_main_input_baselength;
#define main_input_baselength global_options.x_main_input_baselength
#endif
#ifdef GENERATOR_FILE
extern int optimize;
#else
  int x_optimize;
#define optimize global_options.x_optimize
#endif
#ifdef GENERATOR_FILE
extern int optimize_debug;
#else
  int x_optimize_debug;
#define optimize_debug global_options.x_optimize_debug
#endif
#ifdef GENERATOR_FILE
extern int optimize_fast;
#else
  int x_optimize_fast;
#define optimize_fast global_options.x_optimize_fast
#endif
#ifdef GENERATOR_FILE
extern int optimize_size;
#else
  int x_optimize_size;
#define optimize_size global_options.x_optimize_size
#endif
#ifdef GENERATOR_FILE
extern int rtl_dump_and_exit;
#else
  int x_rtl_dump_and_exit;
#define rtl_dump_and_exit global_options.x_rtl_dump_and_exit
#endif
#ifdef GENERATOR_FILE
extern int target_flags;
#else
  int x_target_flags;
#define target_flags global_options.x_target_flags
#endif
#ifdef GENERATOR_FILE
extern unsigned int flag_sanitize;
#else
  unsigned int x_flag_sanitize;
#define flag_sanitize global_options.x_flag_sanitize
#endif
#ifdef GENERATOR_FILE
extern unsigned int flag_sanitize_recover;
#else
  unsigned int x_flag_sanitize_recover;
#define flag_sanitize_recover global_options.x_flag_sanitize_recover
#endif
#ifdef GENERATOR_FILE
extern unsigned int help_columns;
#else
  unsigned int x_help_columns;
#define help_columns global_options.x_help_columns
#endif
#ifdef GENERATOR_FILE
extern unsigned int initial_max_fld_align;
#else
  unsigned int x_initial_max_fld_align;
#define initial_max_fld_align global_options.x_initial_max_fld_align
#endif
#ifdef GENERATOR_FILE
extern void *flag_instrument_functions_exclude_files;
#else
  void * x_flag_instrument_functions_exclude_files;
#define flag_instrument_functions_exclude_files global_options.x_flag_instrument_functions_exclude_files
#endif
#ifdef GENERATOR_FILE
extern void *flag_instrument_functions_exclude_functions;
#else
  void * x_flag_instrument_functions_exclude_functions;
#define flag_instrument_functions_exclude_functions global_options.x_flag_instrument_functions_exclude_functions
#endif
#ifdef GENERATOR_FILE
extern int help_flag;
#else
  int x_help_flag;
#define help_flag global_options.x_help_flag
#endif
#ifdef GENERATOR_FILE
extern int no_sysroot_suffix;
#else
  int x_no_sysroot_suffix;
#define no_sysroot_suffix global_options.x_no_sysroot_suffix
#endif
#ifdef GENERATOR_FILE
extern int flag_preprocess_only;
#else
  int x_flag_preprocess_only;
#define flag_preprocess_only global_options.x_flag_preprocess_only
#endif
#ifdef GENERATOR_FILE
extern int warn_abi;
#else
  int x_warn_abi;
#define warn_abi global_options.x_warn_abi
#endif
#ifdef GENERATOR_FILE
extern int warn_abi_tag;
#else
  int x_warn_abi_tag;
#define warn_abi_tag global_options.x_warn_abi_tag
#endif
#ifdef GENERATOR_FILE
extern int warn_address;
#else
  int x_warn_address;
#define warn_address global_options.x_warn_address
#endif
#ifdef GENERATOR_FILE
extern int warn_aggregate_return;
#else
  int x_warn_aggregate_return;
#define warn_aggregate_return global_options.x_warn_aggregate_return
#endif
#ifdef GENERATOR_FILE
extern int warn_aggressive_loop_optimizations;
#else
  int x_warn_aggressive_loop_optimizations;
#define warn_aggressive_loop_optimizations global_options.x_warn_aggressive_loop_optimizations
#endif
#ifdef GENERATOR_FILE
extern int warn_aliasing;
#else
  int x_warn_aliasing;
#define warn_aliasing global_options.x_warn_aliasing
#endif
#ifdef GENERATOR_FILE
extern int warn_align_commons;
#else
  int x_warn_align_commons;
#define warn_align_commons global_options.x_warn_align_commons
#endif
#ifdef GENERATOR_FILE
extern int warn_ampersand;
#else
  int x_warn_ampersand;
#define warn_ampersand global_options.x_warn_ampersand
#endif
#ifdef GENERATOR_FILE
extern int warn_array_bounds;
#else
  int x_warn_array_bounds;
#define warn_array_bounds global_options.x_warn_array_bounds
#endif
#ifdef GENERATOR_FILE
extern int warn_array_temporaries;
#else
  int x_warn_array_temporaries;
#define warn_array_temporaries global_options.x_warn_array_temporaries
#endif
#ifdef GENERATOR_FILE
extern int warn_assign_intercept;
#else
  int x_warn_assign_intercept;
#define warn_assign_intercept global_options.x_warn_assign_intercept
#endif
#ifdef GENERATOR_FILE
extern int warn_attributes;
#else
  int x_warn_attributes;
#define warn_attributes global_options.x_warn_attributes
#endif
#ifdef GENERATOR_FILE
extern int warn_bad_function_cast;
#else
  int x_warn_bad_function_cast;
#define warn_bad_function_cast global_options.x_warn_bad_function_cast
#endif
#ifdef GENERATOR_FILE
extern int warn_bool_compare;
#else
  int x_warn_bool_compare;
#define warn_bool_compare global_options.x_warn_bool_compare
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_builtin_macro_redefined;
#else
  int x_cpp_warn_builtin_macro_redefined;
#define cpp_warn_builtin_macro_redefined global_options.x_cpp_warn_builtin_macro_redefined
#endif
#ifdef GENERATOR_FILE
extern int warn_cxx_compat;
#else
  int x_warn_cxx_compat;
#define warn_cxx_compat global_options.x_warn_cxx_compat
#endif
#ifdef GENERATOR_FILE
extern int warn_cxx11_compat;
#else
  int x_warn_cxx11_compat;
#define warn_cxx11_compat global_options.x_warn_cxx11_compat
#endif
#ifdef GENERATOR_FILE
extern int warn_cxx14_compat;
#else
  int x_warn_cxx14_compat;
#define warn_cxx14_compat global_options.x_warn_cxx14_compat
#endif
#ifdef GENERATOR_FILE
extern int warn_c_binding_type;
#else
  int x_warn_c_binding_type;
#define warn_c_binding_type global_options.x_warn_c_binding_type
#endif
#ifdef GENERATOR_FILE
extern int warn_c90_c99_compat;
#else
  int x_warn_c90_c99_compat;
#define warn_c90_c99_compat global_options.x_warn_c90_c99_compat
#endif
#ifdef GENERATOR_FILE
extern int warn_c99_c11_compat;
#else
  int x_warn_c99_c11_compat;
#define warn_c99_c11_compat global_options.x_warn_c99_c11_compat
#endif
#ifdef GENERATOR_FILE
extern int warn_cast_align;
#else
  int x_warn_cast_align;
#define warn_cast_align global_options.x_warn_cast_align
#endif
#ifdef GENERATOR_FILE
extern int warn_cast_qual;
#else
  int x_warn_cast_qual;
#define warn_cast_qual global_options.x_warn_cast_qual
#endif
#ifdef GENERATOR_FILE
extern int warn_char_subscripts;
#else
  int x_warn_char_subscripts;
#define warn_char_subscripts global_options.x_warn_char_subscripts
#endif
#ifdef GENERATOR_FILE
extern int warn_character_truncation;
#else
  int x_warn_character_truncation;
#define warn_character_truncation global_options.x_warn_character_truncation
#endif
#ifdef GENERATOR_FILE
extern int warn_chkp;
#else
  int x_warn_chkp;
#define warn_chkp global_options.x_warn_chkp
#endif
#ifdef GENERATOR_FILE
extern int warn_clobbered;
#else
  int x_warn_clobbered;
#define warn_clobbered global_options.x_warn_clobbered
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_comment;
#else
  int x_cpp_warn_comment;
#define cpp_warn_comment global_options.x_cpp_warn_comment
#endif
#ifdef GENERATOR_FILE
extern int warn_compare_reals;
#else
  int x_warn_compare_reals;
#define warn_compare_reals global_options.x_warn_compare_reals
#endif
#ifdef GENERATOR_FILE
extern int warn_conditionally_supported;
#else
  int x_warn_conditionally_supported;
#define warn_conditionally_supported global_options.x_warn_conditionally_supported
#endif
#ifdef GENERATOR_FILE
extern int warn_conversion;
#else
  int x_warn_conversion;
#define warn_conversion global_options.x_warn_conversion
#endif
#ifdef GENERATOR_FILE
extern int warn_conversion_extra;
#else
  int x_warn_conversion_extra;
#define warn_conversion_extra global_options.x_warn_conversion_extra
#endif
#ifdef GENERATOR_FILE
extern int warn_conversion_null;
#else
  int x_warn_conversion_null;
#define warn_conversion_null global_options.x_warn_conversion_null
#endif
#ifdef GENERATOR_FILE
extern int warn_coverage_mismatch;
#else
  int x_warn_coverage_mismatch;
#define warn_coverage_mismatch global_options.x_warn_coverage_mismatch
#endif
#ifdef GENERATOR_FILE
extern int warn_cpp;
#else
  int x_warn_cpp;
#define warn_cpp global_options.x_warn_cpp
#endif
#ifdef GENERATOR_FILE
extern int warn_ctor_dtor_privacy;
#else
  int x_warn_ctor_dtor_privacy;
#define warn_ctor_dtor_privacy global_options.x_warn_ctor_dtor_privacy
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_date_time;
#else
  int x_cpp_warn_date_time;
#define cpp_warn_date_time global_options.x_cpp_warn_date_time
#endif
#ifdef GENERATOR_FILE
extern int warn_declaration_after_statement;
#else
  int x_warn_declaration_after_statement;
#define warn_declaration_after_statement global_options.x_warn_declaration_after_statement
#endif
#ifdef GENERATOR_FILE
extern int warn_delete_incomplete;
#else
  int x_warn_delete_incomplete;
#define warn_delete_incomplete global_options.x_warn_delete_incomplete
#endif
#ifdef GENERATOR_FILE
extern int warn_delnonvdtor;
#else
  int x_warn_delnonvdtor;
#define warn_delnonvdtor global_options.x_warn_delnonvdtor
#endif
#ifdef GENERATOR_FILE
extern int warn_deprecated;
#else
  int x_warn_deprecated;
#define warn_deprecated global_options.x_warn_deprecated
#endif
#ifdef GENERATOR_FILE
extern int warn_deprecated_decl;
#else
  int x_warn_deprecated_decl;
#define warn_deprecated_decl global_options.x_warn_deprecated_decl
#endif
#ifdef GENERATOR_FILE
extern int warn_designated_init;
#else
  int x_warn_designated_init;
#define warn_designated_init global_options.x_warn_designated_init
#endif
#ifdef GENERATOR_FILE
extern int warn_disabled_optimization;
#else
  int x_warn_disabled_optimization;
#define warn_disabled_optimization global_options.x_warn_disabled_optimization
#endif
#ifdef GENERATOR_FILE
extern int warn_discarded_array_qualifiers;
#else
  int x_warn_discarded_array_qualifiers;
#define warn_discarded_array_qualifiers global_options.x_warn_discarded_array_qualifiers
#endif
#ifdef GENERATOR_FILE
extern int warn_discarded_qualifiers;
#else
  int x_warn_discarded_qualifiers;
#define warn_discarded_qualifiers global_options.x_warn_discarded_qualifiers
#endif
#ifdef GENERATOR_FILE
extern int warn_div_by_zero;
#else
  int x_warn_div_by_zero;
#define warn_div_by_zero global_options.x_warn_div_by_zero
#endif
#ifdef GENERATOR_FILE
extern int warn_double_promotion;
#else
  int x_warn_double_promotion;
#define warn_double_promotion global_options.x_warn_double_promotion
#endif
#ifdef GENERATOR_FILE
extern int warn_duplicated_cond;
#else
  int x_warn_duplicated_cond;
#define warn_duplicated_cond global_options.x_warn_duplicated_cond
#endif
#ifdef GENERATOR_FILE
extern int warn_ecpp;
#else
  int x_warn_ecpp;
#define warn_ecpp global_options.x_warn_ecpp
#endif
#ifdef GENERATOR_FILE
extern int warn_empty_body;
#else
  int x_warn_empty_body;
#define warn_empty_body global_options.x_warn_empty_body
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_endif_labels;
#else
  int x_cpp_warn_endif_labels;
#define cpp_warn_endif_labels global_options.x_cpp_warn_endif_labels
#endif
#ifdef GENERATOR_FILE
extern int warn_enum_compare;
#else
  int x_warn_enum_compare;
#define warn_enum_compare global_options.x_warn_enum_compare
#endif
#ifdef GENERATOR_FILE
extern int warnings_are_errors;
#else
  int x_warnings_are_errors;
#define warnings_are_errors global_options.x_warnings_are_errors
#endif
#ifdef GENERATOR_FILE
extern int extra_warnings;
#else
  int x_extra_warnings;
#define extra_warnings global_options.x_extra_warnings
#endif
#ifdef GENERATOR_FILE
extern int flag_extraneous_semicolon;
#else
  int x_flag_extraneous_semicolon;
#define flag_extraneous_semicolon global_options.x_flag_extraneous_semicolon
#endif
#ifdef GENERATOR_FILE
extern int flag_fatal_errors;
#else
  int x_flag_fatal_errors;
#define flag_fatal_errors global_options.x_flag_fatal_errors
#endif
#ifdef GENERATOR_FILE
extern int warn_float_conversion;
#else
  int x_warn_float_conversion;
#define warn_float_conversion global_options.x_warn_float_conversion
#endif
#ifdef GENERATOR_FILE
extern int warn_float_equal;
#else
  int x_warn_float_equal;
#define warn_float_equal global_options.x_warn_float_equal
#endif
#ifdef GENERATOR_FILE
extern int warn_format_contains_nul;
#else
  int x_warn_format_contains_nul;
#define warn_format_contains_nul global_options.x_warn_format_contains_nul
#endif
#ifdef GENERATOR_FILE
extern int warn_format_extra_args;
#else
  int x_warn_format_extra_args;
#define warn_format_extra_args global_options.x_warn_format_extra_args
#endif
#ifdef GENERATOR_FILE
extern int warn_format_nonliteral;
#else
  int x_warn_format_nonliteral;
#define warn_format_nonliteral global_options.x_warn_format_nonliteral
#endif
#ifdef GENERATOR_FILE
extern int warn_format_security;
#else
  int x_warn_format_security;
#define warn_format_security global_options.x_warn_format_security
#endif
#ifdef GENERATOR_FILE
extern int warn_format_signedness;
#else
  int x_warn_format_signedness;
#define warn_format_signedness global_options.x_warn_format_signedness
#endif
#ifdef GENERATOR_FILE
extern int warn_format_y2k;
#else
  int x_warn_format_y2k;
#define warn_format_y2k global_options.x_warn_format_y2k
#endif
#ifdef GENERATOR_FILE
extern int warn_format_zero_length;
#else
  int x_warn_format_zero_length;
#define warn_format_zero_length global_options.x_warn_format_zero_length
#endif
#ifdef GENERATOR_FILE
extern int warn_format;
#else
  int x_warn_format;
#define warn_format global_options.x_warn_format
#endif
#ifdef GENERATOR_FILE
extern int warn_frame_address;
#else
  int x_warn_frame_address;
#define warn_frame_address global_options.x_warn_frame_address
#endif
#ifdef GENERATOR_FILE
extern int warn_free_nonheap_object;
#else
  int x_warn_free_nonheap_object;
#define warn_free_nonheap_object global_options.x_warn_free_nonheap_object
#endif
#ifdef GENERATOR_FILE
extern int warn_function_elimination;
#else
  int x_warn_function_elimination;
#define warn_function_elimination global_options.x_warn_function_elimination
#endif
#ifdef GENERATOR_FILE
extern int warn_hsa;
#else
  int x_warn_hsa;
#define warn_hsa global_options.x_warn_hsa
#endif
#ifdef GENERATOR_FILE
extern int warn_ignored_attributes;
#else
  int x_warn_ignored_attributes;
#define warn_ignored_attributes global_options.x_warn_ignored_attributes
#endif
#ifdef GENERATOR_FILE
extern int warn_ignored_qualifiers;
#else
  int x_warn_ignored_qualifiers;
#define warn_ignored_qualifiers global_options.x_warn_ignored_qualifiers
#endif
#ifdef GENERATOR_FILE
extern int warn_implicit;
#else
  int x_warn_implicit;
#define warn_implicit global_options.x_warn_implicit
#endif
#ifdef GENERATOR_FILE
extern int warn_implicit_function_declaration;
#else
  int x_warn_implicit_function_declaration;
#define warn_implicit_function_declaration global_options.x_warn_implicit_function_declaration
#endif
#ifdef GENERATOR_FILE
extern int warn_implicit_int;
#else
  int x_warn_implicit_int;
#define warn_implicit_int global_options.x_warn_implicit_int
#endif
#ifdef GENERATOR_FILE
extern int warn_implicit_interface;
#else
  int x_warn_implicit_interface;
#define warn_implicit_interface global_options.x_warn_implicit_interface
#endif
#ifdef GENERATOR_FILE
extern int warn_implicit_procedure;
#else
  int x_warn_implicit_procedure;
#define warn_implicit_procedure global_options.x_warn_implicit_procedure
#endif
#ifdef GENERATOR_FILE
extern int warn_incompatible_pointer_types;
#else
  int x_warn_incompatible_pointer_types;
#define warn_incompatible_pointer_types global_options.x_warn_incompatible_pointer_types
#endif
#ifdef GENERATOR_FILE
extern int warn_inh_var_ctor;
#else
  int x_warn_inh_var_ctor;
#define warn_inh_var_ctor global_options.x_warn_inh_var_ctor
#endif
#ifdef GENERATOR_FILE
extern int warn_init_self;
#else
  int x_warn_init_self;
#define warn_init_self global_options.x_warn_init_self
#endif
#ifdef GENERATOR_FILE
extern int warn_inline;
#else
  int x_warn_inline;
#define warn_inline global_options.x_warn_inline
#endif
#ifdef GENERATOR_FILE
extern int warn_int_conversion;
#else
  int x_warn_int_conversion;
#define warn_int_conversion global_options.x_warn_int_conversion
#endif
#ifdef GENERATOR_FILE
extern int warn_int_to_pointer_cast;
#else
  int x_warn_int_to_pointer_cast;
#define warn_int_to_pointer_cast global_options.x_warn_int_to_pointer_cast
#endif
#ifdef GENERATOR_FILE
extern int warn_integer_division;
#else
  int x_warn_integer_division;
#define warn_integer_division global_options.x_warn_integer_division
#endif
#ifdef GENERATOR_FILE
extern int warn_intrinsic_shadow;
#else
  int x_warn_intrinsic_shadow;
#define warn_intrinsic_shadow global_options.x_warn_intrinsic_shadow
#endif
#ifdef GENERATOR_FILE
extern int warn_intrinsics_std;
#else
  int x_warn_intrinsics_std;
#define warn_intrinsics_std global_options.x_warn_intrinsics_std
#endif
#ifdef GENERATOR_FILE
extern int warn_invalid_memory_model;
#else
  int x_warn_invalid_memory_model;
#define warn_invalid_memory_model global_options.x_warn_invalid_memory_model
#endif
#ifdef GENERATOR_FILE
extern int warn_invalid_offsetof;
#else
  int x_warn_invalid_offsetof;
#define warn_invalid_offsetof global_options.x_warn_invalid_offsetof
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_invalid_pch;
#else
  int x_cpp_warn_invalid_pch;
#define cpp_warn_invalid_pch global_options.x_cpp_warn_invalid_pch
#endif
#ifdef GENERATOR_FILE
extern int warn_jump_misses_init;
#else
  int x_warn_jump_misses_init;
#define warn_jump_misses_init global_options.x_warn_jump_misses_init
#endif
#ifdef GENERATOR_FILE
extern int warn_line_truncation;
#else
  int x_warn_line_truncation;
#define warn_line_truncation global_options.x_warn_line_truncation
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_literal_suffix;
#else
  int x_cpp_warn_literal_suffix;
#define cpp_warn_literal_suffix global_options.x_cpp_warn_literal_suffix
#endif
#ifdef GENERATOR_FILE
extern int warn_logical_not_paren;
#else
  int x_warn_logical_not_paren;
#define warn_logical_not_paren global_options.x_warn_logical_not_paren
#endif
#ifdef GENERATOR_FILE
extern int warn_logical_op;
#else
  int x_warn_logical_op;
#define warn_logical_op global_options.x_warn_logical_op
#endif
#ifdef GENERATOR_FILE
extern int warn_long_long;
#else
  int x_warn_long_long;
#define warn_long_long global_options.x_warn_long_long
#endif
#ifdef GENERATOR_FILE
extern int warn_lto_type_mismatch;
#else
  int x_warn_lto_type_mismatch;
#define warn_lto_type_mismatch global_options.x_warn_lto_type_mismatch
#endif
#ifdef GENERATOR_FILE
extern int warn_main;
#else
  int x_warn_main;
#define warn_main global_options.x_warn_main
#endif
#ifdef GENERATOR_FILE
extern int warn_maybe_uninitialized;
#else
  int x_warn_maybe_uninitialized;
#define warn_maybe_uninitialized global_options.x_warn_maybe_uninitialized
#endif
#ifdef GENERATOR_FILE
extern int warn_memset_transposed_args;
#else
  int x_warn_memset_transposed_args;
#define warn_memset_transposed_args global_options.x_warn_memset_transposed_args
#endif
#ifdef GENERATOR_FILE
extern int warn_misleading_indentation;
#else
  int x_warn_misleading_indentation;
#define warn_misleading_indentation global_options.x_warn_misleading_indentation
#endif
#ifdef GENERATOR_FILE
extern int warn_missing_braces;
#else
  int x_warn_missing_braces;
#define warn_missing_braces global_options.x_warn_missing_braces
#endif
#ifdef GENERATOR_FILE
extern int warn_missing_declarations;
#else
  int x_warn_missing_declarations;
#define warn_missing_declarations global_options.x_warn_missing_declarations
#endif
#ifdef GENERATOR_FILE
extern int warn_missing_field_initializers;
#else
  int x_warn_missing_field_initializers;
#define warn_missing_field_initializers global_options.x_warn_missing_field_initializers
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_missing_include_dirs;
#else
  int x_cpp_warn_missing_include_dirs;
#define cpp_warn_missing_include_dirs global_options.x_cpp_warn_missing_include_dirs
#endif
#ifdef GENERATOR_FILE
extern int warn_missing_parameter_type;
#else
  int x_warn_missing_parameter_type;
#define warn_missing_parameter_type global_options.x_warn_missing_parameter_type
#endif
#ifdef GENERATOR_FILE
extern int warn_missing_prototypes;
#else
  int x_warn_missing_prototypes;
#define warn_missing_prototypes global_options.x_warn_missing_prototypes
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_multichar;
#else
  int x_cpp_warn_multichar;
#define cpp_warn_multichar global_options.x_cpp_warn_multichar
#endif
#ifdef GENERATOR_FILE
extern int warn_multiple_inheritance;
#else
  int x_warn_multiple_inheritance;
#define warn_multiple_inheritance global_options.x_warn_multiple_inheritance
#endif
#ifdef GENERATOR_FILE
extern int warn_namespaces;
#else
  int x_warn_namespaces;
#define warn_namespaces global_options.x_warn_namespaces
#endif
#ifdef GENERATOR_FILE
extern int warn_narrowing;
#else
  int x_warn_narrowing;
#define warn_narrowing global_options.x_warn_narrowing
#endif
#ifdef GENERATOR_FILE
extern int warn_nested_externs;
#else
  int x_warn_nested_externs;
#define warn_nested_externs global_options.x_warn_nested_externs
#endif
#ifdef GENERATOR_FILE
extern int warn_noexcept;
#else
  int x_warn_noexcept;
#define warn_noexcept global_options.x_warn_noexcept
#endif
#ifdef GENERATOR_FILE
extern int warn_nontemplate_friend;
#else
  int x_warn_nontemplate_friend;
#define warn_nontemplate_friend global_options.x_warn_nontemplate_friend
#endif
#ifdef GENERATOR_FILE
extern int warn_nonvdtor;
#else
  int x_warn_nonvdtor;
#define warn_nonvdtor global_options.x_warn_nonvdtor
#endif
#ifdef GENERATOR_FILE
extern int warn_nonnull;
#else
  int x_warn_nonnull;
#define warn_nonnull global_options.x_warn_nonnull
#endif
#ifdef GENERATOR_FILE
extern int warn_nonnull_compare;
#else
  int x_warn_nonnull_compare;
#define warn_nonnull_compare global_options.x_warn_nonnull_compare
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_normalize;
#else
  int x_cpp_warn_normalize;
#define cpp_warn_normalize global_options.x_cpp_warn_normalize
#endif
#ifdef GENERATOR_FILE
extern int warn_null_dereference;
#else
  int x_warn_null_dereference;
#define warn_null_dereference global_options.x_warn_null_dereference
#endif
#ifdef GENERATOR_FILE
extern int warn_odr_violations;
#else
  int x_warn_odr_violations;
#define warn_odr_violations global_options.x_warn_odr_violations
#endif
#ifdef GENERATOR_FILE
extern int warn_old_style_cast;
#else
  int x_warn_old_style_cast;
#define warn_old_style_cast global_options.x_warn_old_style_cast
#endif
#ifdef GENERATOR_FILE
extern int warn_old_style_declaration;
#else
  int x_warn_old_style_declaration;
#define warn_old_style_declaration global_options.x_warn_old_style_declaration
#endif
#ifdef GENERATOR_FILE
extern int warn_old_style_definition;
#else
  int x_warn_old_style_definition;
#define warn_old_style_definition global_options.x_warn_old_style_definition
#endif
#ifdef GENERATOR_FILE
extern int warn_openmp_simd;
#else
  int x_warn_openmp_simd;
#define warn_openmp_simd global_options.x_warn_openmp_simd
#endif
#ifdef GENERATOR_FILE
extern int flag_newer;
#else
  int x_flag_newer;
#define flag_newer global_options.x_flag_newer
#endif
#ifdef GENERATOR_FILE
extern int warn_overflow;
#else
  int x_warn_overflow;
#define warn_overflow global_options.x_warn_overflow
#endif
#ifdef GENERATOR_FILE
extern int warn_overlength_strings;
#else
  int x_warn_overlength_strings;
#define warn_overlength_strings global_options.x_warn_overlength_strings
#endif
#ifdef GENERATOR_FILE
extern int warn_overloaded_virtual;
#else
  int x_warn_overloaded_virtual;
#define warn_overloaded_virtual global_options.x_warn_overloaded_virtual
#endif
#ifdef GENERATOR_FILE
extern int warn_override_init;
#else
  int x_warn_override_init;
#define warn_override_init global_options.x_warn_override_init
#endif
#ifdef GENERATOR_FILE
extern int warn_override_init_side_effects;
#else
  int x_warn_override_init_side_effects;
#define warn_override_init_side_effects global_options.x_warn_override_init_side_effects
#endif
#ifdef GENERATOR_FILE
extern int warn_packed;
#else
  int x_warn_packed;
#define warn_packed global_options.x_warn_packed
#endif
#ifdef GENERATOR_FILE
extern int warn_packed_bitfield_compat;
#else
  int x_warn_packed_bitfield_compat;
#define warn_packed_bitfield_compat global_options.x_warn_packed_bitfield_compat
#endif
#ifdef GENERATOR_FILE
extern int warn_padded;
#else
  int x_warn_padded;
#define warn_padded global_options.x_warn_padded
#endif
#ifdef GENERATOR_FILE
extern int warn_parentheses;
#else
  int x_warn_parentheses;
#define warn_parentheses global_options.x_warn_parentheses
#endif
#ifdef GENERATOR_FILE
extern int pedantic;
#else
  int x_pedantic;
#define pedantic global_options.x_pedantic
#endif
#ifdef GENERATOR_FILE
extern int warn_placement_new;
#else
  int x_warn_placement_new;
#define warn_placement_new global_options.x_warn_placement_new
#endif
#ifdef GENERATOR_FILE
extern int warn_pmf2ptr;
#else
  int x_warn_pmf2ptr;
#define warn_pmf2ptr global_options.x_warn_pmf2ptr
#endif
#ifdef GENERATOR_FILE
extern int warn_pointer_arith;
#else
  int x_warn_pointer_arith;
#define warn_pointer_arith global_options.x_warn_pointer_arith
#endif
#ifdef GENERATOR_FILE
extern int warn_pointer_sign;
#else
  int x_warn_pointer_sign;
#define warn_pointer_sign global_options.x_warn_pointer_sign
#endif
#ifdef GENERATOR_FILE
extern int warn_pointer_to_int_cast;
#else
  int x_warn_pointer_to_int_cast;
#define warn_pointer_to_int_cast global_options.x_warn_pointer_to_int_cast
#endif
#ifdef GENERATOR_FILE
extern int warn_pragmas;
#else
  int x_warn_pragmas;
#define warn_pragmas global_options.x_warn_pragmas
#endif
#ifdef GENERATOR_FILE
extern int warn_property_assign_default;
#else
  int x_warn_property_assign_default;
#define warn_property_assign_default global_options.x_warn_property_assign_default
#endif
#ifdef GENERATOR_FILE
extern int warn_protocol;
#else
  int x_warn_protocol;
#define warn_protocol global_options.x_warn_protocol
#endif
#ifdef GENERATOR_FILE
extern int warn_psabi;
#else
  int x_warn_psabi;
#define warn_psabi global_options.x_warn_psabi
#endif
#ifdef GENERATOR_FILE
extern int warn_real_q_constant;
#else
  int x_warn_real_q_constant;
#define warn_real_q_constant global_options.x_warn_real_q_constant
#endif
#ifdef GENERATOR_FILE
extern int warn_realloc_lhs;
#else
  int x_warn_realloc_lhs;
#define warn_realloc_lhs global_options.x_warn_realloc_lhs
#endif
#ifdef GENERATOR_FILE
extern int warn_realloc_lhs_all;
#else
  int x_warn_realloc_lhs_all;
#define warn_realloc_lhs_all global_options.x_warn_realloc_lhs_all
#endif
#ifdef GENERATOR_FILE
extern int warn_redundant_decls;
#else
  int x_warn_redundant_decls;
#define warn_redundant_decls global_options.x_warn_redundant_decls
#endif
#ifdef GENERATOR_FILE
extern int flag_redundant;
#else
  int x_flag_redundant;
#define flag_redundant global_options.x_flag_redundant
#endif
#ifdef GENERATOR_FILE
extern int warn_reorder;
#else
  int x_warn_reorder;
#define warn_reorder global_options.x_warn_reorder
#endif
#ifdef GENERATOR_FILE
extern int warn_return_local_addr;
#else
  int x_warn_return_local_addr;
#define warn_return_local_addr global_options.x_warn_return_local_addr
#endif
#ifdef GENERATOR_FILE
extern int warn_return_type;
#else
  int x_warn_return_type;
#define warn_return_type global_options.x_warn_return_type
#endif
#ifdef GENERATOR_FILE
extern int warn_selector;
#else
  int x_warn_selector;
#define warn_selector global_options.x_warn_selector
#endif
#ifdef GENERATOR_FILE
extern int warn_sequence_point;
#else
  int x_warn_sequence_point;
#define warn_sequence_point global_options.x_warn_sequence_point
#endif
#ifdef GENERATOR_FILE
extern int warn_shadow;
#else
  int x_warn_shadow;
#define warn_shadow global_options.x_warn_shadow
#endif
#ifdef GENERATOR_FILE
extern int warn_shadow_ivar;
#else
  int x_warn_shadow_ivar;
#define warn_shadow_ivar global_options.x_warn_shadow_ivar
#endif
#ifdef GENERATOR_FILE
extern int warn_shift_count_negative;
#else
  int x_warn_shift_count_negative;
#define warn_shift_count_negative global_options.x_warn_shift_count_negative
#endif
#ifdef GENERATOR_FILE
extern int warn_shift_count_overflow;
#else
  int x_warn_shift_count_overflow;
#define warn_shift_count_overflow global_options.x_warn_shift_count_overflow
#endif
#ifdef GENERATOR_FILE
extern int warn_shift_negative_value;
#else
  int x_warn_shift_negative_value;
#define warn_shift_negative_value global_options.x_warn_shift_negative_value
#endif
#ifdef GENERATOR_FILE
extern int warn_shift_overflow;
#else
  int x_warn_shift_overflow;
#define warn_shift_overflow global_options.x_warn_shift_overflow
#endif
#ifdef GENERATOR_FILE
extern int warn_sign_compare;
#else
  int x_warn_sign_compare;
#define warn_sign_compare global_options.x_warn_sign_compare
#endif
#ifdef GENERATOR_FILE
extern int warn_sign_conversion;
#else
  int x_warn_sign_conversion;
#define warn_sign_conversion global_options.x_warn_sign_conversion
#endif
#ifdef GENERATOR_FILE
extern int warn_sign_promo;
#else
  int x_warn_sign_promo;
#define warn_sign_promo global_options.x_warn_sign_promo
#endif
#ifdef GENERATOR_FILE
extern int warn_sized_deallocation;
#else
  int x_warn_sized_deallocation;
#define warn_sized_deallocation global_options.x_warn_sized_deallocation
#endif
#ifdef GENERATOR_FILE
extern int warn_sizeof_array_argument;
#else
  int x_warn_sizeof_array_argument;
#define warn_sizeof_array_argument global_options.x_warn_sizeof_array_argument
#endif
#ifdef GENERATOR_FILE
extern int warn_sizeof_pointer_memaccess;
#else
  int x_warn_sizeof_pointer_memaccess;
#define warn_sizeof_pointer_memaccess global_options.x_warn_sizeof_pointer_memaccess
#endif
#ifdef GENERATOR_FILE
extern int warn_stack_protect;
#else
  int x_warn_stack_protect;
#define warn_stack_protect global_options.x_warn_stack_protect
#endif
#ifdef GENERATOR_FILE
extern int warn_stack_usage;
#else
  int x_warn_stack_usage;
#define warn_stack_usage global_options.x_warn_stack_usage
#endif
#ifdef GENERATOR_FILE
extern int warn_strict_aliasing;
#else
  int x_warn_strict_aliasing;
#define warn_strict_aliasing global_options.x_warn_strict_aliasing
#endif
#ifdef GENERATOR_FILE
extern int warn_strict_null_sentinel;
#else
  int x_warn_strict_null_sentinel;
#define warn_strict_null_sentinel global_options.x_warn_strict_null_sentinel
#endif
#ifdef GENERATOR_FILE
extern int warn_strict_overflow;
#else
  int x_warn_strict_overflow;
#define warn_strict_overflow global_options.x_warn_strict_overflow
#endif
#ifdef GENERATOR_FILE
extern int warn_strict_prototypes;
#else
  int x_warn_strict_prototypes;
#define warn_strict_prototypes global_options.x_warn_strict_prototypes
#endif
#ifdef GENERATOR_FILE
extern int warn_strict_selector_match;
#else
  int x_warn_strict_selector_match;
#define warn_strict_selector_match global_options.x_warn_strict_selector_match
#endif
#ifdef GENERATOR_FILE
extern int warn_subobject_linkage;
#else
  int x_warn_subobject_linkage;
#define warn_subobject_linkage global_options.x_warn_subobject_linkage
#endif
#ifdef GENERATOR_FILE
extern int warn_suggest_attribute_const;
#else
  int x_warn_suggest_attribute_const;
#define warn_suggest_attribute_const global_options.x_warn_suggest_attribute_const
#endif
#ifdef GENERATOR_FILE
extern int warn_suggest_attribute_format;
#else
  int x_warn_suggest_attribute_format;
#define warn_suggest_attribute_format global_options.x_warn_suggest_attribute_format
#endif
#ifdef GENERATOR_FILE
extern int warn_suggest_attribute_noreturn;
#else
  int x_warn_suggest_attribute_noreturn;
#define warn_suggest_attribute_noreturn global_options.x_warn_suggest_attribute_noreturn
#endif
#ifdef GENERATOR_FILE
extern int warn_suggest_attribute_pure;
#else
  int x_warn_suggest_attribute_pure;
#define warn_suggest_attribute_pure global_options.x_warn_suggest_attribute_pure
#endif
#ifdef GENERATOR_FILE
extern int warn_suggest_final_methods;
#else
  int x_warn_suggest_final_methods;
#define warn_suggest_final_methods global_options.x_warn_suggest_final_methods
#endif
#ifdef GENERATOR_FILE
extern int warn_suggest_final_types;
#else
  int x_warn_suggest_final_types;
#define warn_suggest_final_types global_options.x_warn_suggest_final_types
#endif
#ifdef GENERATOR_FILE
extern int warn_override;
#else
  int x_warn_override;
#define warn_override global_options.x_warn_override
#endif
#ifdef GENERATOR_FILE
extern int warn_surprising;
#else
  int x_warn_surprising;
#define warn_surprising global_options.x_warn_surprising
#endif
#ifdef GENERATOR_FILE
extern int warn_switch;
#else
  int x_warn_switch;
#define warn_switch global_options.x_warn_switch
#endif
#ifdef GENERATOR_FILE
extern int warn_switch_bool;
#else
  int x_warn_switch_bool;
#define warn_switch_bool global_options.x_warn_switch_bool
#endif
#ifdef GENERATOR_FILE
extern int warn_switch_default;
#else
  int x_warn_switch_default;
#define warn_switch_default global_options.x_warn_switch_default
#endif
#ifdef GENERATOR_FILE
extern int warn_switch_enum;
#else
  int x_warn_switch_enum;
#define warn_switch_enum global_options.x_warn_switch_enum
#endif
#ifdef GENERATOR_FILE
extern int warn_sync_nand;
#else
  int x_warn_sync_nand;
#define warn_sync_nand global_options.x_warn_sync_nand
#endif
#ifdef GENERATOR_FILE
extern int warn_synth;
#else
  int x_warn_synth;
#define warn_synth global_options.x_warn_synth
#endif
#ifdef GENERATOR_FILE
extern int warn_system_headers;
#else
  int x_warn_system_headers;
#define warn_system_headers global_options.x_warn_system_headers
#endif
#ifdef GENERATOR_FILE
extern int warn_tabs;
#else
  int x_warn_tabs;
#define warn_tabs global_options.x_warn_tabs
#endif
#ifdef GENERATOR_FILE
extern int warn_target_lifetime;
#else
  int x_warn_target_lifetime;
#define warn_target_lifetime global_options.x_warn_target_lifetime
#endif
#ifdef GENERATOR_FILE
extern int warn_tautological_compare;
#else
  int x_warn_tautological_compare;
#define warn_tautological_compare global_options.x_warn_tautological_compare
#endif
#ifdef GENERATOR_FILE
extern int warn_templates;
#else
  int x_warn_templates;
#define warn_templates global_options.x_warn_templates
#endif
#ifdef GENERATOR_FILE
extern int warn_terminate;
#else
  int x_warn_terminate;
#define warn_terminate global_options.x_warn_terminate
#endif
#ifdef GENERATOR_FILE
extern int warn_traditional;
#else
  int x_warn_traditional;
#define warn_traditional global_options.x_warn_traditional
#endif
#ifdef GENERATOR_FILE
extern int warn_traditional_conversion;
#else
  int x_warn_traditional_conversion;
#define warn_traditional_conversion global_options.x_warn_traditional_conversion
#endif
#ifdef GENERATOR_FILE
extern int warn_trampolines;
#else
  int x_warn_trampolines;
#define warn_trampolines global_options.x_warn_trampolines
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_trigraphs;
#else
  int x_cpp_warn_trigraphs;
#define cpp_warn_trigraphs global_options.x_cpp_warn_trigraphs
#endif
#ifdef GENERATOR_FILE
extern int warn_type_limits;
#else
  int x_warn_type_limits;
#define warn_type_limits global_options.x_warn_type_limits
#endif
#ifdef GENERATOR_FILE
extern int warn_undeclared_selector;
#else
  int x_warn_undeclared_selector;
#define warn_undeclared_selector global_options.x_warn_undeclared_selector
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_undef;
#else
  int x_cpp_warn_undef;
#define cpp_warn_undef global_options.x_cpp_warn_undef
#endif
#ifdef GENERATOR_FILE
extern int warn_underflow;
#else
  int x_warn_underflow;
#define warn_underflow global_options.x_warn_underflow
#endif
#ifdef GENERATOR_FILE
extern int warn_uninitialized;
#else
  int x_warn_uninitialized;
#define warn_uninitialized global_options.x_warn_uninitialized
#endif
#ifdef GENERATOR_FILE
extern int warn_unknown_pragmas;
#else
  int x_warn_unknown_pragmas;
#define warn_unknown_pragmas global_options.x_warn_unknown_pragmas
#endif
#ifdef GENERATOR_FILE
extern int warn_unsafe_loop_optimizations;
#else
  int x_warn_unsafe_loop_optimizations;
#define warn_unsafe_loop_optimizations global_options.x_warn_unsafe_loop_optimizations
#endif
#ifdef GENERATOR_FILE
extern int warn_unsuffixed_float_constants;
#else
  int x_warn_unsuffixed_float_constants;
#define warn_unsuffixed_float_constants global_options.x_warn_unsuffixed_float_constants
#endif
#ifdef GENERATOR_FILE
extern int warn_unused;
#else
  int x_warn_unused;
#define warn_unused global_options.x_warn_unused
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_but_set_parameter;
#else
  int x_warn_unused_but_set_parameter;
#define warn_unused_but_set_parameter global_options.x_warn_unused_but_set_parameter
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_but_set_variable;
#else
  int x_warn_unused_but_set_variable;
#define warn_unused_but_set_variable global_options.x_warn_unused_but_set_variable
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_const_variable;
#else
  int x_warn_unused_const_variable;
#define warn_unused_const_variable global_options.x_warn_unused_const_variable
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_dummy_argument;
#else
  int x_warn_unused_dummy_argument;
#define warn_unused_dummy_argument global_options.x_warn_unused_dummy_argument
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_function;
#else
  int x_warn_unused_function;
#define warn_unused_function global_options.x_warn_unused_function
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_label;
#else
  int x_warn_unused_label;
#define warn_unused_label global_options.x_warn_unused_label
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_local_typedefs;
#else
  int x_warn_unused_local_typedefs;
#define warn_unused_local_typedefs global_options.x_warn_unused_local_typedefs
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_unused_macros;
#else
  int x_cpp_warn_unused_macros;
#define cpp_warn_unused_macros global_options.x_cpp_warn_unused_macros
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_parameter;
#else
  int x_warn_unused_parameter;
#define warn_unused_parameter global_options.x_warn_unused_parameter
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_result;
#else
  int x_warn_unused_result;
#define warn_unused_result global_options.x_warn_unused_result
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_value;
#else
  int x_warn_unused_value;
#define warn_unused_value global_options.x_warn_unused_value
#endif
#ifdef GENERATOR_FILE
extern int warn_unused_variable;
#else
  int x_warn_unused_variable;
#define warn_unused_variable global_options.x_warn_unused_variable
#endif
#ifdef GENERATOR_FILE
extern int warn_use_without_only;
#else
  int x_warn_use_without_only;
#define warn_use_without_only global_options.x_warn_use_without_only
#endif
#ifdef GENERATOR_FILE
extern int warn_useless_cast;
#else
  int x_warn_useless_cast;
#define warn_useless_cast global_options.x_warn_useless_cast
#endif
#ifdef GENERATOR_FILE
extern int warn_varargs;
#else
  int x_warn_varargs;
#define warn_varargs global_options.x_warn_varargs
#endif
#ifdef GENERATOR_FILE
extern int cpp_warn_variadic_macros;
#else
  int x_cpp_warn_variadic_macros;
#define cpp_warn_variadic_macros global_options.x_cpp_warn_variadic_macros
#endif
#ifdef GENERATOR_FILE
extern int warn_vector_operation_performance;
#else
  int x_warn_vector_operation_performance;
#define warn_vector_operation_performance global_options.x_warn_vector_operation_performance
#endif
#ifdef GENERATOR_FILE
extern int warn_virtual_inheritance;
#else
  int x_warn_virtual_inheritance;
#define warn_virtual_inheritance global_options.x_warn_virtual_inheritance
#endif
#ifdef GENERATOR_FILE
extern int warn_virtual_move_assign;
#else
  int x_warn_virtual_move_assign;
#define warn_virtual_move_assign global_options.x_warn_virtual_move_assign
#endif
#ifdef GENERATOR_FILE
extern int warn_vla;
#else
  int x_warn_vla;
#define warn_vla global_options.x_warn_vla
#endif
#ifdef GENERATOR_FILE
extern int warn_volatile_register_var;
#else
  int x_warn_volatile_register_var;
#define warn_volatile_register_var global_options.x_warn_volatile_register_var
#endif
#ifdef GENERATOR_FILE
extern int warn_write_strings;
#else
  int x_warn_write_strings;
#define warn_write_strings global_options.x_warn_write_strings
#endif
#ifdef GENERATOR_FILE
extern int warn_zero_as_null_pointer_constant;
#else
  int x_warn_zero_as_null_pointer_constant;
#define warn_zero_as_null_pointer_constant global_options.x_warn_zero_as_null_pointer_constant
#endif
#ifdef GENERATOR_FILE
extern int warn_zerotrip;
#else
  int x_warn_zerotrip;
#define warn_zerotrip global_options.x_warn_zerotrip
#endif
#ifdef GENERATOR_FILE
extern const char *aux_info_file_name;
#else
  const char *x_aux_info_file_name;
#define aux_info_file_name global_options.x_aux_info_file_name
#endif
#ifdef GENERATOR_FILE
extern const char *aux_base_name;
#else
  const char *x_aux_base_name;
#define aux_base_name global_options.x_aux_base_name
#endif
#ifdef GENERATOR_FILE
extern const char *dump_base_name;
#else
  const char *x_dump_base_name;
#define dump_base_name global_options.x_dump_base_name
#endif
#ifdef GENERATOR_FILE
extern const char *dump_dir_name;
#else
  const char *x_dump_dir_name;
#define dump_dir_name global_options.x_dump_dir_name
#endif
#ifdef GENERATOR_FILE
extern int flag_pic;
#else
  int x_flag_pic;
#define flag_pic global_options.x_flag_pic
#endif
#ifdef GENERATOR_FILE
extern int flag_pie;
#else
  int x_flag_pie;
#define flag_pie global_options.x_flag_pie
#endif
#ifdef GENERATOR_FILE
extern int flag_abi_compat_version;
#else
  int x_flag_abi_compat_version;
#define flag_abi_compat_version global_options.x_flag_abi_compat_version
#endif
#ifdef GENERATOR_FILE
extern int flag_abi_version;
#else
  int x_flag_abi_version;
#define flag_abi_version global_options.x_flag_abi_version
#endif
#ifdef GENERATOR_FILE
extern int flag_access_control;
#else
  int x_flag_access_control;
#define flag_access_control global_options.x_flag_access_control
#endif
#ifdef GENERATOR_FILE
extern const char *ada_specs_parent;
#else
  const char *x_ada_specs_parent;
#define ada_specs_parent global_options.x_ada_specs_parent
#endif
#ifdef GENERATOR_FILE
extern int flag_aggressive_function_elimination;
#else
  int x_flag_aggressive_function_elimination;
#define flag_aggressive_function_elimination global_options.x_flag_aggressive_function_elimination
#endif
#ifdef GENERATOR_FILE
extern int flag_aggressive_loop_optimizations;
#else
  int x_flag_aggressive_loop_optimizations;
#define flag_aggressive_loop_optimizations global_options.x_flag_aggressive_loop_optimizations
#endif
#ifdef GENERATOR_FILE
extern int flag_align_commons;
#else
  int x_flag_align_commons;
#define flag_align_commons global_options.x_flag_align_commons
#endif
#ifdef GENERATOR_FILE
extern int align_functions;
#else
  int x_align_functions;
#define align_functions global_options.x_align_functions
#endif
#ifdef GENERATOR_FILE
extern int align_jumps;
#else
  int x_align_jumps;
#define align_jumps global_options.x_align_jumps
#endif
#ifdef GENERATOR_FILE
extern int align_labels;
#else
  int x_align_labels;
#define align_labels global_options.x_align_labels
#endif
#ifdef GENERATOR_FILE
extern int align_loops;
#else
  int x_align_loops;
#define align_loops global_options.x_align_loops
#endif
#ifdef GENERATOR_FILE
extern int flag_all_intrinsics;
#else
  int x_flag_all_intrinsics;
#define flag_all_intrinsics global_options.x_flag_all_intrinsics
#endif
#ifdef GENERATOR_FILE
extern int flag_allow_leading_underscore;
#else
  int x_flag_allow_leading_underscore;
#define flag_allow_leading_underscore global_options.x_flag_allow_leading_underscore
#endif
#ifdef GENERATOR_FILE
extern int flag_allow_parameterless_variadic_functions;
#else
  int x_flag_allow_parameterless_variadic_functions;
#define flag_allow_parameterless_variadic_functions global_options.x_flag_allow_parameterless_variadic_functions
#endif
#ifdef GENERATOR_FILE
extern void *common_deferred_options;
#else
  void *x_common_deferred_options;
#define common_deferred_options global_options.x_common_deferred_options
#endif
#ifdef GENERATOR_FILE
extern int flag_no_asm;
#else
  int x_flag_no_asm;
#define flag_no_asm global_options.x_flag_no_asm
#endif
#ifdef GENERATOR_FILE
extern int flag_assert;
#else
  int x_flag_assert;
#define flag_assert global_options.x_flag_assert
#endif
#ifdef GENERATOR_FILE
extern int flag_associative_math;
#else
  int x_flag_associative_math;
#define flag_associative_math global_options.x_flag_associative_math
#endif
#ifdef GENERATOR_FILE
extern int flag_asynchronous_unwind_tables;
#else
  int x_flag_asynchronous_unwind_tables;
#define flag_asynchronous_unwind_tables global_options.x_flag_asynchronous_unwind_tables
#endif
#ifdef GENERATOR_FILE
extern int flag_auto_inc_dec;
#else
  int x_flag_auto_inc_dec;
#define flag_auto_inc_dec global_options.x_flag_auto_inc_dec
#endif
#ifdef GENERATOR_FILE
extern int flag_auto_profile;
#else
  int x_flag_auto_profile;
#define flag_auto_profile global_options.x_flag_auto_profile
#endif
#ifdef GENERATOR_FILE
extern const char *auto_profile_file;
#else
  const char *x_auto_profile_file;
#define auto_profile_file global_options.x_auto_profile_file
#endif
#ifdef GENERATOR_FILE
extern int flag_automatic;
#else
  int x_flag_automatic;
#define flag_automatic global_options.x_flag_automatic
#endif
#ifdef GENERATOR_FILE
extern int flag_backslash;
#else
  int x_flag_backslash;
#define flag_backslash global_options.x_flag_backslash
#endif
#ifdef GENERATOR_FILE
extern int flag_backtrace;
#else
  int x_flag_backtrace;
#define flag_backtrace global_options.x_flag_backtrace
#endif
#ifdef GENERATOR_FILE
extern int flag_blas_matmul_limit;
#else
  int x_flag_blas_matmul_limit;
#define flag_blas_matmul_limit global_options.x_flag_blas_matmul_limit
#endif
#ifdef GENERATOR_FILE
extern int flag_bootstrap_classes;
#else
  int x_flag_bootstrap_classes;
#define flag_bootstrap_classes global_options.x_flag_bootstrap_classes
#endif
#ifdef GENERATOR_FILE
extern int flag_bounds_check;
#else
  int x_flag_bounds_check;
#define flag_bounds_check global_options.x_flag_bounds_check
#endif
#ifdef GENERATOR_FILE
extern int flag_branch_on_count_reg;
#else
  int x_flag_branch_on_count_reg;
#define flag_branch_on_count_reg global_options.x_flag_branch_on_count_reg
#endif
#ifdef GENERATOR_FILE
extern int flag_branch_probabilities;
#else
  int x_flag_branch_probabilities;
#define flag_branch_probabilities global_options.x_flag_branch_probabilities
#endif
#ifdef GENERATOR_FILE
extern int flag_branch_target_load_optimize;
#else
  int x_flag_branch_target_load_optimize;
#define flag_branch_target_load_optimize global_options.x_flag_branch_target_load_optimize
#endif
#ifdef GENERATOR_FILE
extern int flag_branch_target_load_optimize2;
#else
  int x_flag_branch_target_load_optimize2;
#define flag_branch_target_load_optimize2 global_options.x_flag_branch_target_load_optimize2
#endif
#ifdef GENERATOR_FILE
extern int flag_btr_bb_exclusive;
#else
  int x_flag_btr_bb_exclusive;
#define flag_btr_bb_exclusive global_options.x_flag_btr_bb_exclusive
#endif
#ifdef GENERATOR_FILE
extern int flag_building_libgcc;
#else
  int x_flag_building_libgcc;
#define flag_building_libgcc global_options.x_flag_building_libgcc
#endif
#ifdef GENERATOR_FILE
extern int flag_no_builtin;
#else
  int x_flag_no_builtin;
#define flag_no_builtin global_options.x_flag_no_builtin
#endif
#ifdef GENERATOR_FILE
extern int flag_caller_saves;
#else
  int x_flag_caller_saves;
#define flag_caller_saves global_options.x_flag_caller_saves
#endif
#ifdef GENERATOR_FILE
extern int flag_check_data_deps;
#else
  int x_flag_check_data_deps;
#define flag_check_data_deps global_options.x_flag_check_data_deps
#endif
#ifdef GENERATOR_FILE
extern int flag_check_new;
#else
  int x_flag_check_new;
#define flag_check_new global_options.x_flag_check_new
#endif
#ifdef GENERATOR_FILE
extern int flag_check_pointer_bounds;
#else
  int x_flag_check_pointer_bounds;
#define flag_check_pointer_bounds global_options.x_flag_check_pointer_bounds
#endif
#ifdef GENERATOR_FILE
extern int flag_check_references;
#else
  int x_flag_check_references;
#define flag_check_references global_options.x_flag_check_references
#endif
#ifdef GENERATOR_FILE
extern int flag_checking;
#else
  int x_flag_checking;
#define flag_checking global_options.x_flag_checking
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_incomplete_type;
#else
  int x_flag_chkp_incomplete_type;
#define flag_chkp_incomplete_type global_options.x_flag_chkp_incomplete_type
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_check_read;
#else
  int x_flag_chkp_check_read;
#define flag_chkp_check_read global_options.x_flag_chkp_check_read
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_check_write;
#else
  int x_flag_chkp_check_write;
#define flag_chkp_check_write global_options.x_flag_chkp_check_write
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_first_field_has_own_bounds;
#else
  int x_flag_chkp_first_field_has_own_bounds;
#define flag_chkp_first_field_has_own_bounds global_options.x_flag_chkp_first_field_has_own_bounds
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_instrument_calls;
#else
  int x_flag_chkp_instrument_calls;
#define flag_chkp_instrument_calls global_options.x_flag_chkp_instrument_calls
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_instrument_marked_only;
#else
  int x_flag_chkp_instrument_marked_only;
#define flag_chkp_instrument_marked_only global_options.x_flag_chkp_instrument_marked_only
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_narrow_bounds;
#else
  int x_flag_chkp_narrow_bounds;
#define flag_chkp_narrow_bounds global_options.x_flag_chkp_narrow_bounds
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_narrow_to_innermost_arrray;
#else
  int x_flag_chkp_narrow_to_innermost_arrray;
#define flag_chkp_narrow_to_innermost_arrray global_options.x_flag_chkp_narrow_to_innermost_arrray
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_optimize;
#else
  int x_flag_chkp_optimize;
#define flag_chkp_optimize global_options.x_flag_chkp_optimize
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_store_bounds;
#else
  int x_flag_chkp_store_bounds;
#define flag_chkp_store_bounds global_options.x_flag_chkp_store_bounds
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_zero_dynamic_size_as_infinite;
#else
  int x_flag_chkp_zero_dynamic_size_as_infinite;
#define flag_chkp_zero_dynamic_size_as_infinite global_options.x_flag_chkp_zero_dynamic_size_as_infinite
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_use_fast_string_functions;
#else
  int x_flag_chkp_use_fast_string_functions;
#define flag_chkp_use_fast_string_functions global_options.x_flag_chkp_use_fast_string_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_use_nochk_string_functions;
#else
  int x_flag_chkp_use_nochk_string_functions;
#define flag_chkp_use_nochk_string_functions global_options.x_flag_chkp_use_nochk_string_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_use_static_bounds;
#else
  int x_flag_chkp_use_static_bounds;
#define flag_chkp_use_static_bounds global_options.x_flag_chkp_use_static_bounds
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_use_static_const_bounds;
#else
  int x_flag_chkp_use_static_const_bounds;
#define flag_chkp_use_static_const_bounds global_options.x_flag_chkp_use_static_const_bounds
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_use_wrappers;
#else
  int x_flag_chkp_use_wrappers;
#define flag_chkp_use_wrappers global_options.x_flag_chkp_use_wrappers
#endif
#ifdef GENERATOR_FILE
extern int flag_chkp_zero_input_bounds_for_main;
#else
  int x_flag_chkp_zero_input_bounds_for_main;
#define flag_chkp_zero_input_bounds_for_main global_options.x_flag_chkp_zero_input_bounds_for_main
#endif
#ifdef GENERATOR_FILE
extern int flag_cilkplus;
#else
  int x_flag_cilkplus;
#define flag_cilkplus global_options.x_flag_cilkplus
#endif
#ifdef GENERATOR_FILE
extern enum gfc_fcoarray flag_coarray;
#else
  enum gfc_fcoarray x_flag_coarray;
#define flag_coarray global_options.x_flag_coarray
#endif
#ifdef GENERATOR_FILE
extern int flag_combine_stack_adjustments;
#else
  int x_flag_combine_stack_adjustments;
#define flag_combine_stack_adjustments global_options.x_flag_combine_stack_adjustments
#endif
#ifdef GENERATOR_FILE
extern int flag_no_common;
#else
  int x_flag_no_common;
#define flag_no_common global_options.x_flag_no_common
#endif
#ifdef GENERATOR_FILE
extern int flag_compare_debug;
#else
  int x_flag_compare_debug;
#define flag_compare_debug global_options.x_flag_compare_debug
#endif
#ifdef GENERATOR_FILE
extern const char *flag_compare_debug_opt;
#else
  const char *x_flag_compare_debug_opt;
#define flag_compare_debug_opt global_options.x_flag_compare_debug_opt
#endif
#ifdef GENERATOR_FILE
extern int flag_compare_elim_after_reload;
#else
  int x_flag_compare_elim_after_reload;
#define flag_compare_elim_after_reload global_options.x_flag_compare_elim_after_reload
#endif
#ifdef GENERATOR_FILE
extern int flag_concepts;
#else
  int x_flag_concepts;
#define flag_concepts global_options.x_flag_concepts
#endif
#ifdef GENERATOR_FILE
extern int flag_conserve_space;
#else
  int x_flag_conserve_space;
#define flag_conserve_space global_options.x_flag_conserve_space
#endif
#ifdef GENERATOR_FILE
extern int flag_conserve_stack;
#else
  int x_flag_conserve_stack;
#define flag_conserve_stack global_options.x_flag_conserve_stack
#endif
#ifdef GENERATOR_FILE
extern int max_constexpr_depth;
#else
  int x_max_constexpr_depth;
#define max_constexpr_depth global_options.x_max_constexpr_depth
#endif
#ifdef GENERATOR_FILE
extern enum gfc_convert flag_convert;
#else
  enum gfc_convert x_flag_convert;
#define flag_convert global_options.x_flag_convert
#endif
#ifdef GENERATOR_FILE
extern int flag_cprop_registers;
#else
  int x_flag_cprop_registers;
#define flag_cprop_registers global_options.x_flag_cprop_registers
#endif
#ifdef GENERATOR_FILE
extern int flag_cray_pointer;
#else
  int x_flag_cray_pointer;
#define flag_cray_pointer global_options.x_flag_cray_pointer
#endif
#ifdef GENERATOR_FILE
extern int flag_crossjumping;
#else
  int x_flag_crossjumping;
#define flag_crossjumping global_options.x_flag_crossjumping
#endif
#ifdef GENERATOR_FILE
extern int flag_cse_follow_jumps;
#else
  int x_flag_cse_follow_jumps;
#define flag_cse_follow_jumps global_options.x_flag_cse_follow_jumps
#endif
#ifdef GENERATOR_FILE
extern int flag_cx_fortran_rules;
#else
  int x_flag_cx_fortran_rules;
#define flag_cx_fortran_rules global_options.x_flag_cx_fortran_rules
#endif
#ifdef GENERATOR_FILE
extern int flag_cx_limited_range;
#else
  int x_flag_cx_limited_range;
#define flag_cx_limited_range global_options.x_flag_cx_limited_range
#endif
#ifdef GENERATOR_FILE
extern int flag_data_sections;
#else
  int x_flag_data_sections;
#define flag_data_sections global_options.x_flag_data_sections
#endif
#ifdef GENERATOR_FILE
extern int flag_dce;
#else
  int x_flag_dce;
#define flag_dce global_options.x_flag_dce
#endif
#ifdef GENERATOR_FILE
extern int flag_debug_types_section;
#else
  int x_flag_debug_types_section;
#define flag_debug_types_section global_options.x_flag_debug_types_section
#endif
#ifdef GENERATOR_FILE
extern int flag_declone_ctor_dtor;
#else
  int x_flag_declone_ctor_dtor;
#define flag_declone_ctor_dtor global_options.x_flag_declone_ctor_dtor
#endif
#ifdef GENERATOR_FILE
extern int flag_deduce_init_list;
#else
  int x_flag_deduce_init_list;
#define flag_deduce_init_list global_options.x_flag_deduce_init_list
#endif
#ifdef GENERATOR_FILE
extern int flag_default_double;
#else
  int x_flag_default_double;
#define flag_default_double global_options.x_flag_default_double
#endif
#ifdef GENERATOR_FILE
extern int flag_default_integer;
#else
  int x_flag_default_integer;
#define flag_default_integer global_options.x_flag_default_integer
#endif
#ifdef GENERATOR_FILE
extern int flag_default_real;
#else
  int x_flag_default_real;
#define flag_default_real global_options.x_flag_default_real
#endif
#ifdef GENERATOR_FILE
extern int flag_defer_pop;
#else
  int x_flag_defer_pop;
#define flag_defer_pop global_options.x_flag_defer_pop
#endif
#ifdef GENERATOR_FILE
extern int flag_delayed_branch;
#else
  int x_flag_delayed_branch;
#define flag_delayed_branch global_options.x_flag_delayed_branch
#endif
#ifdef GENERATOR_FILE
extern int flag_delete_dead_exceptions;
#else
  int x_flag_delete_dead_exceptions;
#define flag_delete_dead_exceptions global_options.x_flag_delete_dead_exceptions
#endif
#ifdef GENERATOR_FILE
extern int flag_delete_null_pointer_checks;
#else
  int x_flag_delete_null_pointer_checks;
#define flag_delete_null_pointer_checks global_options.x_flag_delete_null_pointer_checks
#endif
#ifdef GENERATOR_FILE
extern int flag_devirtualize;
#else
  int x_flag_devirtualize;
#define flag_devirtualize global_options.x_flag_devirtualize
#endif
#ifdef GENERATOR_FILE
extern int flag_ltrans_devirtualize;
#else
  int x_flag_ltrans_devirtualize;
#define flag_ltrans_devirtualize global_options.x_flag_ltrans_devirtualize
#endif
#ifdef GENERATOR_FILE
extern int flag_devirtualize_speculatively;
#else
  int x_flag_devirtualize_speculatively;
#define flag_devirtualize_speculatively global_options.x_flag_devirtualize_speculatively
#endif
#ifdef GENERATOR_FILE
extern int flag_diagnostics_show_color;
#else
  int x_flag_diagnostics_show_color;
#define flag_diagnostics_show_color global_options.x_flag_diagnostics_show_color
#endif
#ifdef GENERATOR_FILE
extern int flag_diagnostics_show_caret;
#else
  int x_flag_diagnostics_show_caret;
#define flag_diagnostics_show_caret global_options.x_flag_diagnostics_show_caret
#endif
#ifdef GENERATOR_FILE
extern int flag_diagnostics_show_option;
#else
  int x_flag_diagnostics_show_option;
#define flag_diagnostics_show_option global_options.x_flag_diagnostics_show_option
#endif
#ifdef GENERATOR_FILE
extern int flag_dollar_ok;
#else
  int x_flag_dollar_ok;
#define flag_dollar_ok global_options.x_flag_dollar_ok
#endif
#ifdef GENERATOR_FILE
extern int flag_dse;
#else
  int x_flag_dse;
#define flag_dse global_options.x_flag_dse
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_ada_spec;
#else
  int x_flag_dump_ada_spec;
#define flag_dump_ada_spec global_options.x_flag_dump_ada_spec
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_ada_spec_slim;
#else
  int x_flag_dump_ada_spec_slim;
#define flag_dump_ada_spec_slim global_options.x_flag_dump_ada_spec_slim
#endif
#ifdef GENERATOR_FILE
extern const char *flag_dump_final_insns;
#else
  const char *x_flag_dump_final_insns;
#define flag_dump_final_insns global_options.x_flag_dump_final_insns
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_fortran_optimized;
#else
  int x_flag_dump_fortran_optimized;
#define flag_dump_fortran_optimized global_options.x_flag_dump_fortran_optimized
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_fortran_original;
#else
  int x_flag_dump_fortran_original;
#define flag_dump_fortran_original global_options.x_flag_dump_fortran_original
#endif
#ifdef GENERATOR_FILE
extern const char *flag_dump_go_spec;
#else
  const char *x_flag_dump_go_spec;
#define flag_dump_go_spec global_options.x_flag_dump_go_spec
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_locations;
#else
  int x_flag_dump_locations;
#define flag_dump_locations global_options.x_flag_dump_locations
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_noaddr;
#else
  int x_flag_dump_noaddr;
#define flag_dump_noaddr global_options.x_flag_dump_noaddr
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_passes;
#else
  int x_flag_dump_passes;
#define flag_dump_passes global_options.x_flag_dump_passes
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_unnumbered;
#else
  int x_flag_dump_unnumbered;
#define flag_dump_unnumbered global_options.x_flag_dump_unnumbered
#endif
#ifdef GENERATOR_FILE
extern int flag_dump_unnumbered_links;
#else
  int x_flag_dump_unnumbered_links;
#define flag_dump_unnumbered_links global_options.x_flag_dump_unnumbered_links
#endif
#ifdef GENERATOR_FILE
extern int flag_dwarf2_cfi_asm;
#else
  int x_flag_dwarf2_cfi_asm;
#define flag_dwarf2_cfi_asm global_options.x_flag_dwarf2_cfi_asm
#endif
#ifdef GENERATOR_FILE
extern int flag_early_inlining;
#else
  int x_flag_early_inlining;
#define flag_early_inlining global_options.x_flag_early_inlining
#endif
#ifdef GENERATOR_FILE
extern int flag_elide_constructors;
#else
  int x_flag_elide_constructors;
#define flag_elide_constructors global_options.x_flag_elide_constructors
#endif
#ifdef GENERATOR_FILE
extern int flag_eliminate_dwarf2_dups;
#else
  int x_flag_eliminate_dwarf2_dups;
#define flag_eliminate_dwarf2_dups global_options.x_flag_eliminate_dwarf2_dups
#endif
#ifdef GENERATOR_FILE
extern int flag_debug_only_used_symbols;
#else
  int x_flag_debug_only_used_symbols;
#define flag_debug_only_used_symbols global_options.x_flag_debug_only_used_symbols
#endif
#ifdef GENERATOR_FILE
extern int flag_eliminate_unused_debug_types;
#else
  int x_flag_eliminate_unused_debug_types;
#define flag_eliminate_unused_debug_types global_options.x_flag_eliminate_unused_debug_types
#endif
#ifdef GENERATOR_FILE
extern int flag_emit_class_debug_always;
#else
  int x_flag_emit_class_debug_always;
#define flag_emit_class_debug_always global_options.x_flag_emit_class_debug_always
#endif
#ifdef GENERATOR_FILE
extern int flag_emit_class_files;
#else
  int x_flag_emit_class_files;
#define flag_emit_class_files global_options.x_flag_emit_class_files
#endif
#ifdef GENERATOR_FILE
extern int flag_enforce_eh_specs;
#else
  int x_flag_enforce_eh_specs;
#define flag_enforce_eh_specs global_options.x_flag_enforce_eh_specs
#endif
#ifdef GENERATOR_FILE
extern int flag_exceptions;
#else
  int x_flag_exceptions;
#define flag_exceptions global_options.x_flag_exceptions
#endif
#ifdef GENERATOR_FILE
extern enum excess_precision flag_excess_precision_cmdline;
#else
  enum excess_precision x_flag_excess_precision_cmdline;
#define flag_excess_precision_cmdline global_options.x_flag_excess_precision_cmdline
#endif
#ifdef GENERATOR_FILE
extern int flag_expensive_optimizations;
#else
  int x_flag_expensive_optimizations;
#define flag_expensive_optimizations global_options.x_flag_expensive_optimizations
#endif
#ifdef GENERATOR_FILE
extern int flag_extern_tls_init;
#else
  int x_flag_extern_tls_init;
#define flag_extern_tls_init global_options.x_flag_extern_tls_init
#endif
#ifdef GENERATOR_FILE
extern int flag_external_blas;
#else
  int x_flag_external_blas;
#define flag_external_blas global_options.x_flag_external_blas
#endif
#ifdef GENERATOR_FILE
extern int flag_f2c;
#else
  int x_flag_f2c;
#define flag_f2c global_options.x_flag_f2c
#endif
#ifdef GENERATOR_FILE
extern int flag_fat_lto_objects;
#else
  int x_flag_fat_lto_objects;
#define flag_fat_lto_objects global_options.x_flag_fat_lto_objects
#endif
#ifdef GENERATOR_FILE
extern int flag_filelist_file;
#else
  int x_flag_filelist_file;
#define flag_filelist_file global_options.x_flag_filelist_file
#endif
#ifdef GENERATOR_FILE
extern int flag_finite_math_only;
#else
  int x_flag_finite_math_only;
#define flag_finite_math_only global_options.x_flag_finite_math_only
#endif
#ifdef GENERATOR_FILE
extern int flag_fixed_line_length;
#else
  int x_flag_fixed_line_length;
#define flag_fixed_line_length global_options.x_flag_fixed_line_length
#endif
#ifdef GENERATOR_FILE
extern int flag_float_store;
#else
  int x_flag_float_store;
#define flag_float_store global_options.x_flag_float_store
#endif
#ifdef GENERATOR_FILE
extern int flag_new_for_scope;
#else
  int x_flag_new_for_scope;
#define flag_new_for_scope global_options.x_flag_new_for_scope
#endif
#ifdef GENERATOR_FILE
extern int flag_force_classes_archive_check;
#else
  int x_flag_force_classes_archive_check;
#define flag_force_classes_archive_check global_options.x_flag_force_classes_archive_check
#endif
#ifdef GENERATOR_FILE
extern int flag_forward_propagate;
#else
  int x_flag_forward_propagate;
#define flag_forward_propagate global_options.x_flag_forward_propagate
#endif
#ifdef GENERATOR_FILE
extern enum fp_contract_mode flag_fp_contract_mode;
#else
  enum fp_contract_mode x_flag_fp_contract_mode;
#define flag_fp_contract_mode global_options.x_flag_fp_contract_mode
#endif
#ifdef GENERATOR_FILE
extern int flag_free_line_length;
#else
  int x_flag_free_line_length;
#define flag_free_line_length global_options.x_flag_free_line_length
#endif
#ifdef GENERATOR_FILE
extern int flag_friend_injection;
#else
  int x_flag_friend_injection;
#define flag_friend_injection global_options.x_flag_friend_injection
#endif
#ifdef GENERATOR_FILE
extern int flag_frontend_optimize;
#else
  int x_flag_frontend_optimize;
#define flag_frontend_optimize global_options.x_flag_frontend_optimize
#endif
#ifdef GENERATOR_FILE
extern int flag_no_function_cse;
#else
  int x_flag_no_function_cse;
#define flag_no_function_cse global_options.x_flag_no_function_cse
#endif
#ifdef GENERATOR_FILE
extern int flag_function_sections;
#else
  int x_flag_function_sections;
#define flag_function_sections global_options.x_flag_function_sections
#endif
#ifdef GENERATOR_FILE
extern int flag_gcse;
#else
  int x_flag_gcse;
#define flag_gcse global_options.x_flag_gcse
#endif
#ifdef GENERATOR_FILE
extern int flag_gcse_after_reload;
#else
  int x_flag_gcse_after_reload;
#define flag_gcse_after_reload global_options.x_flag_gcse_after_reload
#endif
#ifdef GENERATOR_FILE
extern int flag_gcse_las;
#else
  int x_flag_gcse_las;
#define flag_gcse_las global_options.x_flag_gcse_las
#endif
#ifdef GENERATOR_FILE
extern int flag_gcse_lm;
#else
  int x_flag_gcse_lm;
#define flag_gcse_lm global_options.x_flag_gcse_lm
#endif
#ifdef GENERATOR_FILE
extern int flag_gcse_sm;
#else
  int x_flag_gcse_sm;
#define flag_gcse_sm global_options.x_flag_gcse_sm
#endif
#ifdef GENERATOR_FILE
extern int flag_no_gnu_keywords;
#else
  int x_flag_no_gnu_keywords;
#define flag_no_gnu_keywords global_options.x_flag_no_gnu_keywords
#endif
#ifdef GENERATOR_FILE
extern int flag_next_runtime;
#else
  int x_flag_next_runtime;
#define flag_next_runtime global_options.x_flag_next_runtime
#endif
#ifdef GENERATOR_FILE
extern int flag_tm;
#else
  int x_flag_tm;
#define flag_tm global_options.x_flag_tm
#endif
#ifdef GENERATOR_FILE
extern int flag_gnu_unique;
#else
  int x_flag_gnu_unique;
#define flag_gnu_unique global_options.x_flag_gnu_unique
#endif
#ifdef GENERATOR_FILE
extern int flag_gnu89_inline;
#else
  int x_flag_gnu89_inline;
#define flag_gnu89_inline global_options.x_flag_gnu89_inline
#endif
#ifdef GENERATOR_FILE
extern int go_check_divide_overflow;
#else
  int x_go_check_divide_overflow;
#define go_check_divide_overflow global_options.x_go_check_divide_overflow
#endif
#ifdef GENERATOR_FILE
extern int go_check_divide_zero;
#else
  int x_go_check_divide_zero;
#define go_check_divide_zero global_options.x_go_check_divide_zero
#endif
#ifdef GENERATOR_FILE
extern int flag_graphite;
#else
  int x_flag_graphite;
#define flag_graphite global_options.x_flag_graphite
#endif
#ifdef GENERATOR_FILE
extern int flag_graphite_identity;
#else
  int x_flag_graphite_identity;
#define flag_graphite_identity global_options.x_flag_graphite_identity
#endif
#ifdef GENERATOR_FILE
extern int flag_guess_branch_prob;
#else
  int x_flag_guess_branch_prob;
#define flag_guess_branch_prob global_options.x_flag_guess_branch_prob
#endif
#ifdef GENERATOR_FILE
extern int flag_hash_synchronization;
#else
  int x_flag_hash_synchronization;
#define flag_hash_synchronization global_options.x_flag_hash_synchronization
#endif
#ifdef GENERATOR_FILE
extern int flag_hoist_adjacent_loads;
#else
  int x_flag_hoist_adjacent_loads;
#define flag_hoist_adjacent_loads global_options.x_flag_hoist_adjacent_loads
#endif
#ifdef GENERATOR_FILE
extern int flag_no_ident;
#else
  int x_flag_no_ident;
#define flag_no_ident global_options.x_flag_no_ident
#endif
#ifdef GENERATOR_FILE
extern int flag_if_conversion;
#else
  int x_flag_if_conversion;
#define flag_if_conversion global_options.x_flag_if_conversion
#endif
#ifdef GENERATOR_FILE
extern int flag_if_conversion2;
#else
  int x_flag_if_conversion2;
#define flag_if_conversion2 global_options.x_flag_if_conversion2
#endif
#ifdef GENERATOR_FILE
extern int flag_implement_inlines;
#else
  int x_flag_implement_inlines;
#define flag_implement_inlines global_options.x_flag_implement_inlines
#endif
#ifdef GENERATOR_FILE
extern int flag_implicit_inline_templates;
#else
  int x_flag_implicit_inline_templates;
#define flag_implicit_inline_templates global_options.x_flag_implicit_inline_templates
#endif
#ifdef GENERATOR_FILE
extern int flag_implicit_none;
#else
  int x_flag_implicit_none;
#define flag_implicit_none global_options.x_flag_implicit_none
#endif
#ifdef GENERATOR_FILE
extern int flag_implicit_templates;
#else
  int x_flag_implicit_templates;
#define flag_implicit_templates global_options.x_flag_implicit_templates
#endif
#ifdef GENERATOR_FILE
extern int flag_indirect_classes;
#else
  int x_flag_indirect_classes;
#define flag_indirect_classes global_options.x_flag_indirect_classes
#endif
#ifdef GENERATOR_FILE
extern int flag_indirect_dispatch;
#else
  int x_flag_indirect_dispatch;
#define flag_indirect_dispatch global_options.x_flag_indirect_dispatch
#endif
#ifdef GENERATOR_FILE
extern int flag_indirect_inlining;
#else
  int x_flag_indirect_inlining;
#define flag_indirect_inlining global_options.x_flag_indirect_inlining
#endif
#ifdef GENERATOR_FILE
extern int flag_inhibit_size_directive;
#else
  int x_flag_inhibit_size_directive;
#define flag_inhibit_size_directive global_options.x_flag_inhibit_size_directive
#endif
#ifdef GENERATOR_FILE
extern enum gfc_init_local_real flag_init_real;
#else
  enum gfc_init_local_real x_flag_init_real;
#define flag_init_real global_options.x_flag_init_real
#endif
#ifdef GENERATOR_FILE
extern int flag_no_inline;
#else
  int x_flag_no_inline;
#define flag_no_inline global_options.x_flag_no_inline
#endif
#ifdef GENERATOR_FILE
extern int flag_inline_atomics;
#else
  int x_flag_inline_atomics;
#define flag_inline_atomics global_options.x_flag_inline_atomics
#endif
#ifdef GENERATOR_FILE
extern int flag_inline_functions;
#else
  int x_flag_inline_functions;
#define flag_inline_functions global_options.x_flag_inline_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_inline_functions_called_once;
#else
  int x_flag_inline_functions_called_once;
#define flag_inline_functions_called_once global_options.x_flag_inline_functions_called_once
#endif
#ifdef GENERATOR_FILE
extern int flag_inline_matmul_limit;
#else
  int x_flag_inline_matmul_limit;
#define flag_inline_matmul_limit global_options.x_flag_inline_matmul_limit
#endif
#ifdef GENERATOR_FILE
extern int flag_inline_small_functions;
#else
  int x_flag_inline_small_functions;
#define flag_inline_small_functions global_options.x_flag_inline_small_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_instrument_function_entry_exit;
#else
  int x_flag_instrument_function_entry_exit;
#define flag_instrument_function_entry_exit global_options.x_flag_instrument_function_entry_exit
#endif
#ifdef GENERATOR_FILE
extern int flag_integer4_kind;
#else
  int x_flag_integer4_kind;
#define flag_integer4_kind global_options.x_flag_integer4_kind
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_cp;
#else
  int x_flag_ipa_cp;
#define flag_ipa_cp global_options.x_flag_ipa_cp
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_cp_alignment;
#else
  int x_flag_ipa_cp_alignment;
#define flag_ipa_cp_alignment global_options.x_flag_ipa_cp_alignment
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_cp_clone;
#else
  int x_flag_ipa_cp_clone;
#define flag_ipa_cp_clone global_options.x_flag_ipa_cp_clone
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_icf;
#else
  int x_flag_ipa_icf;
#define flag_ipa_icf global_options.x_flag_ipa_icf
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_icf_functions;
#else
  int x_flag_ipa_icf_functions;
#define flag_ipa_icf_functions global_options.x_flag_ipa_icf_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_icf_variables;
#else
  int x_flag_ipa_icf_variables;
#define flag_ipa_icf_variables global_options.x_flag_ipa_icf_variables
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_profile;
#else
  int x_flag_ipa_profile;
#define flag_ipa_profile global_options.x_flag_ipa_profile
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_pta;
#else
  int x_flag_ipa_pta;
#define flag_ipa_pta global_options.x_flag_ipa_pta
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_pure_const;
#else
  int x_flag_ipa_pure_const;
#define flag_ipa_pure_const global_options.x_flag_ipa_pure_const
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_ra;
#else
  int x_flag_ipa_ra;
#define flag_ipa_ra global_options.x_flag_ipa_ra
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_reference;
#else
  int x_flag_ipa_reference;
#define flag_ipa_reference global_options.x_flag_ipa_reference
#endif
#ifdef GENERATOR_FILE
extern int flag_ipa_sra;
#else
  int x_flag_ipa_sra;
#define flag_ipa_sra global_options.x_flag_ipa_sra
#endif
#ifdef GENERATOR_FILE
extern enum ira_algorithm flag_ira_algorithm;
#else
  enum ira_algorithm x_flag_ira_algorithm;
#define flag_ira_algorithm global_options.x_flag_ira_algorithm
#endif
#ifdef GENERATOR_FILE
extern int flag_ira_hoist_pressure;
#else
  int x_flag_ira_hoist_pressure;
#define flag_ira_hoist_pressure global_options.x_flag_ira_hoist_pressure
#endif
#ifdef GENERATOR_FILE
extern int flag_ira_loop_pressure;
#else
  int x_flag_ira_loop_pressure;
#define flag_ira_loop_pressure global_options.x_flag_ira_loop_pressure
#endif
#ifdef GENERATOR_FILE
extern enum ira_region flag_ira_region;
#else
  enum ira_region x_flag_ira_region;
#define flag_ira_region global_options.x_flag_ira_region
#endif
#ifdef GENERATOR_FILE
extern int flag_ira_share_save_slots;
#else
  int x_flag_ira_share_save_slots;
#define flag_ira_share_save_slots global_options.x_flag_ira_share_save_slots
#endif
#ifdef GENERATOR_FILE
extern int flag_ira_share_spill_slots;
#else
  int x_flag_ira_share_spill_slots;
#define flag_ira_share_spill_slots global_options.x_flag_ira_share_spill_slots
#endif
#ifdef GENERATOR_FILE
extern int flag_ira_verbose;
#else
  int x_flag_ira_verbose;
#define flag_ira_verbose global_options.x_flag_ira_verbose
#endif
#ifdef GENERATOR_FILE
extern int flag_isolate_erroneous_paths_attribute;
#else
  int x_flag_isolate_erroneous_paths_attribute;
#define flag_isolate_erroneous_paths_attribute global_options.x_flag_isolate_erroneous_paths_attribute
#endif
#ifdef GENERATOR_FILE
extern int flag_isolate_erroneous_paths_dereference;
#else
  int x_flag_isolate_erroneous_paths_dereference;
#define flag_isolate_erroneous_paths_dereference global_options.x_flag_isolate_erroneous_paths_dereference
#endif
#ifdef GENERATOR_FILE
extern enum ivar_visibility default_ivar_visibility;
#else
  enum ivar_visibility x_default_ivar_visibility;
#define default_ivar_visibility global_options.x_default_ivar_visibility
#endif
#ifdef GENERATOR_FILE
extern int flag_ivopts;
#else
  int x_flag_ivopts;
#define flag_ivopts global_options.x_flag_ivopts
#endif
#ifdef GENERATOR_FILE
extern int flag_jni;
#else
  int x_flag_jni;
#define flag_jni global_options.x_flag_jni
#endif
#ifdef GENERATOR_FILE
extern int flag_jump_tables;
#else
  int x_flag_jump_tables;
#define flag_jump_tables global_options.x_flag_jump_tables
#endif
#ifdef GENERATOR_FILE
extern int flag_keep_gc_roots_live;
#else
  int x_flag_keep_gc_roots_live;
#define flag_keep_gc_roots_live global_options.x_flag_keep_gc_roots_live
#endif
#ifdef GENERATOR_FILE
extern int flag_keep_inline_dllexport;
#else
  int x_flag_keep_inline_dllexport;
#define flag_keep_inline_dllexport global_options.x_flag_keep_inline_dllexport
#endif
#ifdef GENERATOR_FILE
extern int flag_keep_inline_functions;
#else
  int x_flag_keep_inline_functions;
#define flag_keep_inline_functions global_options.x_flag_keep_inline_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_keep_static_consts;
#else
  int x_flag_keep_static_consts;
#define flag_keep_static_consts global_options.x_flag_keep_static_consts
#endif
#ifdef GENERATOR_FILE
extern int flag_keep_static_functions;
#else
  int x_flag_keep_static_functions;
#define flag_keep_static_functions global_options.x_flag_keep_static_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_lax_vector_conversions;
#else
  int x_flag_lax_vector_conversions;
#define flag_lax_vector_conversions global_options.x_flag_lax_vector_conversions
#endif
#ifdef GENERATOR_FILE
extern int flag_leading_underscore;
#else
  int x_flag_leading_underscore;
#define flag_leading_underscore global_options.x_flag_leading_underscore
#endif
#ifdef GENERATOR_FILE
extern int flag_lifetime_dse;
#else
  int x_flag_lifetime_dse;
#define flag_lifetime_dse global_options.x_flag_lifetime_dse
#endif
#ifdef GENERATOR_FILE
extern enum lto_linker_output flag_lto_linker_output;
#else
  enum lto_linker_output x_flag_lto_linker_output;
#define flag_lto_linker_output global_options.x_flag_lto_linker_output
#endif
#ifdef GENERATOR_FILE
extern int flag_live_range_shrinkage;
#else
  int x_flag_live_range_shrinkage;
#define flag_live_range_shrinkage global_options.x_flag_live_range_shrinkage
#endif
#ifdef GENERATOR_FILE
extern int flag_local_ivars;
#else
  int x_flag_local_ivars;
#define flag_local_ivars global_options.x_flag_local_ivars
#endif
#ifdef GENERATOR_FILE
extern int flag_loop_nest_optimize;
#else
  int x_flag_loop_nest_optimize;
#define flag_loop_nest_optimize global_options.x_flag_loop_nest_optimize
#endif
#ifdef GENERATOR_FILE
extern int flag_loop_parallelize_all;
#else
  int x_flag_loop_parallelize_all;
#define flag_loop_parallelize_all global_options.x_flag_loop_parallelize_all
#endif
#ifdef GENERATOR_FILE
extern int flag_lra_remat;
#else
  int x_flag_lra_remat;
#define flag_lra_remat global_options.x_flag_lra_remat
#endif
#ifdef GENERATOR_FILE
extern int flag_lto_compression_level;
#else
  int x_flag_lto_compression_level;
#define flag_lto_compression_level global_options.x_flag_lto_compression_level
#endif
#ifdef GENERATOR_FILE
extern int flag_lto_odr_type_mering;
#else
  int x_flag_lto_odr_type_mering;
#define flag_lto_odr_type_mering global_options.x_flag_lto_odr_type_mering
#endif
#ifdef GENERATOR_FILE
extern enum lto_partition_model flag_lto_partition;
#else
  enum lto_partition_model x_flag_lto_partition;
#define flag_lto_partition global_options.x_flag_lto_partition
#endif
#ifdef GENERATOR_FILE
extern int flag_lto_report;
#else
  int x_flag_lto_report;
#define flag_lto_report global_options.x_flag_lto_report
#endif
#ifdef GENERATOR_FILE
extern int flag_lto_report_wpa;
#else
  int x_flag_lto_report_wpa;
#define flag_lto_report_wpa global_options.x_flag_lto_report_wpa
#endif
#ifdef GENERATOR_FILE
extern const char *flag_lto;
#else
  const char *x_flag_lto;
#define flag_lto global_options.x_flag_lto
#endif
#ifdef GENERATOR_FILE
extern int flag_ltrans;
#else
  int x_flag_ltrans;
#define flag_ltrans global_options.x_flag_ltrans
#endif
#ifdef GENERATOR_FILE
extern const char *ltrans_output_list;
#else
  const char *x_ltrans_output_list;
#define ltrans_output_list global_options.x_ltrans_output_list
#endif
#ifdef GENERATOR_FILE
extern int flag_errno_math;
#else
  int x_flag_errno_math;
#define flag_errno_math global_options.x_flag_errno_math
#endif
#ifdef GENERATOR_FILE
extern int flag_max_array_constructor;
#else
  int x_flag_max_array_constructor;
#define flag_max_array_constructor global_options.x_flag_max_array_constructor
#endif
#ifdef GENERATOR_FILE
extern int flag_max_errors;
#else
  int x_flag_max_errors;
#define flag_max_errors global_options.x_flag_max_errors
#endif
#ifdef GENERATOR_FILE
extern int flag_max_stack_var_size;
#else
  int x_flag_max_stack_var_size;
#define flag_max_stack_var_size global_options.x_flag_max_stack_var_size
#endif
#ifdef GENERATOR_FILE
extern int flag_max_subrecord_length;
#else
  int x_flag_max_subrecord_length;
#define flag_max_subrecord_length global_options.x_flag_max_subrecord_length
#endif
#ifdef GENERATOR_FILE
extern int mem_report;
#else
  int x_mem_report;
#define mem_report global_options.x_mem_report
#endif
#ifdef GENERATOR_FILE
extern int mem_report_wpa;
#else
  int x_mem_report_wpa;
#define mem_report_wpa global_options.x_mem_report_wpa
#endif
#ifdef GENERATOR_FILE
extern int flag_merge_constants;
#else
  int x_flag_merge_constants;
#define flag_merge_constants global_options.x_flag_merge_constants
#endif
#ifdef GENERATOR_FILE
extern int flag_merge_debug_strings;
#else
  int x_flag_merge_debug_strings;
#define flag_merge_debug_strings global_options.x_flag_merge_debug_strings
#endif
#ifdef GENERATOR_FILE
extern int flag_module_private;
#else
  int x_flag_module_private;
#define flag_module_private global_options.x_flag_module_private
#endif
#ifdef GENERATOR_FILE
extern int flag_modulo_sched;
#else
  int x_flag_modulo_sched;
#define flag_modulo_sched global_options.x_flag_modulo_sched
#endif
#ifdef GENERATOR_FILE
extern int flag_modulo_sched_allow_regmoves;
#else
  int x_flag_modulo_sched_allow_regmoves;
#define flag_modulo_sched_allow_regmoves global_options.x_flag_modulo_sched_allow_regmoves
#endif
#ifdef GENERATOR_FILE
extern int flag_move_loop_invariants;
#else
  int x_flag_move_loop_invariants;
#define flag_move_loop_invariants global_options.x_flag_move_loop_invariants
#endif
#ifdef GENERATOR_FILE
extern int flag_ms_extensions;
#else
  int x_flag_ms_extensions;
#define flag_ms_extensions global_options.x_flag_ms_extensions
#endif
#ifdef GENERATOR_FILE
extern int flag_nil_receivers;
#else
  int x_flag_nil_receivers;
#define flag_nil_receivers global_options.x_flag_nil_receivers
#endif
#ifdef GENERATOR_FILE
extern int flag_non_call_exceptions;
#else
  int x_flag_non_call_exceptions;
#define flag_non_call_exceptions global_options.x_flag_non_call_exceptions
#endif
#ifdef GENERATOR_FILE
extern int flag_no_nonansi_builtin;
#else
  int x_flag_no_nonansi_builtin;
#define flag_no_nonansi_builtin global_options.x_flag_no_nonansi_builtin
#endif
#ifdef GENERATOR_FILE
extern int flag_nothrow_opt;
#else
  int x_flag_nothrow_opt;
#define flag_nothrow_opt global_options.x_flag_nothrow_opt
#endif
#ifdef GENERATOR_FILE
extern int flag_objc_abi;
#else
  int x_flag_objc_abi;
#define flag_objc_abi global_options.x_flag_objc_abi
#endif
#ifdef GENERATOR_FILE
extern int flag_objc_call_cxx_cdtors;
#else
  int x_flag_objc_call_cxx_cdtors;
#define flag_objc_call_cxx_cdtors global_options.x_flag_objc_call_cxx_cdtors
#endif
#ifdef GENERATOR_FILE
extern int flag_objc_direct_dispatch;
#else
  int x_flag_objc_direct_dispatch;
#define flag_objc_direct_dispatch global_options.x_flag_objc_direct_dispatch
#endif
#ifdef GENERATOR_FILE
extern int flag_objc_exceptions;
#else
  int x_flag_objc_exceptions;
#define flag_objc_exceptions global_options.x_flag_objc_exceptions
#endif
#ifdef GENERATOR_FILE
extern int flag_objc_gc;
#else
  int x_flag_objc_gc;
#define flag_objc_gc global_options.x_flag_objc_gc
#endif
#ifdef GENERATOR_FILE
extern int flag_objc_nilcheck;
#else
  int x_flag_objc_nilcheck;
#define flag_objc_nilcheck global_options.x_flag_objc_nilcheck
#endif
#ifdef GENERATOR_FILE
extern int flag_objc_sjlj_exceptions;
#else
  int x_flag_objc_sjlj_exceptions;
#define flag_objc_sjlj_exceptions global_options.x_flag_objc_sjlj_exceptions
#endif
#ifdef GENERATOR_FILE
extern int flag_objc1_only;
#else
  int x_flag_objc1_only;
#define flag_objc1_only global_options.x_flag_objc1_only
#endif
#ifdef GENERATOR_FILE
extern enum offload_abi flag_offload_abi;
#else
  enum offload_abi x_flag_offload_abi;
#define flag_offload_abi global_options.x_flag_offload_abi
#endif
#ifdef GENERATOR_FILE
extern int flag_omit_frame_pointer;
#else
  int x_flag_omit_frame_pointer;
#define flag_omit_frame_pointer global_options.x_flag_omit_frame_pointer
#endif
#ifdef GENERATOR_FILE
extern int flag_openacc;
#else
  int x_flag_openacc;
#define flag_openacc global_options.x_flag_openacc
#endif
#ifdef GENERATOR_FILE
extern const char *flag_openacc_dims;
#else
  const char *x_flag_openacc_dims;
#define flag_openacc_dims global_options.x_flag_openacc_dims
#endif
#ifdef GENERATOR_FILE
extern int flag_openmp;
#else
  int x_flag_openmp;
#define flag_openmp global_options.x_flag_openmp
#endif
#ifdef GENERATOR_FILE
extern int flag_openmp_simd;
#else
  int x_flag_openmp_simd;
#define flag_openmp_simd global_options.x_flag_openmp_simd
#endif
#ifdef GENERATOR_FILE
extern int flag_opt_info;
#else
  int x_flag_opt_info;
#define flag_opt_info global_options.x_flag_opt_info
#endif
#ifdef GENERATOR_FILE
extern int flag_optimize_sibling_calls;
#else
  int x_flag_optimize_sibling_calls;
#define flag_optimize_sibling_calls global_options.x_flag_optimize_sibling_calls
#endif
#ifdef GENERATOR_FILE
extern int flag_optimize_sci;
#else
  int x_flag_optimize_sci;
#define flag_optimize_sci global_options.x_flag_optimize_sci
#endif
#ifdef GENERATOR_FILE
extern int flag_optimize_strlen;
#else
  int x_flag_optimize_strlen;
#define flag_optimize_strlen global_options.x_flag_optimize_strlen
#endif
#ifdef GENERATOR_FILE
extern int flag_pack_derived;
#else
  int x_flag_pack_derived;
#define flag_pack_derived global_options.x_flag_pack_derived
#endif
#ifdef GENERATOR_FILE
extern int flag_pack_struct;
#else
  int x_flag_pack_struct;
#define flag_pack_struct global_options.x_flag_pack_struct
#endif
#ifdef GENERATOR_FILE
extern int flag_partial_inlining;
#else
  int x_flag_partial_inlining;
#define flag_partial_inlining global_options.x_flag_partial_inlining
#endif
#ifdef GENERATOR_FILE
extern int flag_pcc_struct_return;
#else
  int x_flag_pcc_struct_return;
#define flag_pcc_struct_return global_options.x_flag_pcc_struct_return
#endif
#ifdef GENERATOR_FILE
extern int flag_peel_loops;
#else
  int x_flag_peel_loops;
#define flag_peel_loops global_options.x_flag_peel_loops
#endif
#ifdef GENERATOR_FILE
extern int flag_no_peephole;
#else
  int x_flag_no_peephole;
#define flag_no_peephole global_options.x_flag_no_peephole
#endif
#ifdef GENERATOR_FILE
extern int flag_peephole2;
#else
  int x_flag_peephole2;
#define flag_peephole2 global_options.x_flag_peephole2
#endif
#ifdef GENERATOR_FILE
extern int flag_permissive;
#else
  int x_flag_permissive;
#define flag_permissive global_options.x_flag_permissive
#endif
#ifdef GENERATOR_FILE
extern int flag_plan9_extensions;
#else
  int x_flag_plan9_extensions;
#define flag_plan9_extensions global_options.x_flag_plan9_extensions
#endif
#ifdef GENERATOR_FILE
extern int flag_plt;
#else
  int x_flag_plt;
#define flag_plt global_options.x_flag_plt
#endif
#ifdef GENERATOR_FILE
extern int post_ipa_mem_report;
#else
  int x_post_ipa_mem_report;
#define post_ipa_mem_report global_options.x_post_ipa_mem_report
#endif
#ifdef GENERATOR_FILE
extern int pre_ipa_mem_report;
#else
  int x_pre_ipa_mem_report;
#define pre_ipa_mem_report global_options.x_pre_ipa_mem_report
#endif
#ifdef GENERATOR_FILE
extern int flag_predictive_commoning;
#else
  int x_flag_predictive_commoning;
#define flag_predictive_commoning global_options.x_flag_predictive_commoning
#endif
#ifdef GENERATOR_FILE
extern int flag_prefetch_loop_arrays;
#else
  int x_flag_prefetch_loop_arrays;
#define flag_prefetch_loop_arrays global_options.x_flag_prefetch_loop_arrays
#endif
#ifdef GENERATOR_FILE
extern int flag_pretty_templates;
#else
  int x_flag_pretty_templates;
#define flag_pretty_templates global_options.x_flag_pretty_templates
#endif
#ifdef GENERATOR_FILE
extern int profile_flag;
#else
  int x_profile_flag;
#define profile_flag global_options.x_profile_flag
#endif
#ifdef GENERATOR_FILE
extern int profile_arc_flag;
#else
  int x_profile_arc_flag;
#define profile_arc_flag global_options.x_profile_arc_flag
#endif
#ifdef GENERATOR_FILE
extern int flag_profile_correction;
#else
  int x_flag_profile_correction;
#define flag_profile_correction global_options.x_flag_profile_correction
#endif
#ifdef GENERATOR_FILE
extern const char *profile_data_prefix;
#else
  const char *x_profile_data_prefix;
#define profile_data_prefix global_options.x_profile_data_prefix
#endif
#ifdef GENERATOR_FILE
extern int flag_profile_reorder_functions;
#else
  int x_flag_profile_reorder_functions;
#define flag_profile_reorder_functions global_options.x_flag_profile_reorder_functions
#endif
#ifdef GENERATOR_FILE
extern int profile_report;
#else
  int x_profile_report;
#define profile_report global_options.x_profile_report
#endif
#ifdef GENERATOR_FILE
extern int flag_profile_use;
#else
  int x_flag_profile_use;
#define flag_profile_use global_options.x_flag_profile_use
#endif
#ifdef GENERATOR_FILE
extern int flag_profile_values;
#else
  int x_flag_profile_values;
#define flag_profile_values global_options.x_flag_profile_values
#endif
#ifdef GENERATOR_FILE
extern int flag_protect_parens;
#else
  int x_flag_protect_parens;
#define flag_protect_parens global_options.x_flag_protect_parens
#endif
#ifdef GENERATOR_FILE
extern int flag_range_check;
#else
  int x_flag_range_check;
#define flag_range_check global_options.x_flag_range_check
#endif
#ifdef GENERATOR_FILE
extern int flag_real4_kind;
#else
  int x_flag_real4_kind;
#define flag_real4_kind global_options.x_flag_real4_kind
#endif
#ifdef GENERATOR_FILE
extern int flag_real8_kind;
#else
  int x_flag_real8_kind;
#define flag_real8_kind global_options.x_flag_real8_kind
#endif
#ifdef GENERATOR_FILE
extern int flag_realloc_lhs;
#else
  int x_flag_realloc_lhs;
#define flag_realloc_lhs global_options.x_flag_realloc_lhs
#endif
#ifdef GENERATOR_FILE
extern int flag_reciprocal_math;
#else
  int x_flag_reciprocal_math;
#define flag_reciprocal_math global_options.x_flag_reciprocal_math
#endif
#ifdef GENERATOR_FILE
extern int flag_record_gcc_switches;
#else
  int x_flag_record_gcc_switches;
#define flag_record_gcc_switches global_options.x_flag_record_gcc_switches
#endif
#ifdef GENERATOR_FILE
extern int flag_record_marker;
#else
  int x_flag_record_marker;
#define flag_record_marker global_options.x_flag_record_marker
#endif
#ifdef GENERATOR_FILE
extern int flag_recursive;
#else
  int x_flag_recursive;
#define flag_recursive global_options.x_flag_recursive
#endif
#ifdef GENERATOR_FILE
extern int flag_reduced_reflection;
#else
  int x_flag_reduced_reflection;
#define flag_reduced_reflection global_options.x_flag_reduced_reflection
#endif
#ifdef GENERATOR_FILE
extern int flag_ree;
#else
  int x_flag_ree;
#define flag_ree global_options.x_flag_ree
#endif
#ifdef GENERATOR_FILE
extern int flag_rename_registers;
#else
  int x_flag_rename_registers;
#define flag_rename_registers global_options.x_flag_rename_registers
#endif
#ifdef GENERATOR_FILE
extern int flag_reorder_blocks;
#else
  int x_flag_reorder_blocks;
#define flag_reorder_blocks global_options.x_flag_reorder_blocks
#endif
#ifdef GENERATOR_FILE
extern enum reorder_blocks_algorithm flag_reorder_blocks_algorithm;
#else
  enum reorder_blocks_algorithm x_flag_reorder_blocks_algorithm;
#define flag_reorder_blocks_algorithm global_options.x_flag_reorder_blocks_algorithm
#endif
#ifdef GENERATOR_FILE
extern int flag_reorder_blocks_and_partition;
#else
  int x_flag_reorder_blocks_and_partition;
#define flag_reorder_blocks_and_partition global_options.x_flag_reorder_blocks_and_partition
#endif
#ifdef GENERATOR_FILE
extern int flag_reorder_functions;
#else
  int x_flag_reorder_functions;
#define flag_reorder_functions global_options.x_flag_reorder_functions
#endif
#ifdef GENERATOR_FILE
extern int flag_repack_arrays;
#else
  int x_flag_repack_arrays;
#define flag_repack_arrays global_options.x_flag_repack_arrays
#endif
#ifdef GENERATOR_FILE
extern int flag_replace_objc_classes;
#else
  int x_flag_replace_objc_classes;
#define flag_replace_objc_classes global_options.x_flag_replace_objc_classes
#endif
#ifdef GENERATOR_FILE
extern int flag_report_bug;
#else
  int x_flag_report_bug;
#define flag_report_bug global_options.x_flag_report_bug
#endif
#ifdef GENERATOR_FILE
extern int go_require_return_statement;
#else
  int x_go_require_return_statement;
#define go_require_return_statement global_options.x_go_require_return_statement
#endif
#ifdef GENERATOR_FILE
extern int flag_rerun_cse_after_loop;
#else
  int x_flag_rerun_cse_after_loop;
#define flag_rerun_cse_after_loop global_options.x_flag_rerun_cse_after_loop
#endif
#ifdef GENERATOR_FILE
extern int flag_resched_modulo_sched;
#else
  int x_flag_resched_modulo_sched;
#define flag_resched_modulo_sched global_options.x_flag_resched_modulo_sched
#endif
#ifdef GENERATOR_FILE
extern int flag_rounding_math;
#else
  int x_flag_rounding_math;
#define flag_rounding_math global_options.x_flag_rounding_math
#endif
#ifdef GENERATOR_FILE
extern int flag_rtti;
#else
  int x_flag_rtti;
#define flag_rtti global_options.x_flag_rtti
#endif
#ifdef GENERATOR_FILE
extern int flag_sanitize_coverage;
#else
  int x_flag_sanitize_coverage;
#define flag_sanitize_coverage global_options.x_flag_sanitize_coverage
#endif
#ifdef GENERATOR_FILE
extern int flag_sanitize_undefined_trap_on_error;
#else
  int x_flag_sanitize_undefined_trap_on_error;
#define flag_sanitize_undefined_trap_on_error global_options.x_flag_sanitize_undefined_trap_on_error
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_critical_path_heuristic;
#else
  int x_flag_sched_critical_path_heuristic;
#define flag_sched_critical_path_heuristic global_options.x_flag_sched_critical_path_heuristic
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_dep_count_heuristic;
#else
  int x_flag_sched_dep_count_heuristic;
#define flag_sched_dep_count_heuristic global_options.x_flag_sched_dep_count_heuristic
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_group_heuristic;
#else
  int x_flag_sched_group_heuristic;
#define flag_sched_group_heuristic global_options.x_flag_sched_group_heuristic
#endif
#ifdef GENERATOR_FILE
extern int flag_schedule_interblock;
#else
  int x_flag_schedule_interblock;
#define flag_schedule_interblock global_options.x_flag_schedule_interblock
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_last_insn_heuristic;
#else
  int x_flag_sched_last_insn_heuristic;
#define flag_sched_last_insn_heuristic global_options.x_flag_sched_last_insn_heuristic
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_pressure;
#else
  int x_flag_sched_pressure;
#define flag_sched_pressure global_options.x_flag_sched_pressure
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_rank_heuristic;
#else
  int x_flag_sched_rank_heuristic;
#define flag_sched_rank_heuristic global_options.x_flag_sched_rank_heuristic
#endif
#ifdef GENERATOR_FILE
extern int flag_schedule_speculative;
#else
  int x_flag_schedule_speculative;
#define flag_schedule_speculative global_options.x_flag_schedule_speculative
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_spec_insn_heuristic;
#else
  int x_flag_sched_spec_insn_heuristic;
#define flag_sched_spec_insn_heuristic global_options.x_flag_sched_spec_insn_heuristic
#endif
#ifdef GENERATOR_FILE
extern int flag_schedule_speculative_load;
#else
  int x_flag_schedule_speculative_load;
#define flag_schedule_speculative_load global_options.x_flag_schedule_speculative_load
#endif
#ifdef GENERATOR_FILE
extern int flag_schedule_speculative_load_dangerous;
#else
  int x_flag_schedule_speculative_load_dangerous;
#define flag_schedule_speculative_load_dangerous global_options.x_flag_schedule_speculative_load_dangerous
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_stalled_insns;
#else
  int x_flag_sched_stalled_insns;
#define flag_sched_stalled_insns global_options.x_flag_sched_stalled_insns
#endif
#ifdef GENERATOR_FILE
extern int flag_sched_stalled_insns_dep;
#else
  int x_flag_sched_stalled_insns_dep;
#define flag_sched_stalled_insns_dep global_options.x_flag_sched_stalled_insns_dep
#endif
#ifdef GENERATOR_FILE
extern int sched_verbose_param;
#else
  int x_sched_verbose_param;
#define sched_verbose_param global_options.x_sched_verbose_param
#endif
#ifdef GENERATOR_FILE
extern int flag_sched2_use_superblocks;
#else
  int x_flag_sched2_use_superblocks;
#define flag_sched2_use_superblocks global_options.x_flag_sched2_use_superblocks
#endif
#ifdef GENERATOR_FILE
extern int flag_schedule_fusion;
#else
  int x_flag_schedule_fusion;
#define flag_schedule_fusion global_options.x_flag_schedule_fusion
#endif
#ifdef GENERATOR_FILE
extern int flag_schedule_insns;
#else
  int x_flag_schedule_insns;
#define flag_schedule_insns global_options.x_flag_schedule_insns
#endif
#ifdef GENERATOR_FILE
extern int flag_schedule_insns_after_reload;
#else
  int x_flag_schedule_insns_after_reload;
#define flag_schedule_insns_after_reload global_options.x_flag_schedule_insns_after_reload
#endif
#ifdef GENERATOR_FILE
extern int flag_second_underscore;
#else
  int x_flag_second_underscore;
#define flag_second_underscore global_options.x_flag_second_underscore
#endif
#ifdef GENERATOR_FILE
extern int flag_section_anchors;
#else
  int x_flag_section_anchors;
#define flag_section_anchors global_options.x_flag_section_anchors
#endif
#ifdef GENERATOR_FILE
extern int flag_sel_sched_pipelining;
#else
  int x_flag_sel_sched_pipelining;
#define flag_sel_sched_pipelining global_options.x_flag_sel_sched_pipelining
#endif
#ifdef GENERATOR_FILE
extern int flag_sel_sched_pipelining_outer_loops;
#else
  int x_flag_sel_sched_pipelining_outer_loops;
#define flag_sel_sched_pipelining_outer_loops global_options.x_flag_sel_sched_pipelining_outer_loops
#endif
#ifdef GENERATOR_FILE
extern int flag_sel_sched_reschedule_pipelined;
#else
  int x_flag_sel_sched_reschedule_pipelined;
#define flag_sel_sched_reschedule_pipelined global_options.x_flag_sel_sched_reschedule_pipelined
#endif
#ifdef GENERATOR_FILE
extern int flag_selective_scheduling;
#else
  int x_flag_selective_scheduling;
#define flag_selective_scheduling global_options.x_flag_selective_scheduling
#endif
#ifdef GENERATOR_FILE
extern int flag_selective_scheduling2;
#else
  int x_flag_selective_scheduling2;
#define flag_selective_scheduling2 global_options.x_flag_selective_scheduling2
#endif
#ifdef GENERATOR_FILE
extern int flag_semantic_interposition;
#else
  int x_flag_semantic_interposition;
#define flag_semantic_interposition global_options.x_flag_semantic_interposition
#endif
#ifdef GENERATOR_FILE
extern int flag_short_enums;
#else
  int x_flag_short_enums;
#define flag_short_enums global_options.x_flag_short_enums
#endif
#ifdef GENERATOR_FILE
extern int flag_short_wchar;
#else
  int x_flag_short_wchar;
#define flag_short_wchar global_options.x_flag_short_wchar
#endif
#ifdef GENERATOR_FILE
extern int flag_show_column;
#else
  int x_flag_show_column;
#define flag_show_column global_options.x_flag_show_column
#endif
#ifdef GENERATOR_FILE
extern int flag_shrink_wrap;
#else
  int x_flag_shrink_wrap;
#define flag_shrink_wrap global_options.x_flag_shrink_wrap
#endif
#ifdef GENERATOR_FILE
extern int flag_sign_zero;
#else
  int x_flag_sign_zero;
#define flag_sign_zero global_options.x_flag_sign_zero
#endif
#ifdef GENERATOR_FILE
extern int flag_signaling_nans;
#else
  int x_flag_signaling_nans;
#define flag_signaling_nans global_options.x_flag_signaling_nans
#endif
#ifdef GENERATOR_FILE
extern int flag_signed_bitfields;
#else
  int x_flag_signed_bitfields;
#define flag_signed_bitfields global_options.x_flag_signed_bitfields
#endif
#ifdef GENERATOR_FILE
extern int flag_signed_char;
#else
  int x_flag_signed_char;
#define flag_signed_char global_options.x_flag_signed_char
#endif
#ifdef GENERATOR_FILE
extern int flag_signed_zeros;
#else
  int x_flag_signed_zeros;
#define flag_signed_zeros global_options.x_flag_signed_zeros
#endif
#ifdef GENERATOR_FILE
extern enum vect_cost_model flag_simd_cost_model;
#else
  enum vect_cost_model x_flag_simd_cost_model;
#define flag_simd_cost_model global_options.x_flag_simd_cost_model
#endif
#ifdef GENERATOR_FILE
extern int flag_single_precision_constant;
#else
  int x_flag_single_precision_constant;
#define flag_single_precision_constant global_options.x_flag_single_precision_constant
#endif
#ifdef GENERATOR_FILE
extern int flag_sized_deallocation;
#else
  int x_flag_sized_deallocation;
#define flag_sized_deallocation global_options.x_flag_sized_deallocation
#endif
#ifdef GENERATOR_FILE
extern int flag_split_ivs_in_unroller;
#else
  int x_flag_split_ivs_in_unroller;
#define flag_split_ivs_in_unroller global_options.x_flag_split_ivs_in_unroller
#endif
#ifdef GENERATOR_FILE
extern int flag_split_paths;
#else
  int x_flag_split_paths;
#define flag_split_paths global_options.x_flag_split_paths
#endif
#ifdef GENERATOR_FILE
extern int flag_split_stack;
#else
  int x_flag_split_stack;
#define flag_split_stack global_options.x_flag_split_stack
#endif
#ifdef GENERATOR_FILE
extern int flag_split_wide_types;
#else
  int x_flag_split_wide_types;
#define flag_split_wide_types global_options.x_flag_split_wide_types
#endif
#ifdef GENERATOR_FILE
extern int flag_ssa_backprop;
#else
  int x_flag_ssa_backprop;
#define flag_ssa_backprop global_options.x_flag_ssa_backprop
#endif
#ifdef GENERATOR_FILE
extern int flag_ssa_phiopt;
#else
  int x_flag_ssa_phiopt;
#define flag_ssa_phiopt global_options.x_flag_ssa_phiopt
#endif
#ifdef GENERATOR_FILE
extern enum scalar_storage_order_kind default_sso;
#else
  enum scalar_storage_order_kind x_default_sso;
#define default_sso global_options.x_default_sso
#endif
#ifdef GENERATOR_FILE
extern int flag_stack_arrays;
#else
  int x_flag_stack_arrays;
#define flag_stack_arrays global_options.x_flag_stack_arrays
#endif
#ifdef GENERATOR_FILE
extern int flag_stack_protect;
#else
  int x_flag_stack_protect;
#define flag_stack_protect global_options.x_flag_stack_protect
#endif
#ifdef GENERATOR_FILE
extern enum stack_reuse_level flag_stack_reuse;
#else
  enum stack_reuse_level x_flag_stack_reuse;
#define flag_stack_reuse global_options.x_flag_stack_reuse
#endif
#ifdef GENERATOR_FILE
extern int flag_stack_usage;
#else
  int x_flag_stack_usage;
#define flag_stack_usage global_options.x_flag_stack_usage
#endif
#ifdef GENERATOR_FILE
extern int flag_detailed_statistics;
#else
  int x_flag_detailed_statistics;
#define flag_detailed_statistics global_options.x_flag_detailed_statistics
#endif
#ifdef GENERATOR_FILE
extern int flag_stdarg_opt;
#else
  int x_flag_stdarg_opt;
#define flag_stdarg_opt global_options.x_flag_stdarg_opt
#endif
#ifdef GENERATOR_FILE
extern int flag_store_check;
#else
  int x_flag_store_check;
#define flag_store_check global_options.x_flag_store_check
#endif
#ifdef GENERATOR_FILE
extern int flag_strict_aliasing;
#else
  int x_flag_strict_aliasing;
#define flag_strict_aliasing global_options.x_flag_strict_aliasing
#endif
#ifdef GENERATOR_FILE
extern int flag_strict_enums;
#else
  int x_flag_strict_enums;
#define flag_strict_enums global_options.x_flag_strict_enums
#endif
#ifdef GENERATOR_FILE
extern int flag_strict_overflow;
#else
  int x_flag_strict_overflow;
#define flag_strict_overflow global_options.x_flag_strict_overflow
#endif
#ifdef GENERATOR_FILE
extern int flag_strict_volatile_bitfields;
#else
  int x_flag_strict_volatile_bitfields;
#define flag_strict_volatile_bitfields global_options.x_flag_strict_volatile_bitfields
#endif
#ifdef GENERATOR_FILE
extern int flag_sync_libcalls;
#else
  int x_flag_sync_libcalls;
#define flag_sync_libcalls global_options.x_flag_sync_libcalls
#endif
#ifdef GENERATOR_FILE
extern int flag_syntax_only;
#else
  int x_flag_syntax_only;
#define flag_syntax_only global_options.x_flag_syntax_only
#endif
#ifdef GENERATOR_FILE
extern int template_backtrace_limit;
#else
  int x_template_backtrace_limit;
#define template_backtrace_limit global_options.x_template_backtrace_limit
#endif
#ifdef GENERATOR_FILE
extern int flag_test_coverage;
#else
  int x_flag_test_coverage;
#define flag_test_coverage global_options.x_flag_test_coverage
#endif
#ifdef GENERATOR_FILE
extern int flag_thread_jumps;
#else
  int x_flag_thread_jumps;
#define flag_thread_jumps global_options.x_flag_thread_jumps
#endif
#ifdef GENERATOR_FILE
extern int flag_threadsafe_statics;
#else
  int x_flag_threadsafe_statics;
#define flag_threadsafe_statics global_options.x_flag_threadsafe_statics
#endif
#ifdef GENERATOR_FILE
extern int time_report;
#else
  int x_time_report;
#define time_report global_options.x_time_report
#endif
#ifdef GENERATOR_FILE
extern enum tls_model flag_tls_default;
#else
  enum tls_model x_flag_tls_default;
#define flag_tls_default global_options.x_flag_tls_default
#endif
#ifdef GENERATOR_FILE
extern int flag_toplevel_reorder;
#else
  int x_flag_toplevel_reorder;
#define flag_toplevel_reorder global_options.x_flag_toplevel_reorder
#endif
#ifdef GENERATOR_FILE
extern int flag_tracer;
#else
  int x_flag_tracer;
#define flag_tracer global_options.x_flag_tracer
#endif
#ifdef GENERATOR_FILE
extern int flag_trapping_math;
#else
  int x_flag_trapping_math;
#define flag_trapping_math global_options.x_flag_trapping_math
#endif
#ifdef GENERATOR_FILE
extern int flag_trapv;
#else
  int x_flag_trapv;
#define flag_trapv global_options.x_flag_trapv
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_bit_ccp;
#else
  int x_flag_tree_bit_ccp;
#define flag_tree_bit_ccp global_options.x_flag_tree_bit_ccp
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_builtin_call_dce;
#else
  int x_flag_tree_builtin_call_dce;
#define flag_tree_builtin_call_dce global_options.x_flag_tree_builtin_call_dce
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_ccp;
#else
  int x_flag_tree_ccp;
#define flag_tree_ccp global_options.x_flag_tree_ccp
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_ch;
#else
  int x_flag_tree_ch;
#define flag_tree_ch global_options.x_flag_tree_ch
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_coalesce_vars;
#else
  int x_flag_tree_coalesce_vars;
#define flag_tree_coalesce_vars global_options.x_flag_tree_coalesce_vars
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_copy_prop;
#else
  int x_flag_tree_copy_prop;
#define flag_tree_copy_prop global_options.x_flag_tree_copy_prop
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_cselim;
#else
  int x_flag_tree_cselim;
#define flag_tree_cselim global_options.x_flag_tree_cselim
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_dce;
#else
  int x_flag_tree_dce;
#define flag_tree_dce global_options.x_flag_tree_dce
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_dom;
#else
  int x_flag_tree_dom;
#define flag_tree_dom global_options.x_flag_tree_dom
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_dse;
#else
  int x_flag_tree_dse;
#define flag_tree_dse global_options.x_flag_tree_dse
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_forwprop;
#else
  int x_flag_tree_forwprop;
#define flag_tree_forwprop global_options.x_flag_tree_forwprop
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_fre;
#else
  int x_flag_tree_fre;
#define flag_tree_fre global_options.x_flag_tree_fre
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_distribute_patterns;
#else
  int x_flag_tree_loop_distribute_patterns;
#define flag_tree_loop_distribute_patterns global_options.x_flag_tree_loop_distribute_patterns
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_distribution;
#else
  int x_flag_tree_loop_distribution;
#define flag_tree_loop_distribution global_options.x_flag_tree_loop_distribution
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_if_convert;
#else
  int x_flag_tree_loop_if_convert;
#define flag_tree_loop_if_convert global_options.x_flag_tree_loop_if_convert
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_if_convert_stores;
#else
  int x_flag_tree_loop_if_convert_stores;
#define flag_tree_loop_if_convert_stores global_options.x_flag_tree_loop_if_convert_stores
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_im;
#else
  int x_flag_tree_loop_im;
#define flag_tree_loop_im global_options.x_flag_tree_loop_im
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_ivcanon;
#else
  int x_flag_tree_loop_ivcanon;
#define flag_tree_loop_ivcanon global_options.x_flag_tree_loop_ivcanon
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_optimize;
#else
  int x_flag_tree_loop_optimize;
#define flag_tree_loop_optimize global_options.x_flag_tree_loop_optimize
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_loop_vectorize;
#else
  int x_flag_tree_loop_vectorize;
#define flag_tree_loop_vectorize global_options.x_flag_tree_loop_vectorize
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_live_range_split;
#else
  int x_flag_tree_live_range_split;
#define flag_tree_live_range_split global_options.x_flag_tree_live_range_split
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_parallelize_loops;
#else
  int x_flag_tree_parallelize_loops;
#define flag_tree_parallelize_loops global_options.x_flag_tree_parallelize_loops
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_partial_pre;
#else
  int x_flag_tree_partial_pre;
#define flag_tree_partial_pre global_options.x_flag_tree_partial_pre
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_phiprop;
#else
  int x_flag_tree_phiprop;
#define flag_tree_phiprop global_options.x_flag_tree_phiprop
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_pre;
#else
  int x_flag_tree_pre;
#define flag_tree_pre global_options.x_flag_tree_pre
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_pta;
#else
  int x_flag_tree_pta;
#define flag_tree_pta global_options.x_flag_tree_pta
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_reassoc;
#else
  int x_flag_tree_reassoc;
#define flag_tree_reassoc global_options.x_flag_tree_reassoc
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_scev_cprop;
#else
  int x_flag_tree_scev_cprop;
#define flag_tree_scev_cprop global_options.x_flag_tree_scev_cprop
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_sink;
#else
  int x_flag_tree_sink;
#define flag_tree_sink global_options.x_flag_tree_sink
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_slp_vectorize;
#else
  int x_flag_tree_slp_vectorize;
#define flag_tree_slp_vectorize global_options.x_flag_tree_slp_vectorize
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_slsr;
#else
  int x_flag_tree_slsr;
#define flag_tree_slsr global_options.x_flag_tree_slsr
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_sra;
#else
  int x_flag_tree_sra;
#define flag_tree_sra global_options.x_flag_tree_sra
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_switch_conversion;
#else
  int x_flag_tree_switch_conversion;
#define flag_tree_switch_conversion global_options.x_flag_tree_switch_conversion
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_tail_merge;
#else
  int x_flag_tree_tail_merge;
#define flag_tree_tail_merge global_options.x_flag_tree_tail_merge
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_ter;
#else
  int x_flag_tree_ter;
#define flag_tree_ter global_options.x_flag_tree_ter
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_vectorize;
#else
  int x_flag_tree_vectorize;
#define flag_tree_vectorize global_options.x_flag_tree_vectorize
#endif
#ifdef GENERATOR_FILE
extern int flag_tree_vrp;
#else
  int x_flag_tree_vrp;
#define flag_tree_vrp global_options.x_flag_tree_vrp
#endif
#ifdef GENERATOR_FILE
extern int flag_unconstrained_commons;
#else
  int x_flag_unconstrained_commons;
#define flag_unconstrained_commons global_options.x_flag_unconstrained_commons
#endif
#ifdef GENERATOR_FILE
extern int flag_underscoring;
#else
  int x_flag_underscoring;
#define flag_underscoring global_options.x_flag_underscoring
#endif
#ifdef GENERATOR_FILE
extern int flag_unit_at_a_time;
#else
  int x_flag_unit_at_a_time;
#define flag_unit_at_a_time global_options.x_flag_unit_at_a_time
#endif
#ifdef GENERATOR_FILE
extern int flag_unroll_all_loops;
#else
  int x_flag_unroll_all_loops;
#define flag_unroll_all_loops global_options.x_flag_unroll_all_loops
#endif
#ifdef GENERATOR_FILE
extern int flag_unroll_loops;
#else
  int x_flag_unroll_loops;
#define flag_unroll_loops global_options.x_flag_unroll_loops
#endif
#ifdef GENERATOR_FILE
extern int flag_unsafe_loop_optimizations;
#else
  int x_flag_unsafe_loop_optimizations;
#define flag_unsafe_loop_optimizations global_options.x_flag_unsafe_loop_optimizations
#endif
#ifdef GENERATOR_FILE
extern int flag_unsafe_math_optimizations;
#else
  int x_flag_unsafe_math_optimizations;
#define flag_unsafe_math_optimizations global_options.x_flag_unsafe_math_optimizations
#endif
#ifdef GENERATOR_FILE
extern int flag_unswitch_loops;
#else
  int x_flag_unswitch_loops;
#define flag_unswitch_loops global_options.x_flag_unswitch_loops
#endif
#ifdef GENERATOR_FILE
extern int flag_unwind_tables;
#else
  int x_flag_unwind_tables;
#define flag_unwind_tables global_options.x_flag_unwind_tables
#endif
#ifdef GENERATOR_FILE
extern int flag_use_atomic_builtins;
#else
  int x_flag_use_atomic_builtins;
#define flag_use_atomic_builtins global_options.x_flag_use_atomic_builtins
#endif
#ifdef GENERATOR_FILE
extern int flag_use_boehm_gc;
#else
  int x_flag_use_boehm_gc;
#define flag_use_boehm_gc global_options.x_flag_use_boehm_gc
#endif
#ifdef GENERATOR_FILE
extern int flag_use_cxa_atexit;
#else
  int x_flag_use_cxa_atexit;
#define flag_use_cxa_atexit global_options.x_flag_use_cxa_atexit
#endif
#ifdef GENERATOR_FILE
extern int flag_use_cxa_get_exception_ptr;
#else
  int x_flag_use_cxa_get_exception_ptr;
#define flag_use_cxa_get_exception_ptr global_options.x_flag_use_cxa_get_exception_ptr
#endif
#ifdef GENERATOR_FILE
extern int flag_use_divide_subroutine;
#else
  int x_flag_use_divide_subroutine;
#define flag_use_divide_subroutine global_options.x_flag_use_divide_subroutine
#endif
#ifdef GENERATOR_FILE
extern int flag_use_linker_plugin;
#else
  int x_flag_use_linker_plugin;
#define flag_use_linker_plugin global_options.x_flag_use_linker_plugin
#endif
#ifdef GENERATOR_FILE
extern int flag_var_tracking;
#else
  int x_flag_var_tracking;
#define flag_var_tracking global_options.x_flag_var_tracking
#endif
#ifdef GENERATOR_FILE
extern int flag_var_tracking_assignments;
#else
  int x_flag_var_tracking_assignments;
#define flag_var_tracking_assignments global_options.x_flag_var_tracking_assignments
#endif
#ifdef GENERATOR_FILE
extern int flag_var_tracking_assignments_toggle;
#else
  int x_flag_var_tracking_assignments_toggle;
#define flag_var_tracking_assignments_toggle global_options.x_flag_var_tracking_assignments_toggle
#endif
#ifdef GENERATOR_FILE
extern int flag_var_tracking_uninit;
#else
  int x_flag_var_tracking_uninit;
#define flag_var_tracking_uninit global_options.x_flag_var_tracking_uninit
#endif
#ifdef GENERATOR_FILE
extern int flag_variable_expansion_in_unroller;
#else
  int x_flag_variable_expansion_in_unroller;
#define flag_variable_expansion_in_unroller global_options.x_flag_variable_expansion_in_unroller
#endif
#ifdef GENERATOR_FILE
extern enum vect_cost_model flag_vect_cost_model;
#else
  enum vect_cost_model x_flag_vect_cost_model;
#define flag_vect_cost_model global_options.x_flag_vect_cost_model
#endif
#ifdef GENERATOR_FILE
extern int flag_verbose_asm;
#else
  int x_flag_verbose_asm;
#define flag_verbose_asm global_options.x_flag_verbose_asm
#endif
#ifdef GENERATOR_FILE
extern int flag_visibility_ms_compat;
#else
  int x_flag_visibility_ms_compat;
#define flag_visibility_ms_compat global_options.x_flag_visibility_ms_compat
#endif
#ifdef GENERATOR_FILE
extern enum symbol_visibility default_visibility;
#else
  enum symbol_visibility x_default_visibility;
#define default_visibility global_options.x_default_visibility
#endif
#ifdef GENERATOR_FILE
extern int flag_value_profile_transformations;
#else
  int x_flag_value_profile_transformations;
#define flag_value_profile_transformations global_options.x_flag_value_profile_transformations
#endif
#ifdef GENERATOR_FILE
extern enum vtv_priority flag_vtable_verify;
#else
  enum vtv_priority x_flag_vtable_verify;
#define flag_vtable_verify global_options.x_flag_vtable_verify
#endif
#ifdef GENERATOR_FILE
extern int flag_vtv_counts;
#else
  int x_flag_vtv_counts;
#define flag_vtv_counts global_options.x_flag_vtv_counts
#endif
#ifdef GENERATOR_FILE
extern int flag_vtv_debug;
#else
  int x_flag_vtv_debug;
#define flag_vtv_debug global_options.x_flag_vtv_debug
#endif
#ifdef GENERATOR_FILE
extern int flag_weak;
#else
  int x_flag_weak;
#define flag_weak global_options.x_flag_weak
#endif
#ifdef GENERATOR_FILE
extern int flag_web;
#else
  int x_flag_web;
#define flag_web global_options.x_flag_web
#endif
#ifdef GENERATOR_FILE
extern int flag_whole_program;
#else
  int x_flag_whole_program;
#define flag_whole_program global_options.x_flag_whole_program
#endif
#ifdef GENERATOR_FILE
extern int flag_working_directory;
#else
  int x_flag_working_directory;
#define flag_working_directory global_options.x_flag_working_directory
#endif
#ifdef GENERATOR_FILE
extern const char *flag_wpa;
#else
  const char *x_flag_wpa;
#define flag_wpa global_options.x_flag_wpa
#endif
#ifdef GENERATOR_FILE
extern int flag_wrapv;
#else
  int x_flag_wrapv;
#define flag_wrapv global_options.x_flag_wrapv
#endif
#ifdef GENERATOR_FILE
extern int flag_zero_initialized_in_bss;
#else
  int x_flag_zero_initialized_in_bss;
#define flag_zero_initialized_in_bss global_options.x_flag_zero_initialized_in_bss
#endif
#ifdef GENERATOR_FILE
extern int flag_zero_link;
#else
  int x_flag_zero_link;
#define flag_zero_link global_options.x_flag_zero_link
#endif
#ifdef GENERATOR_FILE
extern int dwarf_version;
#else
  int x_dwarf_version;
#define dwarf_version global_options.x_dwarf_version
#endif
#ifdef GENERATOR_FILE
extern int flag_gen_declaration;
#else
  int x_flag_gen_declaration;
#define flag_gen_declaration global_options.x_flag_gen_declaration
#endif
#ifdef GENERATOR_FILE
extern int debug_generate_pub_sections;
#else
  int x_debug_generate_pub_sections;
#define debug_generate_pub_sections global_options.x_debug_generate_pub_sections
#endif
#ifdef GENERATOR_FILE
extern int dwarf_record_gcc_switches;
#else
  int x_dwarf_record_gcc_switches;
#define dwarf_record_gcc_switches global_options.x_dwarf_record_gcc_switches
#endif
#ifdef GENERATOR_FILE
extern int dwarf_split_debug_info;
#else
  int x_dwarf_split_debug_info;
#define dwarf_split_debug_info global_options.x_dwarf_split_debug_info
#endif
#ifdef GENERATOR_FILE
extern int dwarf_strict;
#else
  int x_dwarf_strict;
#define dwarf_strict global_options.x_dwarf_strict
#endif
#ifdef GENERATOR_FILE
extern int flag_gtoggle;
#else
  int x_flag_gtoggle;
#define flag_gtoggle global_options.x_flag_gtoggle
#endif
#ifdef GENERATOR_FILE
extern const char *imultiarch;
#else
  const char *x_imultiarch;
#define imultiarch global_options.x_imultiarch
#endif
#ifdef GENERATOR_FILE
extern const char *plugindir_string;
#else
  const char *x_plugindir_string;
#define plugindir_string global_options.x_plugindir_string
#endif
#ifdef GENERATOR_FILE
extern int aarch64_abi;
#else
  int x_aarch64_abi;
#define aarch64_abi global_options.x_aarch64_abi
#endif
#ifdef GENERATOR_FILE
extern const char *aarch64_arch_string;
#else
  const char *x_aarch64_arch_string;
#define aarch64_arch_string global_options.x_aarch64_arch_string
#endif
#ifdef GENERATOR_FILE
extern int linux_libc;
#else
  int x_linux_libc;
#define linux_libc global_options.x_linux_libc
#endif
#ifdef GENERATOR_FILE
extern enum aarch64_code_model aarch64_cmodel_var;
#else
  enum aarch64_code_model x_aarch64_cmodel_var;
#define aarch64_cmodel_var global_options.x_aarch64_cmodel_var
#endif
#ifdef GENERATOR_FILE
extern const char *aarch64_cpu_string;
#else
  const char *x_aarch64_cpu_string;
#define aarch64_cpu_string global_options.x_aarch64_cpu_string
#endif
#ifdef GENERATOR_FILE
extern int aarch64_fix_a53_err835769;
#else
  int x_aarch64_fix_a53_err835769;
#define aarch64_fix_a53_err835769 global_options.x_aarch64_fix_a53_err835769
#endif
#ifdef GENERATOR_FILE
extern int aarch64_fix_a53_err843419;
#else
  int x_aarch64_fix_a53_err843419;
#define aarch64_fix_a53_err843419 global_options.x_aarch64_fix_a53_err843419
#endif
#ifdef GENERATOR_FILE
extern int flag_mlow_precision_div;
#else
  int x_flag_mlow_precision_div;
#define flag_mlow_precision_div global_options.x_flag_mlow_precision_div
#endif
#ifdef GENERATOR_FILE
extern int flag_mrecip_low_precision_sqrt;
#else
  int x_flag_mrecip_low_precision_sqrt;
#define flag_mrecip_low_precision_sqrt global_options.x_flag_mrecip_low_precision_sqrt
#endif
#ifdef GENERATOR_FILE
extern int flag_mlow_precision_sqrt;
#else
  int x_flag_mlow_precision_sqrt;
#define flag_mlow_precision_sqrt global_options.x_flag_mlow_precision_sqrt
#endif
#ifdef GENERATOR_FILE
extern int flag_omit_leaf_frame_pointer;
#else
  int x_flag_omit_leaf_frame_pointer;
#define flag_omit_leaf_frame_pointer global_options.x_flag_omit_leaf_frame_pointer
#endif
#ifdef GENERATOR_FILE
extern const char *aarch64_override_tune_string;
#else
  const char *x_aarch64_override_tune_string;
#define aarch64_override_tune_string global_options.x_aarch64_override_tune_string
#endif
#ifdef GENERATOR_FILE
extern int pcrelative_literal_loads;
#else
  int x_pcrelative_literal_loads;
#define pcrelative_literal_loads global_options.x_pcrelative_literal_loads
#endif
#ifdef GENERATOR_FILE
extern enum aarch64_tls_type aarch64_tls_dialect;
#else
  enum aarch64_tls_type x_aarch64_tls_dialect;
#define aarch64_tls_dialect global_options.x_aarch64_tls_dialect
#endif
#ifdef GENERATOR_FILE
extern int aarch64_tls_size;
#else
  int x_aarch64_tls_size;
#define aarch64_tls_size global_options.x_aarch64_tls_size
#endif
#ifdef GENERATOR_FILE
extern const char *aarch64_tune_string;
#else
  const char *x_aarch64_tune_string;
#define aarch64_tune_string global_options.x_aarch64_tune_string
#endif
#ifdef GENERATOR_FILE
extern int flag_aarch64_verbose_cost;
#else
  int x_flag_aarch64_verbose_cost;
#define flag_aarch64_verbose_cost global_options.x_flag_aarch64_verbose_cost
#endif
#ifdef GENERATOR_FILE
extern const char *asm_file_name;
#else
  const char *x_asm_file_name;
#define asm_file_name global_options.x_asm_file_name
#endif
#ifdef GENERATOR_FILE
extern int pass_exit_codes;
#else
  int x_pass_exit_codes;
#define pass_exit_codes global_options.x_pass_exit_codes
#endif
#ifdef GENERATOR_FILE
extern int flag_pedantic_errors;
#else
  int x_flag_pedantic_errors;
#define flag_pedantic_errors global_options.x_flag_pedantic_errors
#endif
#ifdef GENERATOR_FILE
extern int use_pipes;
#else
  int x_use_pipes;
#define use_pipes global_options.x_use_pipes
#endif
#ifdef GENERATOR_FILE
extern const char *print_file_name;
#else
  const char *x_print_file_name;
#define print_file_name global_options.x_print_file_name
#endif
#ifdef GENERATOR_FILE
extern int print_multi_directory;
#else
  int x_print_multi_directory;
#define print_multi_directory global_options.x_print_multi_directory
#endif
#ifdef GENERATOR_FILE
extern int print_multi_lib;
#else
  int x_print_multi_lib;
#define print_multi_lib global_options.x_print_multi_lib
#endif
#ifdef GENERATOR_FILE
extern int print_multi_os_directory;
#else
  int x_print_multi_os_directory;
#define print_multi_os_directory global_options.x_print_multi_os_directory
#endif
#ifdef GENERATOR_FILE
extern int print_multiarch;
#else
  int x_print_multiarch;
#define print_multiarch global_options.x_print_multiarch
#endif
#ifdef GENERATOR_FILE
extern const char *print_prog_name;
#else
  const char *x_print_prog_name;
#define print_prog_name global_options.x_print_prog_name
#endif
#ifdef GENERATOR_FILE
extern int print_search_dirs;
#else
  int x_print_search_dirs;
#define print_search_dirs global_options.x_print_search_dirs
#endif
#ifdef GENERATOR_FILE
extern int print_sysroot;
#else
  int x_print_sysroot;
#define print_sysroot global_options.x_print_sysroot
#endif
#ifdef GENERATOR_FILE
extern int print_sysroot_headers_suffix;
#else
  int x_print_sysroot_headers_suffix;
#define print_sysroot_headers_suffix global_options.x_print_sysroot_headers_suffix
#endif
#ifdef GENERATOR_FILE
extern int quiet_flag;
#else
  int x_quiet_flag;
#define quiet_flag global_options.x_quiet_flag
#endif
#ifdef GENERATOR_FILE
extern int report_times;
#else
  int x_report_times;
#define report_times global_options.x_report_times
#endif
#ifdef GENERATOR_FILE
extern int flag_undef;
#else
  int x_flag_undef;
#define flag_undef global_options.x_flag_undef
#endif
#ifdef GENERATOR_FILE
extern int verbose_flag;
#else
  int x_verbose_flag;
#define verbose_flag global_options.x_verbose_flag
#endif
#ifdef GENERATOR_FILE
extern int version_flag;
#else
  int x_version_flag;
#define version_flag global_options.x_version_flag
#endif
#ifdef GENERATOR_FILE
extern int inhibit_warnings;
#else
  int x_inhibit_warnings;
#define inhibit_warnings global_options.x_inhibit_warnings
#endif
#ifdef GENERATOR_FILE
extern const char *wrapper_string;
#else
  const char *x_wrapper_string;
#define wrapper_string global_options.x_wrapper_string
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_associative_math;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_cx_limited_range;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_finite_math_only;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_errno_math;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_reciprocal_math;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_rounding_math;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_signaling_nans;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_signed_zeros;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_trapping_math;
#endif
#ifndef GENERATOR_FILE
  bool frontend_set_flag_unsafe_math_optimizations;
#endif
#ifndef GENERATOR_FILE
};
extern struct gcc_options global_options;
extern const struct gcc_options global_options_init;
extern struct gcc_options global_options_set;
#define target_flags_explicit global_options_set.x_target_flags
#endif
#endif
 
#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)
 
/* Structure to save/restore optimization and target specific options.  */
struct GTY(()) cl_optimization
{
  int x_align_functions;
  int x_align_jumps;
  int x_align_labels;
  int x_align_loops;
  int x_flag_sched_stalled_insns;
  int x_flag_sched_stalled_insns_dep;
  int x_flag_tree_parallelize_loops;
  enum fp_contract_mode x_flag_fp_contract_mode;
  enum ira_algorithm x_flag_ira_algorithm;
  enum ira_region x_flag_ira_region;
  enum reorder_blocks_algorithm x_flag_reorder_blocks_algorithm;
  enum vect_cost_model x_flag_simd_cost_model;
  enum stack_reuse_level x_flag_stack_reuse;
  enum vect_cost_model x_flag_vect_cost_model;
  unsigned char x_optimize;
  unsigned char x_optimize_size;
  unsigned char x_optimize_debug;
  signed char x_flag_aggressive_loop_optimizations;
  signed char x_flag_associative_math;
  signed char x_flag_asynchronous_unwind_tables;
  signed char x_flag_auto_inc_dec;
  signed char x_flag_branch_on_count_reg;
  signed char x_flag_branch_probabilities;
  signed char x_flag_branch_target_load_optimize;
  signed char x_flag_branch_target_load_optimize2;
  signed char x_flag_btr_bb_exclusive;
  signed char x_flag_caller_saves;
  signed char x_flag_combine_stack_adjustments;
  signed char x_flag_compare_elim_after_reload;
  signed char x_flag_conserve_stack;
  signed char x_flag_cprop_registers;
  signed char x_flag_crossjumping;
  signed char x_flag_cse_follow_jumps;
  signed char x_flag_cx_fortran_rules;
  signed char x_flag_cx_limited_range;
  signed char x_flag_dce;
  signed char x_flag_defer_pop;
  signed char x_flag_delayed_branch;
  signed char x_flag_delete_dead_exceptions;
  signed char x_flag_delete_null_pointer_checks;
  signed char x_flag_devirtualize;
  signed char x_flag_devirtualize_speculatively;
  signed char x_flag_dse;
  signed char x_flag_early_inlining;
  signed char x_flag_exceptions;
  signed char x_flag_expensive_optimizations;
  signed char x_flag_finite_math_only;
  signed char x_flag_float_store;
  signed char x_flag_forward_propagate;
  signed char x_flag_no_function_cse;
  signed char x_flag_gcse;
  signed char x_flag_gcse_after_reload;
  signed char x_flag_gcse_las;
  signed char x_flag_gcse_lm;
  signed char x_flag_gcse_sm;
  signed char x_flag_graphite;
  signed char x_flag_graphite_identity;
  signed char x_flag_guess_branch_prob;
  signed char x_flag_hoist_adjacent_loads;
  signed char x_flag_if_conversion;
  signed char x_flag_if_conversion2;
  signed char x_flag_indirect_inlining;
  signed char x_flag_no_inline;
  signed char x_flag_inline_atomics;
  signed char x_flag_inline_functions;
  signed char x_flag_inline_functions_called_once;
  signed char x_flag_inline_small_functions;
  signed char x_flag_ipa_cp;
  signed char x_flag_ipa_cp_alignment;
  signed char x_flag_ipa_cp_clone;
  signed char x_flag_ipa_icf;
  signed char x_flag_ipa_icf_functions;
  signed char x_flag_ipa_profile;
  signed char x_flag_ipa_pta;
  signed char x_flag_ipa_pure_const;
  signed char x_flag_ipa_ra;
  signed char x_flag_ipa_reference;
  signed char x_flag_ipa_sra;
  signed char x_flag_ira_hoist_pressure;
  signed char x_flag_ira_loop_pressure;
  signed char x_flag_ira_share_save_slots;
  signed char x_flag_ira_share_spill_slots;
  signed char x_flag_isolate_erroneous_paths_attribute;
  signed char x_flag_isolate_erroneous_paths_dereference;
  signed char x_flag_ivopts;
  signed char x_flag_jump_tables;
  signed char x_flag_keep_gc_roots_live;
  signed char x_flag_lifetime_dse;
  signed char x_flag_live_range_shrinkage;
  signed char x_flag_loop_nest_optimize;
  signed char x_flag_loop_parallelize_all;
  signed char x_flag_lra_remat;
  signed char x_flag_errno_math;
  signed char x_flag_modulo_sched;
  signed char x_flag_modulo_sched_allow_regmoves;
  signed char x_flag_move_loop_invariants;
  signed char x_flag_non_call_exceptions;
  signed char x_flag_nothrow_opt;
  signed char x_flag_omit_frame_pointer;
  signed char x_flag_opt_info;
  signed char x_flag_optimize_sibling_calls;
  signed char x_flag_optimize_strlen;
  signed char x_flag_pack_struct;
  signed char x_flag_partial_inlining;
  signed char x_flag_peel_loops;
  signed char x_flag_no_peephole;
  signed char x_flag_peephole2;
  signed char x_flag_plt;
  signed char x_flag_predictive_commoning;
  signed char x_flag_prefetch_loop_arrays;
  signed char x_flag_reciprocal_math;
  signed char x_flag_pcc_struct_return;
  signed char x_flag_rename_registers;
  signed char x_flag_reorder_blocks;
  signed char x_flag_reorder_blocks_and_partition;
  signed char x_flag_reorder_functions;
  signed char x_flag_rerun_cse_after_loop;
  signed char x_flag_resched_modulo_sched;
  signed char x_flag_rounding_math;
  signed char x_flag_rtti;
  signed char x_flag_sched_critical_path_heuristic;
  signed char x_flag_sched_dep_count_heuristic;
  signed char x_flag_sched_group_heuristic;
  signed char x_flag_schedule_interblock;
  signed char x_flag_sched_last_insn_heuristic;
  signed char x_flag_sched_pressure;
  signed char x_flag_sched_rank_heuristic;
  signed char x_flag_schedule_speculative;
  signed char x_flag_sched_spec_insn_heuristic;
  signed char x_flag_schedule_speculative_load;
  signed char x_flag_schedule_speculative_load_dangerous;
  signed char x_flag_sched2_use_superblocks;
  signed char x_flag_schedule_fusion;
  signed char x_flag_schedule_insns;
  signed char x_flag_schedule_insns_after_reload;
  signed char x_flag_section_anchors;
  signed char x_flag_sel_sched_pipelining;
  signed char x_flag_sel_sched_pipelining_outer_loops;
  signed char x_flag_sel_sched_reschedule_pipelined;
  signed char x_flag_selective_scheduling;
  signed char x_flag_selective_scheduling2;
  signed char x_flag_short_enums;
  signed char x_flag_short_wchar;
  signed char x_flag_shrink_wrap;
  signed char x_flag_signaling_nans;
  signed char x_flag_signed_zeros;
  signed char x_flag_single_precision_constant;
  signed char x_flag_split_ivs_in_unroller;
  signed char x_flag_split_paths;
  signed char x_flag_split_wide_types;
  signed char x_flag_ssa_backprop;
  signed char x_flag_ssa_phiopt;
  signed char x_flag_stdarg_opt;
  signed char x_flag_strict_aliasing;
  signed char x_flag_strict_enums;
  signed char x_flag_strict_overflow;
  signed char x_flag_strict_volatile_bitfields;
  signed char x_flag_thread_jumps;
  signed char x_flag_threadsafe_statics;
  signed char x_flag_tracer;
  signed char x_flag_trapping_math;
  signed char x_flag_trapv;
  signed char x_flag_tree_bit_ccp;
  signed char x_flag_tree_builtin_call_dce;
  signed char x_flag_tree_ccp;
  signed char x_flag_tree_ch;
  signed char x_flag_tree_coalesce_vars;
  signed char x_flag_tree_copy_prop;
  signed char x_flag_tree_cselim;
  signed char x_flag_tree_dce;
  signed char x_flag_tree_dom;
  signed char x_flag_tree_dse;
  signed char x_flag_tree_forwprop;
  signed char x_flag_tree_fre;
  signed char x_flag_tree_loop_distribute_patterns;
  signed char x_flag_tree_loop_distribution;
  signed char x_flag_tree_loop_if_convert;
  signed char x_flag_tree_loop_if_convert_stores;
  signed char x_flag_tree_loop_im;
  signed char x_flag_tree_loop_ivcanon;
  signed char x_flag_tree_loop_optimize;
  signed char x_flag_tree_loop_vectorize;
  signed char x_flag_tree_live_range_split;
  signed char x_flag_tree_partial_pre;
  signed char x_flag_tree_phiprop;
  signed char x_flag_tree_pre;
  signed char x_flag_tree_pta;
  signed char x_flag_tree_reassoc;
  signed char x_flag_tree_scev_cprop;
  signed char x_flag_tree_sink;
  signed char x_flag_tree_slp_vectorize;
  signed char x_flag_tree_slsr;
  signed char x_flag_tree_sra;
  signed char x_flag_tree_switch_conversion;
  signed char x_flag_tree_tail_merge;
  signed char x_flag_tree_ter;
  signed char x_flag_tree_vectorize;
  signed char x_flag_tree_vrp;
  signed char x_flag_unconstrained_commons;
  signed char x_flag_unroll_all_loops;
  signed char x_flag_unroll_loops;
  signed char x_flag_unsafe_loop_optimizations;
  signed char x_flag_unsafe_math_optimizations;
  signed char x_flag_unswitch_loops;
  signed char x_flag_unwind_tables;
  signed char x_flag_var_tracking;
  signed char x_flag_var_tracking_assignments;
  signed char x_flag_var_tracking_assignments_toggle;
  signed char x_flag_var_tracking_uninit;
  signed char x_flag_variable_expansion_in_unroller;
  signed char x_flag_value_profile_transformations;
  signed char x_flag_web;
  signed char x_flag_wrapv;
  signed char x_flag_mlow_precision_div;
  signed char x_flag_mrecip_low_precision_sqrt;
  signed char x_flag_mlow_precision_sqrt;
};
 
/* Structure to save/restore selected target specific options.  */
struct GTY(()) cl_target_option
{
  const char *x_aarch64_override_tune_string;
  unsigned long x_aarch64_isa_flags;
  enum aarch64_code_model x_aarch64_cmodel_var;
  enum aarch64_tls_type x_aarch64_tls_dialect;
  enum aarch64_arch x_explicit_arch;
  enum aarch64_processor x_explicit_tune_core;
  int x_target_flags;
  signed char x_aarch64_fix_a53_err835769;
  signed char x_aarch64_fix_a53_err843419;
  signed char x_flag_omit_leaf_frame_pointer;
  signed char x_pcrelative_literal_loads;
};
 
 
/* Save optimization variables into a structure.  */
extern void cl_optimization_save (struct cl_optimization *, struct gcc_options *);
 
/* Restore optimization variables from a structure.  */
extern void cl_optimization_restore (struct gcc_options *, struct cl_optimization *);
 
/* Print optimization variables from a structure.  */
extern void cl_optimization_print (FILE *, int, struct cl_optimization *);
 
/* Print different optimization variables from structures provided as arguments.  */
extern void cl_optimization_print_diff (FILE *, int, cl_optimization *ptr1, cl_optimization *ptr2);
 
/* Save selected option variables into a structure.  */
extern void cl_target_option_save (struct cl_target_option *, struct gcc_options *);
 
/* Restore selected option variables from a structure.  */
extern void cl_target_option_restore (struct gcc_options *, struct cl_target_option *);
 
/* Print target option variables from a structure.  */
extern void cl_target_option_print (FILE *, int, struct cl_target_option *);
 
/* Print different target option variables from structures provided as arguments.  */
extern void cl_target_option_print_diff (FILE *, int, cl_target_option *ptr1, cl_target_option *ptr2);
 
/* Compare two target option variables from a structure.  */
extern bool cl_target_option_eq (const struct cl_target_option *, const struct cl_target_option *);
 
/* Hash option variables from a structure.  */
extern hashval_t cl_target_option_hash (const struct cl_target_option *);
 
/* Hash optimization from a structure.  */
extern hashval_t cl_optimization_hash (const struct cl_optimization *);
 
/* Generator files may not have access to location_t, and don't need these.  */
#if defined(UNKNOWN_LOCATION)
bool                                                                  
common_handle_option_auto (struct gcc_options *opts,                  
                           struct gcc_options *opts_set,              
                           const struct cl_decoded_option *decoded,   
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
Ada_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
AdaSCIL_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
AdaWhy_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
C_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
CXX_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
Fortran_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
Go_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
Java_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
LTO_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
ObjC_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
bool                                                                  
ObjCXX_handle_option_auto (struct gcc_options *opts,              
                           struct gcc_options *opts_set,              
                           size_t scode, const char *arg, int value,  
                           unsigned int lang_mask, int kind,          
                           location_t loc,                            
                           const struct cl_option_handlers *handlers, 
                           diagnostic_context *dc);                   
void cpp_handle_option_auto (const struct gcc_options * opts, size_t scode,
                             struct cpp_options * cpp_opts);
void init_global_opts_from_cpp(struct gcc_options * opts,      
                               const struct cpp_options * cpp_opts);
#endif
#endif
 
#define MASK_BIG_END (1 << 0)
#define MASK_GENERAL_REGS_ONLY (1 << 1)
#define MASK_STRICT_ALIGN (1 << 2)
 
#define TARGET_BIG_END ((target_flags & MASK_BIG_END) != 0)
#define TARGET_BIG_END_P(target_flags) ((target_flags & MASK_BIG_END) != 0)
#define TARGET_GENERAL_REGS_ONLY ((target_flags & MASK_GENERAL_REGS_ONLY) != 0)
#define TARGET_GENERAL_REGS_ONLY_P(target_flags) ((target_flags & MASK_GENERAL_REGS_ONLY) != 0)
#define TARGET_STRICT_ALIGN ((target_flags & MASK_STRICT_ALIGN) != 0)
#define TARGET_STRICT_ALIGN_P(target_flags) ((target_flags & MASK_STRICT_ALIGN) != 0)
 
 
#define CL_Ada        (1U << 0)
#define CL_AdaSCIL    (1U << 1)
#define CL_AdaWhy     (1U << 2)
#define CL_C          (1U << 3)
#define CL_CXX        (1U << 4)
#define CL_Fortran    (1U << 5)
#define CL_Go         (1U << 6)
#define CL_Java       (1U << 7)
#define CL_LTO        (1U << 8)
#define CL_ObjC       (1U << 9)
#define CL_ObjCXX     (1U << 10)
#define CL_LANG_ALL   ((1U << 11) - 1)
 
enum opt_code
{
  OPT____ = 0,                               /* -### */
  /* OPT__CLASSPATH = 1, */                  /* --CLASSPATH */
  /* OPT__all_warnings = 2, */               /* --all-warnings */
  /* OPT__ansi = 3, */                       /* --ansi */
  /* OPT__assemble = 4, */                   /* --assemble */
  /* OPT__assert = 5, */                     /* --assert */
  /* OPT__assert_ = 6, */                    /* --assert= */
  /* OPT__bootclasspath = 7, */              /* --bootclasspath */
  /* OPT__classpath = 8, */                  /* --classpath */
  /* OPT__comments = 9, */                   /* --comments */
  /* OPT__comments_in_macros = 10, */        /* --comments-in-macros */
  /* OPT__compile = 11, */                   /* --compile */
  /* OPT__coverage = 12, */                  /* --coverage */
  /* OPT__debug = 13, */                     /* --debug */
  /* OPT__define_macro = 14, */              /* --define-macro */
  /* OPT__define_macro_ = 15, */             /* --define-macro= */
  /* OPT__dependencies = 16, */              /* --dependencies */
  /* OPT__dump = 17, */                      /* --dump */
  /* OPT__dump_ = 18, */                     /* --dump= */
  /* OPT__dumpbase = 19, */                  /* --dumpbase */
  /* OPT__dumpdir = 20, */                   /* --dumpdir */
  /* OPT__encoding = 21, */                  /* --encoding */
  /* OPT__entry = 22, */                     /* --entry */
  /* OPT__entry_ = 23, */                    /* --entry= */
  /* OPT__extdirs = 24, */                   /* --extdirs */
  /* OPT__extra_warnings = 25, */            /* --extra-warnings */
  /* OPT__for_assembler = 26, */             /* --for-assembler */
  /* OPT__for_assembler_ = 27, */            /* --for-assembler= */
  /* OPT__for_linker = 28, */                /* --for-linker */
  /* OPT__for_linker_ = 29, */               /* --for-linker= */
  /* OPT__force_link = 30, */                /* --force-link */
  /* OPT__force_link_ = 31, */               /* --force-link= */
  OPT__help = 32,                            /* --help */
  OPT__help_ = 33,                           /* --help= */
  /* OPT__imacros = 34, */                   /* --imacros */
  /* OPT__imacros_ = 35, */                  /* --imacros= */
  /* OPT__include = 36, */                   /* --include */
  /* OPT__include_barrier = 37, */           /* --include-barrier */
  /* OPT__include_directory = 38, */         /* --include-directory */
  /* OPT__include_directory_after = 39, */   /* --include-directory-after */
  /* OPT__include_directory_after_ = 40, */  /* --include-directory-after= */
  /* OPT__include_directory_ = 41, */        /* --include-directory= */
  /* OPT__include_prefix = 42, */            /* --include-prefix */
  /* OPT__include_prefix_ = 43, */           /* --include-prefix= */
  /* OPT__include_with_prefix = 44, */       /* --include-with-prefix */
  /* OPT__include_with_prefix_after = 45, */ /* --include-with-prefix-after */
  /* OPT__include_with_prefix_after_ = 46, *//* --include-with-prefix-after= */
  /* OPT__include_with_prefix_before = 47, *//* --include-with-prefix-before */
  /* OPT__include_with_prefix_before_ = 48, *//* --include-with-prefix-before= */
  /* OPT__include_with_prefix_ = 49, */      /* --include-with-prefix= */
  /* OPT__include_ = 50, */                  /* --include= */
  /* OPT__language = 51, */                  /* --language */
  /* OPT__language_ = 52, */                 /* --language= */
  /* OPT__library_directory = 53, */         /* --library-directory */
  /* OPT__library_directory_ = 54, */        /* --library-directory= */
  /* OPT__no_canonical_prefixes = 55, */     /* --no-canonical-prefixes */
  /* OPT__no_integrated_cpp = 56, */         /* --no-integrated-cpp */
  /* OPT__no_line_commands = 57, */          /* --no-line-commands */
  /* OPT__no_standard_includes = 58, */      /* --no-standard-includes */
  /* OPT__no_standard_libraries = 59, */     /* --no-standard-libraries */
  OPT__no_sysroot_suffix = 60,               /* --no-sysroot-suffix */
  /* OPT__no_warnings = 61, */               /* --no-warnings */
  /* OPT__optimize = 62, */                  /* --optimize */
  /* OPT__output = 63, */                    /* --output */
  /* OPT__output_class_directory = 64, */    /* --output-class-directory */
  /* OPT__output_class_directory_ = 65, */   /* --output-class-directory= */
  OPT__output_pch_ = 66,                     /* --output-pch= */
  /* OPT__output_ = 67, */                   /* --output= */
  OPT__param = 68,                           /* --param */
  /* OPT__param_ = 69, */                    /* --param= */
  /* OPT__pass_exit_codes = 70, */           /* --pass-exit-codes */
  /* OPT__pedantic = 71, */                  /* --pedantic */
  /* OPT__pedantic_errors = 72, */           /* --pedantic-errors */
  /* OPT__pie = 73, */                       /* --pie */
  /* OPT__pipe = 74, */                      /* --pipe */
  /* OPT__prefix = 75, */                    /* --prefix */
  /* OPT__prefix_ = 76, */                   /* --prefix= */
  /* OPT__preprocess = 77, */                /* --preprocess */
  /* OPT__print_file_name = 78, */           /* --print-file-name */
  /* OPT__print_file_name_ = 79, */          /* --print-file-name= */
  /* OPT__print_libgcc_file_name = 80, */    /* --print-libgcc-file-name */
  /* OPT__print_missing_file_dependencies = 81, *//* --print-missing-file-dependencies */
  /* OPT__print_multi_directory = 82, */     /* --print-multi-directory */
  /* OPT__print_multi_lib = 83, */           /* --print-multi-lib */
  /* OPT__print_multi_os_directory = 84, */  /* --print-multi-os-directory */
  /* OPT__print_multiarch = 85, */           /* --print-multiarch */
  /* OPT__print_prog_name = 86, */           /* --print-prog-name */
  /* OPT__print_prog_name_ = 87, */          /* --print-prog-name= */
  /* OPT__print_search_dirs = 88, */         /* --print-search-dirs */
  /* OPT__print_sysroot = 89, */             /* --print-sysroot */
  /* OPT__print_sysroot_headers_suffix = 90, *//* --print-sysroot-headers-suffix */
  /* OPT__profile = 91, */                   /* --profile */
  /* OPT__resource = 92, */                  /* --resource */
  /* OPT__resource_ = 93, */                 /* --resource= */
  /* OPT__save_temps = 94, */                /* --save-temps */
  /* OPT__shared = 95, */                    /* --shared */
  /* OPT__specs = 96, */                     /* --specs */
  /* OPT__specs_ = 97, */                    /* --specs= */
  /* OPT__static = 98, */                    /* --static */
  /* OPT__symbolic = 99, */                  /* --symbolic */
  /* OPT__sysroot = 100, */                  /* --sysroot */
  OPT__sysroot_ = 101,                       /* --sysroot= */
  OPT__target_help = 102,                    /* --target-help */
  /* OPT__time = 103, */                     /* --time */
  /* OPT__trace_includes = 104, */           /* --trace-includes */
  /* OPT__traditional = 105, */              /* --traditional */
  /* OPT__traditional_cpp = 106, */          /* --traditional-cpp */
  /* OPT__trigraphs = 107, */                /* --trigraphs */
  /* OPT__undefine_macro = 108, */           /* --undefine-macro */
  /* OPT__undefine_macro_ = 109, */          /* --undefine-macro= */
  /* OPT__user_dependencies = 110, */        /* --user-dependencies */
  /* OPT__verbose = 111, */                  /* --verbose */
  OPT__version = 112,                        /* --version */
  /* OPT__write_dependencies = 113, */       /* --write-dependencies */
  /* OPT__write_user_dependencies = 114, */  /* --write-user-dependencies */
  OPT_A = 115,                               /* -A */
  OPT_B = 116,                               /* -B */
  OPT_C = 117,                               /* -C */
  OPT_CC = 118,                              /* -CC */
  /* OPT_CLASSPATH = 119, */                 /* -CLASSPATH */
  OPT_D = 120,                               /* -D */
  OPT_E = 121,                               /* -E */
  OPT_F = 122,                               /* -F */
  OPT_H = 123,                               /* -H */
  OPT_I = 124,                               /* -I */
  OPT_J = 125,                               /* -J */
  OPT_L = 126,                               /* -L */
  OPT_M = 127,                               /* -M */
  OPT_MD = 128,                              /* -MD */
  OPT_MD_ = 129,                             /* -MD_ */
  OPT_MF = 130,                              /* -MF */
  OPT_MG = 131,                              /* -MG */
  OPT_MM = 132,                              /* -MM */
  OPT_MMD = 133,                             /* -MMD */
  OPT_MMD_ = 134,                            /* -MMD_ */
  OPT_MP = 135,                              /* -MP */
  OPT_MQ = 136,                              /* -MQ */
  OPT_MT = 137,                              /* -MT */
  OPT_N = 138,                               /* -N */
  OPT_O = 139,                               /* -O */
  OPT_Ofast = 140,                           /* -Ofast */
  OPT_Og = 141,                              /* -Og */
  OPT_Os = 142,                              /* -Os */
  OPT_P = 143,                               /* -P */
  OPT_Q = 144,                               /* -Q */
  OPT_Qn = 145,                              /* -Qn */
  OPT_Qy = 146,                              /* -Qy */
  OPT_R = 147,                               /* -R */
  OPT_S = 148,                               /* -S */
  OPT_T = 149,                               /* -T */
  OPT_Tbss = 150,                            /* -Tbss */
  OPT_Tbss_ = 151,                           /* -Tbss= */
  OPT_Tdata = 152,                           /* -Tdata */
  OPT_Tdata_ = 153,                          /* -Tdata= */
  OPT_Ttext = 154,                           /* -Ttext */
  OPT_Ttext_ = 155,                          /* -Ttext= */
  OPT_U = 156,                               /* -U */
  /* OPT_W = 157, */                         /* -W */
  OPT_Wa_ = 158,                             /* -Wa, */
  OPT_Wabi = 159,                            /* -Wabi */
  OPT_Wabi_tag = 160,                        /* -Wabi-tag */
  OPT_Wabi_ = 161,                           /* -Wabi= */
  OPT_Waddress = 162,                        /* -Waddress */
  OPT_Waggregate_return = 163,               /* -Waggregate-return */
  OPT_Waggressive_loop_optimizations = 164,  /* -Waggressive-loop-optimizations */
  OPT_Waliasing = 165,                       /* -Waliasing */
  OPT_Walign_commons = 166,                  /* -Walign-commons */
  OPT_Wall = 167,                            /* -Wall */
  OPT_Wall_deprecation = 168,                /* -Wall-deprecation */
  OPT_Wall_javadoc = 169,                    /* -Wall-javadoc */
  OPT_Wampersand = 170,                      /* -Wampersand */
  OPT_Warray_bounds = 171,                   /* -Warray-bounds */
  OPT_Warray_bounds_ = 172,                  /* -Warray-bounds= */
  OPT_Warray_temporaries = 173,              /* -Warray-temporaries */
  OPT_Wassert_identifier = 174,              /* -Wassert-identifier */
  OPT_Wassign_intercept = 175,               /* -Wassign-intercept */
  OPT_Wattributes = 176,                     /* -Wattributes */
  OPT_Wbad_function_cast = 177,              /* -Wbad-function-cast */
  OPT_Wbool_compare = 178,                   /* -Wbool-compare */
  OPT_Wboxing = 179,                         /* -Wboxing */
  OPT_Wbuiltin_macro_redefined = 180,        /* -Wbuiltin-macro-redefined */
  OPT_Wc___compat = 181,                     /* -Wc++-compat */
  /* OPT_Wc__0x_compat = 182, */             /* -Wc++0x-compat */
  OPT_Wc__11_compat = 183,                   /* -Wc++11-compat */
  OPT_Wc__14_compat = 184,                   /* -Wc++14-compat */
  OPT_Wc_binding_type = 185,                 /* -Wc-binding-type */
  OPT_Wc90_c99_compat = 186,                 /* -Wc90-c99-compat */
  OPT_Wc99_c11_compat = 187,                 /* -Wc99-c11-compat */
  OPT_Wcast_align = 188,                     /* -Wcast-align */
  OPT_Wcast_qual = 189,                      /* -Wcast-qual */
  OPT_Wchar_concat = 190,                    /* -Wchar-concat */
  OPT_Wchar_subscripts = 191,                /* -Wchar-subscripts */
  OPT_Wcharacter_truncation = 192,           /* -Wcharacter-truncation */
  OPT_Wchkp = 193,                           /* -Wchkp */
  OPT_Wclobbered = 194,                      /* -Wclobbered */
  OPT_Wcomment = 195,                        /* -Wcomment */
  /* OPT_Wcomments = 196, */                 /* -Wcomments */
  OPT_Wcompare_reals = 197,                  /* -Wcompare-reals */
  OPT_Wcondition_assign = 198,               /* -Wcondition-assign */
  OPT_Wconditionally_supported = 199,        /* -Wconditionally-supported */
  OPT_Wconstructor_name = 200,               /* -Wconstructor-name */
  OPT_Wconversion = 201,                     /* -Wconversion */
  OPT_Wconversion_extra = 202,               /* -Wconversion-extra */
  OPT_Wconversion_null = 203,                /* -Wconversion-null */
  OPT_Wcoverage_mismatch = 204,              /* -Wcoverage-mismatch */
  OPT_Wcpp = 205,                            /* -Wcpp */
  OPT_Wctor_dtor_privacy = 206,              /* -Wctor-dtor-privacy */
  OPT_Wdate_time = 207,                      /* -Wdate-time */
  OPT_Wdeclaration_after_statement = 208,    /* -Wdeclaration-after-statement */
  OPT_Wdelete_incomplete = 209,              /* -Wdelete-incomplete */
  OPT_Wdelete_non_virtual_dtor = 210,        /* -Wdelete-non-virtual-dtor */
  OPT_Wdep_ann = 211,                        /* -Wdep-ann */
  OPT_Wdeprecated = 212,                     /* -Wdeprecated */
  OPT_Wdeprecated_declarations = 213,        /* -Wdeprecated-declarations */
  OPT_Wdesignated_init = 214,                /* -Wdesignated-init */
  OPT_Wdisabled_optimization = 215,          /* -Wdisabled-optimization */
  OPT_Wdiscarded_array_qualifiers = 216,     /* -Wdiscarded-array-qualifiers */
  OPT_Wdiscarded_qualifiers = 217,           /* -Wdiscarded-qualifiers */
  OPT_Wdiscouraged = 218,                    /* -Wdiscouraged */
  OPT_Wdiv_by_zero = 219,                    /* -Wdiv-by-zero */
  OPT_Wdouble_promotion = 220,               /* -Wdouble-promotion */
  OPT_Wduplicated_cond = 221,                /* -Wduplicated-cond */
  OPT_Weffc__ = 222,                         /* -Weffc++ */
  OPT_Wempty_block = 223,                    /* -Wempty-block */
  OPT_Wempty_body = 224,                     /* -Wempty-body */
  OPT_Wendif_labels = 225,                   /* -Wendif-labels */
  OPT_Wenum_compare = 226,                   /* -Wenum-compare */
  OPT_Wenum_identifier = 227,                /* -Wenum-identifier */
  OPT_Wenum_switch = 228,                    /* -Wenum-switch */
  OPT_Werror = 229,                          /* -Werror */
  /* OPT_Werror_implicit_function_declaration = 230, *//* -Werror-implicit-function-declaration */
  OPT_Werror_ = 231,                         /* -Werror= */
  OPT_Wextra = 232,                          /* -Wextra */
  OPT_Wextraneous_semicolon = 233,           /* -Wextraneous-semicolon */
  OPT_Wfallthrough = 234,                    /* -Wfallthrough */
  OPT_Wfatal_errors = 235,                   /* -Wfatal-errors */
  OPT_Wfield_hiding = 236,                   /* -Wfield-hiding */
  OPT_Wfinal_bound = 237,                    /* -Wfinal-bound */
  OPT_Wfinally = 238,                        /* -Wfinally */
  OPT_Wfloat_conversion = 239,               /* -Wfloat-conversion */
  OPT_Wfloat_equal = 240,                    /* -Wfloat-equal */
  OPT_Wforbidden = 241,                      /* -Wforbidden */
  /* OPT_Wformat = 242, */                   /* -Wformat */
  OPT_Wformat_contains_nul = 243,            /* -Wformat-contains-nul */
  OPT_Wformat_extra_args = 244,              /* -Wformat-extra-args */
  OPT_Wformat_nonliteral = 245,              /* -Wformat-nonliteral */
  OPT_Wformat_security = 246,                /* -Wformat-security */
  OPT_Wformat_signedness = 247,              /* -Wformat-signedness */
  OPT_Wformat_y2k = 248,                     /* -Wformat-y2k */
  OPT_Wformat_zero_length = 249,             /* -Wformat-zero-length */
  OPT_Wformat_ = 250,                        /* -Wformat= */
  OPT_Wframe_address = 251,                  /* -Wframe-address */
  OPT_Wframe_larger_than_ = 252,             /* -Wframe-larger-than= */
  OPT_Wfree_nonheap_object = 253,            /* -Wfree-nonheap-object */
  OPT_Wfunction_elimination = 254,           /* -Wfunction-elimination */
  OPT_Whiding = 255,                         /* -Whiding */
  OPT_Whsa = 256,                            /* -Whsa */
  OPT_Wignored_attributes = 257,             /* -Wignored-attributes */
  OPT_Wignored_qualifiers = 258,             /* -Wignored-qualifiers */
  OPT_Wimplicit = 259,                       /* -Wimplicit */
  OPT_Wimplicit_function_declaration = 260,  /* -Wimplicit-function-declaration */
  OPT_Wimplicit_int = 261,                   /* -Wimplicit-int */
  OPT_Wimplicit_interface = 262,             /* -Wimplicit-interface */
  OPT_Wimplicit_procedure = 263,             /* -Wimplicit-procedure */
  /* OPT_Wimport = 264, */                   /* -Wimport */
  OPT_Wincompatible_pointer_types = 265,     /* -Wincompatible-pointer-types */
  OPT_Windirect_static = 266,                /* -Windirect-static */
  OPT_Winherited_variadic_ctor = 267,        /* -Winherited-variadic-ctor */
  OPT_Winit_self = 268,                      /* -Winit-self */
  OPT_Winline = 269,                         /* -Winline */
  OPT_Wint_conversion = 270,                 /* -Wint-conversion */
  OPT_Wint_to_pointer_cast = 271,            /* -Wint-to-pointer-cast */
  OPT_Winteger_division = 272,               /* -Winteger-division */
  OPT_Wintf_annotation = 273,                /* -Wintf-annotation */
  OPT_Wintf_non_inherited = 274,             /* -Wintf-non-inherited */
  OPT_Wintrinsic_shadow = 275,               /* -Wintrinsic-shadow */
  OPT_Wintrinsics_std = 276,                 /* -Wintrinsics-std */
  OPT_Winvalid_memory_model = 277,           /* -Winvalid-memory-model */
  OPT_Winvalid_offsetof = 278,               /* -Winvalid-offsetof */
  OPT_Winvalid_pch = 279,                    /* -Winvalid-pch */
  OPT_Wjavadoc = 280,                        /* -Wjavadoc */
  OPT_Wjump_misses_init = 281,               /* -Wjump-misses-init */
  OPT_Wl_ = 282,                             /* -Wl, */
  /* OPT_Wlarger_than_ = 283, */             /* -Wlarger-than- */
  OPT_Wlarger_than_ = 284,                   /* -Wlarger-than= */
  OPT_Wline_truncation = 285,                /* -Wline-truncation */
  OPT_Wliteral_suffix = 286,                 /* -Wliteral-suffix */
  OPT_Wlocal_hiding = 287,                   /* -Wlocal-hiding */
  OPT_Wlogical_not_parentheses = 288,        /* -Wlogical-not-parentheses */
  OPT_Wlogical_op = 289,                     /* -Wlogical-op */
  OPT_Wlong_long = 290,                      /* -Wlong-long */
  OPT_Wlto_type_mismatch = 291,              /* -Wlto-type-mismatch */
  OPT_Wmain = 292,                           /* -Wmain */
  OPT_Wmasked_catch_block = 293,             /* -Wmasked-catch-block */
  OPT_Wmaybe_uninitialized = 294,            /* -Wmaybe-uninitialized */
  OPT_Wmemset_transposed_args = 295,         /* -Wmemset-transposed-args */
  OPT_Wmisleading_indentation = 296,         /* -Wmisleading-indentation */
  OPT_Wmissing_braces = 297,                 /* -Wmissing-braces */
  OPT_Wmissing_declarations = 298,           /* -Wmissing-declarations */
  OPT_Wmissing_field_initializers = 299,     /* -Wmissing-field-initializers */
  /* OPT_Wmissing_format_attribute = 300, */ /* -Wmissing-format-attribute */
  OPT_Wmissing_include_dirs = 301,           /* -Wmissing-include-dirs */
  /* OPT_Wmissing_noreturn = 302, */         /* -Wmissing-noreturn */
  OPT_Wmissing_parameter_type = 303,         /* -Wmissing-parameter-type */
  OPT_Wmissing_prototypes = 304,             /* -Wmissing-prototypes */
  /* OPT_Wmudflap = 305, */                  /* -Wmudflap */
  OPT_Wmultichar = 306,                      /* -Wmultichar */
  OPT_Wmultiple_inheritance = 307,           /* -Wmultiple-inheritance */
  OPT_Wnamespaces = 308,                     /* -Wnamespaces */
  OPT_Wnarrowing = 309,                      /* -Wnarrowing */
  OPT_Wnested_externs = 310,                 /* -Wnested-externs */
  OPT_Wnls = 311,                            /* -Wnls */
  OPT_Wno_effect_assign = 312,               /* -Wno-effect-assign */
  OPT_Wnoexcept = 313,                       /* -Wnoexcept */
  OPT_Wnon_template_friend = 314,            /* -Wnon-template-friend */
  OPT_Wnon_virtual_dtor = 315,               /* -Wnon-virtual-dtor */
  OPT_Wnonnull = 316,                        /* -Wnonnull */
  OPT_Wnonnull_compare = 317,                /* -Wnonnull-compare */
  /* OPT_Wnormalized = 318, */               /* -Wnormalized */
  OPT_Wnormalized_ = 319,                    /* -Wnormalized= */
  OPT_Wnull = 320,                           /* -Wnull */
  OPT_Wnull_dereference = 321,               /* -Wnull-dereference */
  OPT_Wodr = 322,                            /* -Wodr */
  OPT_Wold_style_cast = 323,                 /* -Wold-style-cast */
  OPT_Wold_style_declaration = 324,          /* -Wold-style-declaration */
  OPT_Wold_style_definition = 325,           /* -Wold-style-definition */
  OPT_Wopenmp_simd = 326,                    /* -Wopenmp-simd */
  OPT_Wout_of_date = 327,                    /* -Wout-of-date */
  OPT_Wover_ann = 328,                       /* -Wover-ann */
  OPT_Woverflow = 329,                       /* -Woverflow */
  OPT_Woverlength_strings = 330,             /* -Woverlength-strings */
  OPT_Woverloaded_virtual = 331,             /* -Woverloaded-virtual */
  OPT_Woverride_init = 332,                  /* -Woverride-init */
  OPT_Woverride_init_side_effects = 333,     /* -Woverride-init-side-effects */
  OPT_Wp_ = 334,                             /* -Wp, */
  OPT_Wpacked = 335,                         /* -Wpacked */
  OPT_Wpacked_bitfield_compat = 336,         /* -Wpacked-bitfield-compat */
  OPT_Wpadded = 337,                         /* -Wpadded */
  OPT_Wparam_assign = 338,                   /* -Wparam-assign */
  OPT_Wparentheses = 339,                    /* -Wparentheses */
  OPT_Wpedantic = 340,                       /* -Wpedantic */
  OPT_Wpkg_default_method = 341,             /* -Wpkg-default-method */
  /* OPT_Wplacement_new = 342, */            /* -Wplacement-new */
  OPT_Wplacement_new_ = 343,                 /* -Wplacement-new= */
  OPT_Wpmf_conversions = 344,                /* -Wpmf-conversions */
  OPT_Wpointer_arith = 345,                  /* -Wpointer-arith */
  OPT_Wpointer_sign = 346,                   /* -Wpointer-sign */
  OPT_Wpointer_to_int_cast = 347,            /* -Wpointer-to-int-cast */
  OPT_Wpragmas = 348,                        /* -Wpragmas */
  OPT_Wproperty_assign_default = 349,        /* -Wproperty-assign-default */
  OPT_Wprotocol = 350,                       /* -Wprotocol */
  OPT_Wpsabi = 351,                          /* -Wpsabi */
  OPT_Wraw = 352,                            /* -Wraw */
  OPT_Wreal_q_constant = 353,                /* -Wreal-q-constant */
  OPT_Wrealloc_lhs = 354,                    /* -Wrealloc-lhs */
  OPT_Wrealloc_lhs_all = 355,                /* -Wrealloc-lhs-all */
  OPT_Wredundant_decls = 356,                /* -Wredundant-decls */
  OPT_Wredundant_modifiers = 357,            /* -Wredundant-modifiers */
  OPT_Wreorder = 358,                        /* -Wreorder */
  OPT_Wreturn_local_addr = 359,              /* -Wreturn-local-addr */
  OPT_Wreturn_type = 360,                    /* -Wreturn-type */
  OPT_Wscalar_storage_order = 361,           /* -Wscalar-storage-order */
  OPT_Wselector = 362,                       /* -Wselector */
  OPT_Wsequence_point = 363,                 /* -Wsequence-point */
  OPT_Wserial = 364,                         /* -Wserial */
  OPT_Wshadow = 365,                         /* -Wshadow */
  OPT_Wshadow_ivar = 366,                    /* -Wshadow-ivar */
  OPT_Wshift_count_negative = 367,           /* -Wshift-count-negative */
  OPT_Wshift_count_overflow = 368,           /* -Wshift-count-overflow */
  OPT_Wshift_negative_value = 369,           /* -Wshift-negative-value */
  /* OPT_Wshift_overflow = 370, */           /* -Wshift-overflow */
  OPT_Wshift_overflow_ = 371,                /* -Wshift-overflow= */
  OPT_Wsign_compare = 372,                   /* -Wsign-compare */
  OPT_Wsign_conversion = 373,                /* -Wsign-conversion */
  OPT_Wsign_promo = 374,                     /* -Wsign-promo */
  OPT_Wsized_deallocation = 375,             /* -Wsized-deallocation */
  OPT_Wsizeof_array_argument = 376,          /* -Wsizeof-array-argument */
  OPT_Wsizeof_pointer_memaccess = 377,       /* -Wsizeof-pointer-memaccess */
  OPT_Wspecial_param_hiding = 378,           /* -Wspecial-param-hiding */
  OPT_Wstack_protector = 379,                /* -Wstack-protector */
  OPT_Wstack_usage_ = 380,                   /* -Wstack-usage= */
  OPT_Wstatic_access = 381,                  /* -Wstatic-access */
  OPT_Wstatic_receiver = 382,                /* -Wstatic-receiver */
  OPT_Wstrict_aliasing = 383,                /* -Wstrict-aliasing */
  OPT_Wstrict_aliasing_ = 384,               /* -Wstrict-aliasing= */
  OPT_Wstrict_null_sentinel = 385,           /* -Wstrict-null-sentinel */
  OPT_Wstrict_overflow = 386,                /* -Wstrict-overflow */
  OPT_Wstrict_overflow_ = 387,               /* -Wstrict-overflow= */
  OPT_Wstrict_prototypes = 388,              /* -Wstrict-prototypes */
  OPT_Wstrict_selector_match = 389,          /* -Wstrict-selector-match */
  OPT_Wsubobject_linkage = 390,              /* -Wsubobject-linkage */
  OPT_Wsuggest_attribute_const = 391,        /* -Wsuggest-attribute=const */
  OPT_Wsuggest_attribute_format = 392,       /* -Wsuggest-attribute=format */
  OPT_Wsuggest_attribute_noreturn = 393,     /* -Wsuggest-attribute=noreturn */
  OPT_Wsuggest_attribute_pure = 394,         /* -Wsuggest-attribute=pure */
  OPT_Wsuggest_final_methods = 395,          /* -Wsuggest-final-methods */
  OPT_Wsuggest_final_types = 396,            /* -Wsuggest-final-types */
  OPT_Wsuggest_override = 397,               /* -Wsuggest-override */
  OPT_Wsuppress = 398,                       /* -Wsuppress */
  OPT_Wsurprising = 399,                     /* -Wsurprising */
  OPT_Wswitch = 400,                         /* -Wswitch */
  OPT_Wswitch_bool = 401,                    /* -Wswitch-bool */
  OPT_Wswitch_default = 402,                 /* -Wswitch-default */
  OPT_Wswitch_enum = 403,                    /* -Wswitch-enum */
  OPT_Wsync_nand = 404,                      /* -Wsync-nand */
  OPT_Wsynth = 405,                          /* -Wsynth */
  OPT_Wsynthetic_access = 406,               /* -Wsynthetic-access */
  OPT_Wsystem_headers = 407,                 /* -Wsystem-headers */
  OPT_Wtabs = 408,                           /* -Wtabs */
  OPT_Wtarget_lifetime = 409,                /* -Wtarget-lifetime */
  OPT_Wtasks = 410,                          /* -Wtasks */
  OPT_Wtautological_compare = 411,           /* -Wtautological-compare */
  OPT_Wtemplates = 412,                      /* -Wtemplates */
  OPT_Wterminate = 413,                      /* -Wterminate */
  OPT_Wtraditional = 414,                    /* -Wtraditional */
  OPT_Wtraditional_conversion = 415,         /* -Wtraditional-conversion */
  OPT_Wtrampolines = 416,                    /* -Wtrampolines */
  OPT_Wtrigraphs = 417,                      /* -Wtrigraphs */
  OPT_Wtype_hiding = 418,                    /* -Wtype-hiding */
  OPT_Wtype_limits = 419,                    /* -Wtype-limits */
  OPT_Wuncheck = 420,                        /* -Wuncheck */
  OPT_Wundeclared_selector = 421,            /* -Wundeclared-selector */
  OPT_Wundef = 422,                          /* -Wundef */
  OPT_Wunderflow = 423,                      /* -Wunderflow */
  OPT_Wuninitialized = 424,                  /* -Wuninitialized */
  OPT_Wunknown_pragmas = 425,                /* -Wunknown-pragmas */
  OPT_Wunnecessary_else = 426,               /* -Wunnecessary-else */
  OPT_Wunqualified_field = 427,              /* -Wunqualified-field */
  /* OPT_Wunreachable_code = 428, */         /* -Wunreachable-code */
  OPT_Wunsafe_loop_optimizations = 429,      /* -Wunsafe-loop-optimizations */
  OPT_Wunsuffixed_float_constants = 430,     /* -Wunsuffixed-float-constants */
  OPT_Wunused = 431,                         /* -Wunused */
  OPT_Wunused_argument = 432,                /* -Wunused-argument */
  OPT_Wunused_but_set_parameter = 433,       /* -Wunused-but-set-parameter */
  OPT_Wunused_but_set_variable = 434,        /* -Wunused-but-set-variable */
  /* OPT_Wunused_const_variable = 435, */    /* -Wunused-const-variable */
  OPT_Wunused_const_variable_ = 436,         /* -Wunused-const-variable= */
  OPT_Wunused_dummy_argument = 437,          /* -Wunused-dummy-argument */
  OPT_Wunused_function = 438,                /* -Wunused-function */
  OPT_Wunused_import = 439,                  /* -Wunused-import */
  OPT_Wunused_label = 440,                   /* -Wunused-label */
  OPT_Wunused_local = 441,                   /* -Wunused-local */
  OPT_Wunused_local_typedefs = 442,          /* -Wunused-local-typedefs */
  OPT_Wunused_macros = 443,                  /* -Wunused-macros */
  OPT_Wunused_parameter = 444,               /* -Wunused-parameter */
  OPT_Wunused_private = 445,                 /* -Wunused-private */
  OPT_Wunused_result = 446,                  /* -Wunused-result */
  OPT_Wunused_thrown = 447,                  /* -Wunused-thrown */
  OPT_Wunused_value = 448,                   /* -Wunused-value */
  OPT_Wunused_variable = 449,                /* -Wunused-variable */
  OPT_Wuse_without_only = 450,               /* -Wuse-without-only */
  OPT_Wuseless_cast = 451,                   /* -Wuseless-cast */
  OPT_Wuseless_type_check = 452,             /* -Wuseless-type-check */
  OPT_Wvarargs = 453,                        /* -Wvarargs */
  OPT_Wvarargs_cast = 454,                   /* -Wvarargs-cast */
  OPT_Wvariadic_macros = 455,                /* -Wvariadic-macros */
  OPT_Wvector_operation_performance = 456,   /* -Wvector-operation-performance */
  OPT_Wvirtual_inheritance = 457,            /* -Wvirtual-inheritance */
  OPT_Wvirtual_move_assign = 458,            /* -Wvirtual-move-assign */
  OPT_Wvla = 459,                            /* -Wvla */
  OPT_Wvolatile_register_var = 460,          /* -Wvolatile-register-var */
  OPT_Wwarning_token = 461,                  /* -Wwarning-token */
  OPT_Wwrite_strings = 462,                  /* -Wwrite-strings */
  OPT_Wzero_as_null_pointer_constant = 463,  /* -Wzero-as-null-pointer-constant */
  OPT_Wzerotrip = 464,                       /* -Wzerotrip */
  OPT_Xassembler = 465,                      /* -Xassembler */
  OPT_Xlinker = 466,                         /* -Xlinker */
  OPT_Xpreprocessor = 467,                   /* -Xpreprocessor */
  OPT_Z = 468,                               /* -Z */
  OPT_ansi = 469,                            /* -ansi */
  OPT_aux_info = 470,                        /* -aux-info */
  /* OPT_aux_info_ = 471, */                 /* -aux-info= */
  OPT_auxbase = 472,                         /* -auxbase */
  OPT_auxbase_strip = 473,                   /* -auxbase-strip */
  /* OPT_bootclasspath = 474, */             /* -bootclasspath */
  OPT_c = 475,                               /* -c */
  /* OPT_classpath = 476, */                 /* -classpath */
  OPT_coverage = 477,                        /* -coverage */
  OPT_cpp = 478,                             /* -cpp */
  OPT_cpp_ = 479,                            /* -cpp= */
  OPT_d = 480,                               /* -d */
  OPT_dumpbase = 481,                        /* -dumpbase */
  OPT_dumpdir = 482,                         /* -dumpdir */
  OPT_dumpmachine = 483,                     /* -dumpmachine */
  OPT_dumpspecs = 484,                       /* -dumpspecs */
  OPT_dumpversion = 485,                     /* -dumpversion */
  OPT_e = 486,                               /* -e */
  /* OPT_encoding = 487, */                  /* -encoding */
  OPT_export_dynamic = 488,                  /* -export-dynamic */
  OPT_extdirs = 489,                         /* -extdirs */
  /* OPT_fCLASSPATH_ = 490, */               /* -fCLASSPATH= */
  OPT_fPIC = 491,                            /* -fPIC */
  OPT_fPIE = 492,                            /* -fPIE */
  OPT_fRTS_ = 493,                           /* -fRTS= */
  OPT_fabi_compat_version_ = 494,            /* -fabi-compat-version= */
  OPT_fabi_version_ = 495,                   /* -fabi-version= */
  OPT_faccess_control = 496,                 /* -faccess-control */
  OPT_fada_spec_parent_ = 497,               /* -fada-spec-parent= */
  OPT_faggressive_function_elimination = 498,/* -faggressive-function-elimination */
  OPT_faggressive_loop_optimizations = 499,  /* -faggressive-loop-optimizations */
  OPT_falign_commons = 500,                  /* -falign-commons */
  OPT_falign_functions = 501,                /* -falign-functions */
  OPT_falign_functions_ = 502,               /* -falign-functions= */
  OPT_falign_jumps = 503,                    /* -falign-jumps */
  OPT_falign_jumps_ = 504,                   /* -falign-jumps= */
  OPT_falign_labels = 505,                   /* -falign-labels */
  OPT_falign_labels_ = 506,                  /* -falign-labels= */
  OPT_falign_loops = 507,                    /* -falign-loops */
  OPT_falign_loops_ = 508,                   /* -falign-loops= */
  OPT_fall_intrinsics = 509,                 /* -fall-intrinsics */
  /* OPT_fall_virtual = 510, */              /* -fall-virtual */
  OPT_fallow_leading_underscore = 511,       /* -fallow-leading-underscore */
  OPT_fallow_parameterless_variadic_functions = 512,/* -fallow-parameterless-variadic-functions */
  /* OPT_falt_external_templates = 513, */   /* -falt-external-templates */
  /* OPT_fargument_alias = 514, */           /* -fargument-alias */
  /* OPT_fargument_noalias = 515, */         /* -fargument-noalias */
  /* OPT_fargument_noalias_anything = 516, *//* -fargument-noalias-anything */
  /* OPT_fargument_noalias_global = 517, */  /* -fargument-noalias-global */
  OPT_fasan_shadow_offset_ = 518,            /* -fasan-shadow-offset= */
  OPT_fasm = 519,                            /* -fasm */
  OPT_fassert = 520,                         /* -fassert */
  OPT_fassociative_math = 521,               /* -fassociative-math */
  OPT_fassume_compiled = 522,                /* -fassume-compiled */
  OPT_fassume_compiled_ = 523,               /* -fassume-compiled= */
  OPT_fasynchronous_unwind_tables = 524,     /* -fasynchronous-unwind-tables */
  OPT_fauto_inc_dec = 525,                   /* -fauto-inc-dec */
  OPT_fauto_profile = 526,                   /* -fauto-profile */
  OPT_fauto_profile_ = 527,                  /* -fauto-profile= */
  OPT_fautomatic = 528,                      /* -fautomatic */
  OPT_faux_classpath = 529,                  /* -faux-classpath */
  OPT_fbackslash = 530,                      /* -fbackslash */
  OPT_fbacktrace = 531,                      /* -fbacktrace */
  OPT_fblas_matmul_limit_ = 532,             /* -fblas-matmul-limit= */
  OPT_fbootclasspath_ = 533,                 /* -fbootclasspath= */
  OPT_fbootstrap_classes = 534,              /* -fbootstrap-classes */
  OPT_fbounds_check = 535,                   /* -fbounds-check */
  OPT_fbranch_count_reg = 536,               /* -fbranch-count-reg */
  OPT_fbranch_probabilities = 537,           /* -fbranch-probabilities */
  OPT_fbranch_target_load_optimize = 538,    /* -fbranch-target-load-optimize */
  OPT_fbranch_target_load_optimize2 = 539,   /* -fbranch-target-load-optimize2 */
  OPT_fbtr_bb_exclusive = 540,               /* -fbtr-bb-exclusive */
  OPT_fbuilding_libgcc = 541,                /* -fbuilding-libgcc */
  OPT_fbuiltin = 542,                        /* -fbuiltin */
  OPT_fbuiltin_ = 543,                       /* -fbuiltin- */
  OPT_fbuiltin_printf = 544,                 /* -fbuiltin-printf */
  OPT_fcall_saved_ = 545,                    /* -fcall-saved- */
  OPT_fcall_used_ = 546,                     /* -fcall-used- */
  OPT_fcaller_saves = 547,                   /* -fcaller-saves */
  OPT_fcanonical_system_headers = 548,       /* -fcanonical-system-headers */
  OPT_fcheck_array_temporaries = 549,        /* -fcheck-array-temporaries */
  OPT_fcheck_data_deps = 550,                /* -fcheck-data-deps */
  OPT_fcheck_new = 551,                      /* -fcheck-new */
  OPT_fcheck_pointer_bounds = 552,           /* -fcheck-pointer-bounds */
  OPT_fcheck_references = 553,               /* -fcheck-references */
  OPT_fcheck_ = 554,                         /* -fcheck= */
  OPT_fchecking = 555,                       /* -fchecking */
  OPT_fchkp_check_incomplete_type = 556,     /* -fchkp-check-incomplete-type */
  OPT_fchkp_check_read = 557,                /* -fchkp-check-read */
  OPT_fchkp_check_write = 558,               /* -fchkp-check-write */
  OPT_fchkp_first_field_has_own_bounds = 559,/* -fchkp-first-field-has-own-bounds */
  OPT_fchkp_instrument_calls = 560,          /* -fchkp-instrument-calls */
  OPT_fchkp_instrument_marked_only = 561,    /* -fchkp-instrument-marked-only */
  OPT_fchkp_narrow_bounds = 562,             /* -fchkp-narrow-bounds */
  OPT_fchkp_narrow_to_innermost_array = 563, /* -fchkp-narrow-to-innermost-array */
  OPT_fchkp_optimize = 564,                  /* -fchkp-optimize */
  OPT_fchkp_store_bounds = 565,              /* -fchkp-store-bounds */
  OPT_fchkp_treat_zero_dynamic_size_as_infinite = 566,/* -fchkp-treat-zero-dynamic-size-as-infinite */
  OPT_fchkp_use_fast_string_functions = 567, /* -fchkp-use-fast-string-functions */
  OPT_fchkp_use_nochk_string_functions = 568,/* -fchkp-use-nochk-string-functions */
  OPT_fchkp_use_static_bounds = 569,         /* -fchkp-use-static-bounds */
  OPT_fchkp_use_static_const_bounds = 570,   /* -fchkp-use-static-const-bounds */
  OPT_fchkp_use_wrappers = 571,              /* -fchkp-use-wrappers */
  OPT_fchkp_zero_input_bounds_for_main = 572,/* -fchkp-zero-input-bounds-for-main */
  OPT_fcilkplus = 573,                       /* -fcilkplus */
  OPT_fclasspath_ = 574,                     /* -fclasspath= */
  OPT_fcoarray_ = 575,                       /* -fcoarray= */
  OPT_fcombine_stack_adjustments = 576,      /* -fcombine-stack-adjustments */
  OPT_fcommon = 577,                         /* -fcommon */
  OPT_fcompare_debug = 578,                  /* -fcompare-debug */
  OPT_fcompare_debug_second = 579,           /* -fcompare-debug-second */
  OPT_fcompare_debug_ = 580,                 /* -fcompare-debug= */
  OPT_fcompare_elim = 581,                   /* -fcompare-elim */
  OPT_fcompile_resource_ = 582,              /* -fcompile-resource= */
  OPT_fconcepts = 583,                       /* -fconcepts */
  OPT_fcond_mismatch = 584,                  /* -fcond-mismatch */
  OPT_fconserve_space = 585,                 /* -fconserve-space */
  OPT_fconserve_stack = 586,                 /* -fconserve-stack */
  OPT_fconstant_string_class_ = 587,         /* -fconstant-string-class= */
  OPT_fconstexpr_depth_ = 588,               /* -fconstexpr-depth= */
  OPT_fconvert_ = 589,                       /* -fconvert= */
  OPT_fcprop_registers = 590,                /* -fcprop-registers */
  OPT_fcray_pointer = 591,                   /* -fcray-pointer */
  OPT_fcrossjumping = 592,                   /* -fcrossjumping */
  OPT_fcse_follow_jumps = 593,               /* -fcse-follow-jumps */
  /* OPT_fcse_skip_blocks = 594, */          /* -fcse-skip-blocks */
  OPT_fcx_fortran_rules = 595,               /* -fcx-fortran-rules */
  OPT_fcx_limited_range = 596,               /* -fcx-limited-range */
  OPT_fd_lines_as_code = 597,                /* -fd-lines-as-code */
  OPT_fd_lines_as_comments = 598,            /* -fd-lines-as-comments */
  OPT_fdata_sections = 599,                  /* -fdata-sections */
  OPT_fdbg_cnt_list = 600,                   /* -fdbg-cnt-list */
  OPT_fdbg_cnt_ = 601,                       /* -fdbg-cnt= */
  OPT_fdce = 602,                            /* -fdce */
  OPT_fdebug_cpp = 603,                      /* -fdebug-cpp */
  OPT_fdebug_prefix_map_ = 604,              /* -fdebug-prefix-map= */
  OPT_fdebug_types_section = 605,            /* -fdebug-types-section */
  OPT_fdec = 606,                            /* -fdec */
  OPT_fdec_structure = 607,                  /* -fdec-structure */
  OPT_fdeclone_ctor_dtor = 608,              /* -fdeclone-ctor-dtor */
  OPT_fdeduce_init_list = 609,               /* -fdeduce-init-list */
  OPT_fdefault_double_8 = 610,               /* -fdefault-double-8 */
  /* OPT_fdefault_inline = 611, */           /* -fdefault-inline */
  OPT_fdefault_integer_8 = 612,              /* -fdefault-integer-8 */
  OPT_fdefault_real_8 = 613,                 /* -fdefault-real-8 */
  OPT_fdefer_pop = 614,                      /* -fdefer-pop */
  OPT_fdelayed_branch = 615,                 /* -fdelayed-branch */
  OPT_fdelete_dead_exceptions = 616,         /* -fdelete-dead-exceptions */
  OPT_fdelete_null_pointer_checks = 617,     /* -fdelete-null-pointer-checks */
  OPT_fdevirtualize = 618,                   /* -fdevirtualize */
  OPT_fdevirtualize_at_ltrans = 619,         /* -fdevirtualize-at-ltrans */
  OPT_fdevirtualize_speculatively = 620,     /* -fdevirtualize-speculatively */
  /* OPT_fdiagnostics_color = 621, */        /* -fdiagnostics-color */
  OPT_fdiagnostics_color_ = 622,             /* -fdiagnostics-color= */
  OPT_fdiagnostics_show_caret = 623,         /* -fdiagnostics-show-caret */
  OPT_fdiagnostics_show_location_ = 624,     /* -fdiagnostics-show-location= */
  OPT_fdiagnostics_show_option = 625,        /* -fdiagnostics-show-option */
  OPT_fdirectives_only = 626,                /* -fdirectives-only */
  OPT_fdisable_ = 627,                       /* -fdisable- */
  OPT_fdisable_assertions = 628,             /* -fdisable-assertions */
  OPT_fdisable_assertions_ = 629,            /* -fdisable-assertions= */
  OPT_fdollar_ok = 630,                      /* -fdollar-ok */
  OPT_fdollars_in_identifiers = 631,         /* -fdollars-in-identifiers */
  OPT_fdse = 632,                            /* -fdse */
  OPT_fdump_ = 633,                          /* -fdump- */
  OPT_fdump_ada_spec = 634,                  /* -fdump-ada-spec */
  OPT_fdump_ada_spec_slim = 635,             /* -fdump-ada-spec-slim */
  /* OPT_fdump_core = 636, */                /* -fdump-core */
  OPT_fdump_final_insns = 637,               /* -fdump-final-insns */
  OPT_fdump_final_insns_ = 638,              /* -fdump-final-insns= */
  OPT_fdump_fortran_optimized = 639,         /* -fdump-fortran-optimized */
  OPT_fdump_fortran_original = 640,          /* -fdump-fortran-original */
  OPT_fdump_go_spec_ = 641,                  /* -fdump-go-spec= */
  OPT_fdump_internal_locations = 642,        /* -fdump-internal-locations */
  OPT_fdump_noaddr = 643,                    /* -fdump-noaddr */
  /* OPT_fdump_parse_tree = 644, */          /* -fdump-parse-tree */
  OPT_fdump_passes = 645,                    /* -fdump-passes */
  OPT_fdump_unnumbered = 646,                /* -fdump-unnumbered */
  OPT_fdump_unnumbered_links = 647,          /* -fdump-unnumbered-links */
  OPT_fdwarf2_cfi_asm = 648,                 /* -fdwarf2-cfi-asm */
  OPT_fearly_inlining = 649,                 /* -fearly-inlining */
  OPT_felide_constructors = 650,             /* -felide-constructors */
  OPT_feliminate_dwarf2_dups = 651,          /* -feliminate-dwarf2-dups */
  OPT_feliminate_unused_debug_symbols = 652, /* -feliminate-unused-debug-symbols */
  OPT_feliminate_unused_debug_types = 653,   /* -feliminate-unused-debug-types */
  OPT_femit_class_debug_always = 654,        /* -femit-class-debug-always */
  OPT_femit_class_file = 655,                /* -femit-class-file */
  OPT_femit_class_files = 656,               /* -femit-class-files */
  OPT_femit_struct_debug_baseonly = 657,     /* -femit-struct-debug-baseonly */
  OPT_femit_struct_debug_detailed_ = 658,    /* -femit-struct-debug-detailed= */
  OPT_femit_struct_debug_reduced = 659,      /* -femit-struct-debug-reduced */
  OPT_fenable_ = 660,                        /* -fenable- */
  OPT_fenable_assertions = 661,              /* -fenable-assertions */
  OPT_fenable_assertions_ = 662,             /* -fenable-assertions= */
  OPT_fencoding_ = 663,                      /* -fencoding= */
  OPT_fenforce_eh_specs = 664,               /* -fenforce-eh-specs */
  /* OPT_fenum_int_equiv = 665, */           /* -fenum-int-equiv */
  OPT_fexceptions = 666,                     /* -fexceptions */
  OPT_fexcess_precision_ = 667,              /* -fexcess-precision= */
  OPT_fexec_charset_ = 668,                  /* -fexec-charset= */
  OPT_fexpensive_optimizations = 669,        /* -fexpensive-optimizations */
  OPT_fext_numeric_literals = 670,           /* -fext-numeric-literals */
  OPT_fextdirs_ = 671,                       /* -fextdirs= */
  OPT_fextended_identifiers = 672,           /* -fextended-identifiers */
  OPT_fextern_tls_init = 673,                /* -fextern-tls-init */
  OPT_fexternal_blas = 674,                  /* -fexternal-blas */
  /* OPT_fexternal_templates = 675, */       /* -fexternal-templates */
  OPT_ff2c = 676,                            /* -ff2c */
  OPT_ffast_math = 677,                      /* -ffast-math */
  OPT_ffat_lto_objects = 678,                /* -ffat-lto-objects */
  OPT_ffilelist_file = 679,                  /* -ffilelist-file */
  OPT_ffinite_math_only = 680,               /* -ffinite-math-only */
  OPT_ffixed_ = 681,                         /* -ffixed- */
  OPT_ffixed_form = 682,                     /* -ffixed-form */
  OPT_ffixed_line_length_ = 683,             /* -ffixed-line-length- */
  OPT_ffixed_line_length_none = 684,         /* -ffixed-line-length-none */
  OPT_ffloat_store = 685,                    /* -ffloat-store */
  OPT_ffor_scope = 686,                      /* -ffor-scope */
  /* OPT_fforce_addr = 687, */               /* -fforce-addr */
  OPT_fforce_classes_archive_check = 688,    /* -fforce-classes-archive-check */
  OPT_fforward_propagate = 689,              /* -fforward-propagate */
  OPT_ffp_contract_ = 690,                   /* -ffp-contract= */
  OPT_ffpe_summary_ = 691,                   /* -ffpe-summary= */
  OPT_ffpe_trap_ = 692,                      /* -ffpe-trap= */
  OPT_ffree_form = 693,                      /* -ffree-form */
  OPT_ffree_line_length_ = 694,              /* -ffree-line-length- */
  OPT_ffree_line_length_none = 695,          /* -ffree-line-length-none */
  OPT_ffreestanding = 696,                   /* -ffreestanding */
  OPT_ffriend_injection = 697,               /* -ffriend-injection */
  OPT_ffrontend_optimize = 698,              /* -ffrontend-optimize */
  OPT_ffunction_cse = 699,                   /* -ffunction-cse */
  OPT_ffunction_sections = 700,              /* -ffunction-sections */
  OPT_fgcse = 701,                           /* -fgcse */
  OPT_fgcse_after_reload = 702,              /* -fgcse-after-reload */
  OPT_fgcse_las = 703,                       /* -fgcse-las */
  OPT_fgcse_lm = 704,                        /* -fgcse-lm */
  OPT_fgcse_sm = 705,                        /* -fgcse-sm */
  OPT_fgnat_encodings_ = 706,                /* -fgnat-encodings= */
  OPT_fgnu_keywords = 707,                   /* -fgnu-keywords */
  OPT_fgnu_runtime = 708,                    /* -fgnu-runtime */
  OPT_fgnu_tm = 709,                         /* -fgnu-tm */
  OPT_fgnu_unique = 710,                     /* -fgnu-unique */
  OPT_fgnu89_inline = 711,                   /* -fgnu89-inline */
  OPT_fgo_check_divide_overflow = 712,       /* -fgo-check-divide-overflow */
  OPT_fgo_check_divide_zero = 713,           /* -fgo-check-divide-zero */
  OPT_fgo_dump_ = 714,                       /* -fgo-dump- */
  OPT_fgo_optimize_ = 715,                   /* -fgo-optimize- */
  OPT_fgo_pkgpath_ = 716,                    /* -fgo-pkgpath= */
  OPT_fgo_prefix_ = 717,                     /* -fgo-prefix= */
  OPT_fgo_relative_import_path_ = 718,       /* -fgo-relative-import-path= */
  OPT_fgraphite = 719,                       /* -fgraphite */
  OPT_fgraphite_identity = 720,              /* -fgraphite-identity */
  OPT_fguess_branch_probability = 721,       /* -fguess-branch-probability */
  /* OPT_fguiding_decls = 722, */            /* -fguiding-decls */
  /* OPT_fhandle_exceptions = 723, */        /* -fhandle-exceptions */
  OPT_fhash_synchronization = 724,           /* -fhash-synchronization */
  /* OPT_fhelp = 725, */                     /* -fhelp */
  /* OPT_fhelp_ = 726, */                    /* -fhelp= */
  OPT_fhoist_adjacent_loads = 727,           /* -fhoist-adjacent-loads */
  /* OPT_fhonor_std = 728, */                /* -fhonor-std */
  OPT_fhosted = 729,                         /* -fhosted */
  /* OPT_fhuge_objects = 730, */             /* -fhuge-objects */
  OPT_fident = 731,                          /* -fident */
  OPT_fif_conversion = 732,                  /* -fif-conversion */
  OPT_fif_conversion2 = 733,                 /* -fif-conversion2 */
  OPT_fimplement_inlines = 734,              /* -fimplement-inlines */
  OPT_fimplicit_inline_templates = 735,      /* -fimplicit-inline-templates */
  OPT_fimplicit_none = 736,                  /* -fimplicit-none */
  OPT_fimplicit_templates = 737,             /* -fimplicit-templates */
  OPT_findirect_classes = 738,               /* -findirect-classes */
  OPT_findirect_dispatch = 739,              /* -findirect-dispatch */
  OPT_findirect_inlining = 740,              /* -findirect-inlining */
  OPT_finhibit_size_directive = 741,         /* -finhibit-size-directive */
  OPT_finit_character_ = 742,                /* -finit-character= */
  OPT_finit_integer_ = 743,                  /* -finit-integer= */
  OPT_finit_local_zero = 744,                /* -finit-local-zero */
  OPT_finit_logical_ = 745,                  /* -finit-logical= */
  OPT_finit_real_ = 746,                     /* -finit-real= */
  OPT_finline = 747,                         /* -finline */
  OPT_finline_atomics = 748,                 /* -finline-atomics */
  OPT_finline_functions = 749,               /* -finline-functions */
  OPT_finline_functions_called_once = 750,   /* -finline-functions-called-once */
  /* OPT_finline_limit_ = 751, */            /* -finline-limit- */
  OPT_finline_limit_ = 752,                  /* -finline-limit= */
  OPT_finline_matmul_limit_ = 753,           /* -finline-matmul-limit= */
  OPT_finline_small_functions = 754,         /* -finline-small-functions */
  OPT_finput_charset_ = 755,                 /* -finput-charset= */
  OPT_finstrument_functions = 756,           /* -finstrument-functions */
  OPT_finstrument_functions_exclude_file_list_ = 757,/* -finstrument-functions-exclude-file-list= */
  OPT_finstrument_functions_exclude_function_list_ = 758,/* -finstrument-functions-exclude-function-list= */
  OPT_finteger_4_integer_8 = 759,            /* -finteger-4-integer-8 */
  OPT_fintrinsic_modules_path = 760,         /* -fintrinsic-modules-path */
  OPT_fintrinsic_modules_path_ = 761,        /* -fintrinsic-modules-path= */
  OPT_fipa_cp = 762,                         /* -fipa-cp */
  OPT_fipa_cp_alignment = 763,               /* -fipa-cp-alignment */
  OPT_fipa_cp_clone = 764,                   /* -fipa-cp-clone */
  OPT_fipa_icf = 765,                        /* -fipa-icf */
  OPT_fipa_icf_functions = 766,              /* -fipa-icf-functions */
  OPT_fipa_icf_variables = 767,              /* -fipa-icf-variables */
  /* OPT_fipa_matrix_reorg = 768, */         /* -fipa-matrix-reorg */
  OPT_fipa_profile = 769,                    /* -fipa-profile */
  OPT_fipa_pta = 770,                        /* -fipa-pta */
  OPT_fipa_pure_const = 771,                 /* -fipa-pure-const */
  OPT_fipa_ra = 772,                         /* -fipa-ra */
  OPT_fipa_reference = 773,                  /* -fipa-reference */
  OPT_fipa_sra = 774,                        /* -fipa-sra */
  /* OPT_fipa_struct_reorg = 775, */         /* -fipa-struct-reorg */
  OPT_fira_algorithm_ = 776,                 /* -fira-algorithm= */
  OPT_fira_hoist_pressure = 777,             /* -fira-hoist-pressure */
  OPT_fira_loop_pressure = 778,              /* -fira-loop-pressure */
  OPT_fira_region_ = 779,                    /* -fira-region= */
  OPT_fira_share_save_slots = 780,           /* -fira-share-save-slots */
  OPT_fira_share_spill_slots = 781,          /* -fira-share-spill-slots */
  OPT_fira_verbose_ = 782,                   /* -fira-verbose= */
  OPT_fisolate_erroneous_paths_attribute = 783,/* -fisolate-erroneous-paths-attribute */
  OPT_fisolate_erroneous_paths_dereference = 784,/* -fisolate-erroneous-paths-dereference */
  OPT_fivar_visibility_ = 785,               /* -fivar-visibility= */
  OPT_fivopts = 786,                         /* -fivopts */
  OPT_fjni = 787,                            /* -fjni */
  OPT_fjump_tables = 788,                    /* -fjump-tables */
  OPT_fkeep_gc_roots_live = 789,             /* -fkeep-gc-roots-live */
  OPT_fkeep_inline_dllexport = 790,          /* -fkeep-inline-dllexport */
  OPT_fkeep_inline_functions = 791,          /* -fkeep-inline-functions */
  OPT_fkeep_static_consts = 792,             /* -fkeep-static-consts */
  OPT_fkeep_static_functions = 793,          /* -fkeep-static-functions */
  /* OPT_flabels_ok = 794, */                /* -flabels-ok */
  OPT_flax_vector_conversions = 795,         /* -flax-vector-conversions */
  OPT_fleading_underscore = 796,             /* -fleading-underscore */
  OPT_flifetime_dse = 797,                   /* -flifetime-dse */
  OPT_flifetime_dse_ = 798,                  /* -flifetime-dse= */
  OPT_flinker_output_ = 799,                 /* -flinker-output= */
  OPT_flive_range_shrinkage = 800,           /* -flive-range-shrinkage */
  OPT_flocal_ivars = 801,                    /* -flocal-ivars */
  /* OPT_floop_block = 802, */               /* -floop-block */
  /* OPT_floop_flatten = 803, */             /* -floop-flatten */
  /* OPT_floop_interchange = 804, */         /* -floop-interchange */
  OPT_floop_nest_optimize = 805,             /* -floop-nest-optimize */
  /* OPT_floop_optimize = 806, */            /* -floop-optimize */
  OPT_floop_parallelize_all = 807,           /* -floop-parallelize-all */
  /* OPT_floop_strip_mine = 808, */          /* -floop-strip-mine */
  /* OPT_floop_unroll_and_jam = 809, */      /* -floop-unroll-and-jam */
  OPT_flra_remat = 810,                      /* -flra-remat */
  OPT_flto = 811,                            /* -flto */
  OPT_flto_compression_level_ = 812,         /* -flto-compression-level= */
  OPT_flto_odr_type_merging = 813,           /* -flto-odr-type-merging */
  OPT_flto_partition_ = 814,                 /* -flto-partition= */
  OPT_flto_report = 815,                     /* -flto-report */
  OPT_flto_report_wpa = 816,                 /* -flto-report-wpa */
  OPT_flto_ = 817,                           /* -flto= */
  OPT_fltrans = 818,                         /* -fltrans */
  OPT_fltrans_output_list_ = 819,            /* -fltrans-output-list= */
  OPT_fmain_ = 820,                          /* -fmain= */
  OPT_fmath_errno = 821,                     /* -fmath-errno */
  OPT_fmax_array_constructor_ = 822,         /* -fmax-array-constructor= */
  OPT_fmax_errors_ = 823,                    /* -fmax-errors= */
  OPT_fmax_identifier_length_ = 824,         /* -fmax-identifier-length= */
  OPT_fmax_stack_var_size_ = 825,            /* -fmax-stack-var-size= */
  OPT_fmax_subrecord_length_ = 826,          /* -fmax-subrecord-length= */
  OPT_fmem_report = 827,                     /* -fmem-report */
  OPT_fmem_report_wpa = 828,                 /* -fmem-report-wpa */
  OPT_fmerge_all_constants = 829,            /* -fmerge-all-constants */
  OPT_fmerge_constants = 830,                /* -fmerge-constants */
  OPT_fmerge_debug_strings = 831,            /* -fmerge-debug-strings */
  OPT_fmessage_length_ = 832,                /* -fmessage-length= */
  OPT_fmodule_private = 833,                 /* -fmodule-private */
  OPT_fmodulo_sched = 834,                   /* -fmodulo-sched */
  OPT_fmodulo_sched_allow_regmoves = 835,    /* -fmodulo-sched-allow-regmoves */
  OPT_fmove_loop_invariants = 836,           /* -fmove-loop-invariants */
  OPT_fms_extensions = 837,                  /* -fms-extensions */
  /* OPT_fmudflap = 838, */                  /* -fmudflap */
  /* OPT_fmudflapir = 839, */                /* -fmudflapir */
  /* OPT_fmudflapth = 840, */                /* -fmudflapth */
  /* OPT_fname_mangling_version_ = 841, */   /* -fname-mangling-version- */
  /* OPT_fnew_abi = 842, */                  /* -fnew-abi */
  OPT_fnext_runtime = 843,                   /* -fnext-runtime */
  OPT_fnil_receivers = 844,                  /* -fnil-receivers */
  /* OPT_fno_vect_cost_model = 845, */       /* -fno-vect-cost-model */
  OPT_fnon_call_exceptions = 846,            /* -fnon-call-exceptions */
  OPT_fnonansi_builtins = 847,               /* -fnonansi-builtins */
  /* OPT_fnonnull_objects = 848, */          /* -fnonnull-objects */
  OPT_fnothrow_opt = 849,                    /* -fnothrow-opt */
  OPT_fobjc_abi_version_ = 850,              /* -fobjc-abi-version= */
  OPT_fobjc_call_cxx_cdtors = 851,           /* -fobjc-call-cxx-cdtors */
  OPT_fobjc_direct_dispatch = 852,           /* -fobjc-direct-dispatch */
  OPT_fobjc_exceptions = 853,                /* -fobjc-exceptions */
  OPT_fobjc_gc = 854,                        /* -fobjc-gc */
  OPT_fobjc_nilcheck = 855,                  /* -fobjc-nilcheck */
  OPT_fobjc_sjlj_exceptions = 856,           /* -fobjc-sjlj-exceptions */
  OPT_fobjc_std_objc1 = 857,                 /* -fobjc-std=objc1 */
  OPT_foffload_abi_ = 858,                   /* -foffload-abi= */
  OPT_foffload_ = 859,                       /* -foffload= */
  OPT_fomit_frame_pointer = 860,             /* -fomit-frame-pointer */
  OPT_fopenacc = 861,                        /* -fopenacc */
  OPT_fopenacc_dim_ = 862,                   /* -fopenacc-dim= */
  OPT_fopenmp = 863,                         /* -fopenmp */
  OPT_fopenmp_simd = 864,                    /* -fopenmp-simd */
  OPT_foperator_names = 865,                 /* -foperator-names */
  OPT_fopt_info = 866,                       /* -fopt-info */
  OPT_fopt_info_ = 867,                      /* -fopt-info- */
  /* OPT_foptimize_register_move = 868, */   /* -foptimize-register-move */
  OPT_foptimize_sibling_calls = 869,         /* -foptimize-sibling-calls */
  OPT_foptimize_static_class_initialization = 870,/* -foptimize-static-class-initialization */
  OPT_foptimize_strlen = 871,                /* -foptimize-strlen */
  /* OPT_foptional_diags = 872, */           /* -foptional-diags */
  OPT_foutput_class_dir_ = 873,              /* -foutput-class-dir= */
  OPT_fpack_derived = 874,                   /* -fpack-derived */
  OPT_fpack_struct = 875,                    /* -fpack-struct */
  OPT_fpack_struct_ = 876,                   /* -fpack-struct= */
  OPT_fpartial_inlining = 877,               /* -fpartial-inlining */
  OPT_fpcc_struct_return = 878,              /* -fpcc-struct-return */
  OPT_fpch_deps = 879,                       /* -fpch-deps */
  OPT_fpch_preprocess = 880,                 /* -fpch-preprocess */
  OPT_fpeel_loops = 881,                     /* -fpeel-loops */
  OPT_fpeephole = 882,                       /* -fpeephole */
  OPT_fpeephole2 = 883,                      /* -fpeephole2 */
  OPT_fpermissive = 884,                     /* -fpermissive */
  OPT_fpic = 885,                            /* -fpic */
  OPT_fpie = 886,                            /* -fpie */
  OPT_fplan9_extensions = 887,               /* -fplan9-extensions */
  OPT_fplt = 888,                            /* -fplt */
  OPT_fplugin_arg_ = 889,                    /* -fplugin-arg- */
  OPT_fplugin_ = 890,                        /* -fplugin= */
  OPT_fpost_ipa_mem_report = 891,            /* -fpost-ipa-mem-report */
  OPT_fpre_ipa_mem_report = 892,             /* -fpre-ipa-mem-report */
  OPT_fpredictive_commoning = 893,           /* -fpredictive-commoning */
  OPT_fprefetch_loop_arrays = 894,           /* -fprefetch-loop-arrays */
  OPT_fpreprocessed = 895,                   /* -fpreprocessed */
  OPT_fpretty_templates = 896,               /* -fpretty-templates */
  OPT_fprofile = 897,                        /* -fprofile */
  OPT_fprofile_arcs = 898,                   /* -fprofile-arcs */
  OPT_fprofile_correction = 899,             /* -fprofile-correction */
  OPT_fprofile_dir_ = 900,                   /* -fprofile-dir= */
  OPT_fprofile_generate = 901,               /* -fprofile-generate */
  OPT_fprofile_generate_ = 902,              /* -fprofile-generate= */
  OPT_fprofile_reorder_functions = 903,      /* -fprofile-reorder-functions */
  OPT_fprofile_report = 904,                 /* -fprofile-report */
  OPT_fprofile_use = 905,                    /* -fprofile-use */
  OPT_fprofile_use_ = 906,                   /* -fprofile-use= */
  OPT_fprofile_values = 907,                 /* -fprofile-values */
  OPT_fprotect_parens = 908,                 /* -fprotect-parens */
  OPT_frandom_seed = 909,                    /* -frandom-seed */
  OPT_frandom_seed_ = 910,                   /* -frandom-seed= */
  OPT_frange_check = 911,                    /* -frange-check */
  OPT_freal_4_real_10 = 912,                 /* -freal-4-real-10 */
  OPT_freal_4_real_16 = 913,                 /* -freal-4-real-16 */
  OPT_freal_4_real_8 = 914,                  /* -freal-4-real-8 */
  OPT_freal_8_real_10 = 915,                 /* -freal-8-real-10 */
  OPT_freal_8_real_16 = 916,                 /* -freal-8-real-16 */
  OPT_freal_8_real_4 = 917,                  /* -freal-8-real-4 */
  OPT_frealloc_lhs = 918,                    /* -frealloc-lhs */
  OPT_freciprocal_math = 919,                /* -freciprocal-math */
  OPT_frecord_gcc_switches = 920,            /* -frecord-gcc-switches */
  OPT_frecord_marker_4 = 921,                /* -frecord-marker=4 */
  OPT_frecord_marker_8 = 922,                /* -frecord-marker=8 */
  OPT_frecursive = 923,                      /* -frecursive */
  OPT_freduced_reflection = 924,             /* -freduced-reflection */
  OPT_free = 925,                            /* -free */
  OPT_freg_struct_return = 926,              /* -freg-struct-return */
  /* OPT_fregmove = 927, */                  /* -fregmove */
  OPT_frename_registers = 928,               /* -frename-registers */
  OPT_freorder_blocks = 929,                 /* -freorder-blocks */
  OPT_freorder_blocks_algorithm_ = 930,      /* -freorder-blocks-algorithm= */
  OPT_freorder_blocks_and_partition = 931,   /* -freorder-blocks-and-partition */
  OPT_freorder_functions = 932,              /* -freorder-functions */
  OPT_frepack_arrays = 933,                  /* -frepack-arrays */
  OPT_freplace_objc_classes = 934,           /* -freplace-objc-classes */
  OPT_frepo = 935,                           /* -frepo */
  OPT_freport_bug = 936,                     /* -freport-bug */
  OPT_frequire_return_statement = 937,       /* -frequire-return-statement */
  OPT_frerun_cse_after_loop = 938,           /* -frerun-cse-after-loop */
  /* OPT_frerun_loop_opt = 939, */           /* -frerun-loop-opt */
  OPT_freschedule_modulo_scheduled_loops = 940,/* -freschedule-modulo-scheduled-loops */
  OPT_fresolution_ = 941,                    /* -fresolution= */
  OPT_frounding_math = 942,                  /* -frounding-math */
  OPT_frtti = 943,                           /* -frtti */
  OPT_fsanitize_coverage_trace_pc = 944,     /* -fsanitize-coverage=trace-pc */
  OPT_fsanitize_recover = 945,               /* -fsanitize-recover */
  OPT_fsanitize_recover_ = 946,              /* -fsanitize-recover= */
  OPT_fsanitize_sections_ = 947,             /* -fsanitize-sections= */
  OPT_fsanitize_undefined_trap_on_error = 948,/* -fsanitize-undefined-trap-on-error */
  OPT_fsanitize_ = 949,                      /* -fsanitize= */
  OPT_fsaw_java_file = 950,                  /* -fsaw-java-file */
  OPT_fsched_critical_path_heuristic = 951,  /* -fsched-critical-path-heuristic */
  OPT_fsched_dep_count_heuristic = 952,      /* -fsched-dep-count-heuristic */
  OPT_fsched_group_heuristic = 953,          /* -fsched-group-heuristic */
  OPT_fsched_interblock = 954,               /* -fsched-interblock */
  OPT_fsched_last_insn_heuristic = 955,      /* -fsched-last-insn-heuristic */
  OPT_fsched_pressure = 956,                 /* -fsched-pressure */
  OPT_fsched_rank_heuristic = 957,           /* -fsched-rank-heuristic */
  OPT_fsched_spec = 958,                     /* -fsched-spec */
  OPT_fsched_spec_insn_heuristic = 959,      /* -fsched-spec-insn-heuristic */
  OPT_fsched_spec_load = 960,                /* -fsched-spec-load */
  OPT_fsched_spec_load_dangerous = 961,      /* -fsched-spec-load-dangerous */
  OPT_fsched_stalled_insns = 962,            /* -fsched-stalled-insns */
  OPT_fsched_stalled_insns_dep = 963,        /* -fsched-stalled-insns-dep */
  OPT_fsched_stalled_insns_dep_ = 964,       /* -fsched-stalled-insns-dep= */
  OPT_fsched_stalled_insns_ = 965,           /* -fsched-stalled-insns= */
  OPT_fsched_verbose_ = 966,                 /* -fsched-verbose= */
  OPT_fsched2_use_superblocks = 967,         /* -fsched2-use-superblocks */
  /* OPT_fsched2_use_traces = 968, */        /* -fsched2-use-traces */
  OPT_fschedule_fusion = 969,                /* -fschedule-fusion */
  OPT_fschedule_insns = 970,                 /* -fschedule-insns */
  OPT_fschedule_insns2 = 971,                /* -fschedule-insns2 */
  OPT_fsecond_underscore = 972,              /* -fsecond-underscore */
  OPT_fsection_anchors = 973,                /* -fsection-anchors */
  /* OPT_fsee = 974, */                      /* -fsee */
  OPT_fsel_sched_pipelining = 975,           /* -fsel-sched-pipelining */
  OPT_fsel_sched_pipelining_outer_loops = 976,/* -fsel-sched-pipelining-outer-loops */
  OPT_fsel_sched_reschedule_pipelined = 977, /* -fsel-sched-reschedule-pipelined */
  OPT_fselective_scheduling = 978,           /* -fselective-scheduling */
  OPT_fselective_scheduling2 = 979,          /* -fselective-scheduling2 */
  OPT_fsemantic_interposition = 980,         /* -fsemantic-interposition */
  OPT_fshort_enums = 981,                    /* -fshort-enums */
  OPT_fshort_wchar = 982,                    /* -fshort-wchar */
  OPT_fshow_column = 983,                    /* -fshow-column */
  OPT_fshrink_wrap = 984,                    /* -fshrink-wrap */
  OPT_fsign_zero = 985,                      /* -fsign-zero */
  OPT_fsignaling_nans = 986,                 /* -fsignaling-nans */
  OPT_fsigned_bitfields = 987,               /* -fsigned-bitfields */
  OPT_fsigned_char = 988,                    /* -fsigned-char */
  OPT_fsigned_zeros = 989,                   /* -fsigned-zeros */
  OPT_fsimd_cost_model_ = 990,               /* -fsimd-cost-model= */
  OPT_fsingle_precision_constant = 991,      /* -fsingle-precision-constant */
  OPT_fsized_deallocation = 992,             /* -fsized-deallocation */
  OPT_fsource_filename_ = 993,               /* -fsource-filename= */
  OPT_fsource_ = 994,                        /* -fsource= */
  OPT_fsplit_ivs_in_unroller = 995,          /* -fsplit-ivs-in-unroller */
  OPT_fsplit_paths = 996,                    /* -fsplit-paths */
  OPT_fsplit_stack = 997,                    /* -fsplit-stack */
  OPT_fsplit_wide_types = 998,               /* -fsplit-wide-types */
  /* OPT_fsquangle = 999, */                 /* -fsquangle */
  OPT_fssa_backprop = 1000,                  /* -fssa-backprop */
  OPT_fssa_phiopt = 1001,                    /* -fssa-phiopt */
  OPT_fsso_struct_ = 1002,                   /* -fsso-struct= */
  OPT_fstack_arrays = 1003,                  /* -fstack-arrays */
  /* OPT_fstack_check = 1004, */             /* -fstack-check */
  OPT_fstack_check_ = 1005,                  /* -fstack-check= */
  OPT_fstack_limit = 1006,                   /* -fstack-limit */
  OPT_fstack_limit_register_ = 1007,         /* -fstack-limit-register= */
  OPT_fstack_limit_symbol_ = 1008,           /* -fstack-limit-symbol= */
  OPT_fstack_protector = 1009,               /* -fstack-protector */
  OPT_fstack_protector_all = 1010,           /* -fstack-protector-all */
  OPT_fstack_protector_explicit = 1011,      /* -fstack-protector-explicit */
  OPT_fstack_protector_strong = 1012,        /* -fstack-protector-strong */
  OPT_fstack_reuse_ = 1013,                  /* -fstack-reuse= */
  OPT_fstack_usage = 1014,                   /* -fstack-usage */
  OPT_fstats = 1015,                         /* -fstats */
  OPT_fstdarg_opt = 1016,                    /* -fstdarg-opt */
  OPT_fstore_check = 1017,                   /* -fstore-check */
  /* OPT_fstrength_reduce = 1018, */         /* -fstrength-reduce */
  OPT_fstrict_aliasing = 1019,               /* -fstrict-aliasing */
  OPT_fstrict_enums = 1020,                  /* -fstrict-enums */
  OPT_fstrict_overflow = 1021,               /* -fstrict-overflow */
  /* OPT_fstrict_prototype = 1022, */        /* -fstrict-prototype */
  OPT_fstrict_volatile_bitfields = 1023,     /* -fstrict-volatile-bitfields */
  OPT_fsync_libcalls = 1024,                 /* -fsync-libcalls */
  OPT_fsyntax_only = 1025,                   /* -fsyntax-only */
  OPT_ftabstop_ = 1026,                      /* -ftabstop= */
  /* OPT_ftarget_help = 1027, */             /* -ftarget-help */
  OPT_ftarget_ = 1028,                       /* -ftarget= */
  OPT_ftemplate_backtrace_limit_ = 1029,     /* -ftemplate-backtrace-limit= */
  /* OPT_ftemplate_depth_ = 1030, */         /* -ftemplate-depth- */
  OPT_ftemplate_depth_ = 1031,               /* -ftemplate-depth= */
  OPT_ftest_coverage = 1032,                 /* -ftest-coverage */
  /* OPT_fthis_is_variable = 1033, */        /* -fthis-is-variable */
  OPT_fthread_jumps = 1034,                  /* -fthread-jumps */
  OPT_fthreadsafe_statics = 1035,            /* -fthreadsafe-statics */
  OPT_ftime_report = 1036,                   /* -ftime-report */
  OPT_ftls_model_ = 1037,                    /* -ftls-model= */
  OPT_ftoplevel_reorder = 1038,              /* -ftoplevel-reorder */
  OPT_ftracer = 1039,                        /* -ftracer */
  OPT_ftrack_macro_expansion = 1040,         /* -ftrack-macro-expansion */
  OPT_ftrack_macro_expansion_ = 1041,        /* -ftrack-macro-expansion= */
  OPT_ftrapping_math = 1042,                 /* -ftrapping-math */
  OPT_ftrapv = 1043,                         /* -ftrapv */
  OPT_ftree_bit_ccp = 1044,                  /* -ftree-bit-ccp */
  OPT_ftree_builtin_call_dce = 1045,         /* -ftree-builtin-call-dce */
  OPT_ftree_ccp = 1046,                      /* -ftree-ccp */
  OPT_ftree_ch = 1047,                       /* -ftree-ch */
  /* OPT_ftree_coalesce_inlined_vars = 1048, *//* -ftree-coalesce-inlined-vars */
  OPT_ftree_coalesce_vars = 1049,            /* -ftree-coalesce-vars */
  OPT_ftree_copy_prop = 1050,                /* -ftree-copy-prop */
  /* OPT_ftree_copyrename = 1051, */         /* -ftree-copyrename */
  OPT_ftree_cselim = 1052,                   /* -ftree-cselim */
  OPT_ftree_dce = 1053,                      /* -ftree-dce */
  OPT_ftree_dominator_opts = 1054,           /* -ftree-dominator-opts */
  OPT_ftree_dse = 1055,                      /* -ftree-dse */
  OPT_ftree_forwprop = 1056,                 /* -ftree-forwprop */
  OPT_ftree_fre = 1057,                      /* -ftree-fre */
  OPT_ftree_loop_distribute_patterns = 1058, /* -ftree-loop-distribute-patterns */
  OPT_ftree_loop_distribution = 1059,        /* -ftree-loop-distribution */
  OPT_ftree_loop_if_convert = 1060,          /* -ftree-loop-if-convert */
  OPT_ftree_loop_if_convert_stores = 1061,   /* -ftree-loop-if-convert-stores */
  OPT_ftree_loop_im = 1062,                  /* -ftree-loop-im */
  OPT_ftree_loop_ivcanon = 1063,             /* -ftree-loop-ivcanon */
  /* OPT_ftree_loop_linear = 1064, */        /* -ftree-loop-linear */
  OPT_ftree_loop_optimize = 1065,            /* -ftree-loop-optimize */
  OPT_ftree_loop_vectorize = 1066,           /* -ftree-loop-vectorize */
  OPT_ftree_lrs = 1067,                      /* -ftree-lrs */
  OPT_ftree_parallelize_loops_ = 1068,       /* -ftree-parallelize-loops= */
  OPT_ftree_partial_pre = 1069,              /* -ftree-partial-pre */
  OPT_ftree_phiprop = 1070,                  /* -ftree-phiprop */
  OPT_ftree_pre = 1071,                      /* -ftree-pre */
  OPT_ftree_pta = 1072,                      /* -ftree-pta */
  OPT_ftree_reassoc = 1073,                  /* -ftree-reassoc */
  /* OPT_ftree_salias = 1074, */             /* -ftree-salias */
  OPT_ftree_scev_cprop = 1075,               /* -ftree-scev-cprop */
  OPT_ftree_sink = 1076,                     /* -ftree-sink */
  OPT_ftree_slp_vectorize = 1077,            /* -ftree-slp-vectorize */
  OPT_ftree_slsr = 1078,                     /* -ftree-slsr */
  OPT_ftree_sra = 1079,                      /* -ftree-sra */
  /* OPT_ftree_store_ccp = 1080, */          /* -ftree-store-ccp */
  /* OPT_ftree_store_copy_prop = 1081, */    /* -ftree-store-copy-prop */
  OPT_ftree_switch_conversion = 1082,        /* -ftree-switch-conversion */
  OPT_ftree_tail_merge = 1083,               /* -ftree-tail-merge */
  OPT_ftree_ter = 1084,                      /* -ftree-ter */
  /* OPT_ftree_vect_loop_version = 1085, */  /* -ftree-vect-loop-version */
  OPT_ftree_vectorize = 1086,                /* -ftree-vectorize */
  /* OPT_ftree_vectorizer_verbose_ = 1087, *//* -ftree-vectorizer-verbose= */
  OPT_ftree_vrp = 1088,                      /* -ftree-vrp */
  OPT_funconstrained_commons = 1089,         /* -funconstrained-commons */
  OPT_funderscoring = 1090,                  /* -funderscoring */
  OPT_funit_at_a_time = 1091,                /* -funit-at-a-time */
  OPT_funroll_all_loops = 1092,              /* -funroll-all-loops */
  OPT_funroll_loops = 1093,                  /* -funroll-loops */
  OPT_funsafe_loop_optimizations = 1094,     /* -funsafe-loop-optimizations */
  OPT_funsafe_math_optimizations = 1095,     /* -funsafe-math-optimizations */
  OPT_funsigned_bitfields = 1096,            /* -funsigned-bitfields */
  OPT_funsigned_char = 1097,                 /* -funsigned-char */
  OPT_funswitch_loops = 1098,                /* -funswitch-loops */
  OPT_funwind_tables = 1099,                 /* -funwind-tables */
  OPT_fuse_atomic_builtins = 1100,           /* -fuse-atomic-builtins */
  OPT_fuse_boehm_gc = 1101,                  /* -fuse-boehm-gc */
  OPT_fuse_cxa_atexit = 1102,                /* -fuse-cxa-atexit */
  OPT_fuse_cxa_get_exception_ptr = 1103,     /* -fuse-cxa-get-exception-ptr */
  OPT_fuse_divide_subroutine = 1104,         /* -fuse-divide-subroutine */
  OPT_fuse_ld_bfd = 1105,                    /* -fuse-ld=bfd */
  OPT_fuse_ld_gold = 1106,                   /* -fuse-ld=gold */
  OPT_fuse_linker_plugin = 1107,             /* -fuse-linker-plugin */
  OPT_fvar_tracking = 1108,                  /* -fvar-tracking */
  OPT_fvar_tracking_assignments = 1109,      /* -fvar-tracking-assignments */
  OPT_fvar_tracking_assignments_toggle = 1110,/* -fvar-tracking-assignments-toggle */
  OPT_fvar_tracking_uninit = 1111,           /* -fvar-tracking-uninit */
  OPT_fvariable_expansion_in_unroller = 1112,/* -fvariable-expansion-in-unroller */
  /* OPT_fvect_cost_model = 1113, */         /* -fvect-cost-model */
  OPT_fvect_cost_model_ = 1114,              /* -fvect-cost-model= */
  OPT_fverbose_asm = 1115,                   /* -fverbose-asm */
  /* OPT_fversion = 1116, */                 /* -fversion */
  OPT_fvisibility_inlines_hidden = 1117,     /* -fvisibility-inlines-hidden */
  OPT_fvisibility_ms_compat = 1118,          /* -fvisibility-ms-compat */
  OPT_fvisibility_ = 1119,                   /* -fvisibility= */
  OPT_fvpt = 1120,                           /* -fvpt */
  /* OPT_fvtable_gc = 1121, */               /* -fvtable-gc */
  /* OPT_fvtable_thunks = 1122, */           /* -fvtable-thunks */
  OPT_fvtable_verify_ = 1123,                /* -fvtable-verify= */
  OPT_fvtv_counts = 1124,                    /* -fvtv-counts */
  OPT_fvtv_debug = 1125,                     /* -fvtv-debug */
  OPT_fweak = 1126,                          /* -fweak */
  OPT_fweb = 1127,                           /* -fweb */
  /* OPT_fwhole_file = 1128, */              /* -fwhole-file */
  OPT_fwhole_program = 1129,                 /* -fwhole-program */
  OPT_fwide_exec_charset_ = 1130,            /* -fwide-exec-charset= */
  OPT_fworking_directory = 1131,             /* -fworking-directory */
  OPT_fwpa = 1132,                           /* -fwpa */
  OPT_fwpa_ = 1133,                          /* -fwpa= */
  OPT_fwrapv = 1134,                         /* -fwrapv */
  /* OPT_fxref = 1135, */                    /* -fxref */
  /* OPT_fzee = 1136, */                     /* -fzee */
  OPT_fzero_initialized_in_bss = 1137,       /* -fzero-initialized-in-bss */
  OPT_fzero_link = 1138,                     /* -fzero-link */
  OPT_g = 1139,                              /* -g */
  OPT_gant = 1140,                           /* -gant */
  OPT_gcoff = 1141,                          /* -gcoff */
  OPT_gdwarf = 1142,                         /* -gdwarf */
  OPT_gdwarf_ = 1143,                        /* -gdwarf- */
  OPT_gen_decls = 1144,                      /* -gen-decls */
  OPT_ggdb = 1145,                           /* -ggdb */
  OPT_ggnu_pubnames = 1146,                  /* -ggnu-pubnames */
  OPT_gnat = 1147,                           /* -gnat */
  OPT_gnatO = 1148,                          /* -gnatO */
  OPT_gno_pubnames = 1149,                   /* -gno-pubnames */
  OPT_gno_record_gcc_switches = 1150,        /* -gno-record-gcc-switches */
  OPT_gno_split_dwarf = 1151,                /* -gno-split-dwarf */
  OPT_gno_strict_dwarf = 1152,               /* -gno-strict-dwarf */
  OPT_gpubnames = 1153,                      /* -gpubnames */
  OPT_grecord_gcc_switches = 1154,           /* -grecord-gcc-switches */
  OPT_gsplit_dwarf = 1155,                   /* -gsplit-dwarf */
  OPT_gstabs = 1156,                         /* -gstabs */
  OPT_gstabs_ = 1157,                        /* -gstabs+ */
  OPT_gstrict_dwarf = 1158,                  /* -gstrict-dwarf */
  OPT_gtoggle = 1159,                        /* -gtoggle */
  OPT_gvms = 1160,                           /* -gvms */
  OPT_gxcoff = 1161,                         /* -gxcoff */
  OPT_gxcoff_ = 1162,                        /* -gxcoff+ */
  OPT_gz = 1163,                             /* -gz */
  OPT_gz_ = 1164,                            /* -gz= */
  OPT_h = 1165,                              /* -h */
  OPT_idirafter = 1166,                      /* -idirafter */
  OPT_imacros = 1167,                        /* -imacros */
  OPT_imultiarch = 1168,                     /* -imultiarch */
  OPT_imultilib = 1169,                      /* -imultilib */
  OPT_include = 1170,                        /* -include */
  OPT_iplugindir_ = 1171,                    /* -iplugindir= */
  OPT_iprefix = 1172,                        /* -iprefix */
  OPT_iquote = 1173,                         /* -iquote */
  OPT_isysroot = 1174,                       /* -isysroot */
  OPT_isystem = 1175,                        /* -isystem */
  OPT_iwithprefix = 1176,                    /* -iwithprefix */
  OPT_iwithprefixbefore = 1177,              /* -iwithprefixbefore */
  OPT_k8 = 1178,                             /* -k8 */
  OPT_l = 1179,                              /* -l */
  OPT_lang_asm = 1180,                       /* -lang-asm */
  OPT_mabi_ = 1181,                          /* -mabi= */
  OPT_march_ = 1182,                         /* -march= */
  OPT_mbig_endian = 1183,                    /* -mbig-endian */
  OPT_mbionic = 1184,                        /* -mbionic */
  OPT_mcmodel_ = 1185,                       /* -mcmodel= */
  OPT_mcpu_ = 1186,                          /* -mcpu= */
  OPT_mfix_cortex_a53_835769 = 1187,         /* -mfix-cortex-a53-835769 */
  OPT_mfix_cortex_a53_843419 = 1188,         /* -mfix-cortex-a53-843419 */
  OPT_mgeneral_regs_only = 1189,             /* -mgeneral-regs-only */
  OPT_mglibc = 1190,                         /* -mglibc */
  OPT_mlittle_endian = 1191,                 /* -mlittle-endian */
  OPT_mlow_precision_div = 1192,             /* -mlow-precision-div */
  OPT_mlow_precision_recip_sqrt = 1193,      /* -mlow-precision-recip-sqrt */
  OPT_mlow_precision_sqrt = 1194,            /* -mlow-precision-sqrt */
  OPT_mmusl = 1195,                          /* -mmusl */
  OPT_momit_leaf_frame_pointer = 1196,       /* -momit-leaf-frame-pointer */
  OPT_moverride_ = 1197,                     /* -moverride= */
  OPT_mpc_relative_literal_loads = 1198,     /* -mpc-relative-literal-loads */
  OPT_mstrict_align = 1199,                  /* -mstrict-align */
  OPT_mtls_dialect_ = 1200,                  /* -mtls-dialect= */
  OPT_mtls_size_ = 1201,                     /* -mtls-size= */
  OPT_mtune_ = 1202,                         /* -mtune= */
  OPT_muclibc = 1203,                        /* -muclibc */
  OPT_mverbose_cost_dump = 1204,             /* -mverbose-cost-dump */
  OPT_n = 1205,                              /* -n */
  OPT_no_canonical_prefixes = 1206,          /* -no-canonical-prefixes */
  OPT_no_integrated_cpp = 1207,              /* -no-integrated-cpp */
  OPT_no_pie = 1208,                         /* -no-pie */
  OPT_nocpp = 1209,                          /* -nocpp */
  OPT_nodefaultlibs = 1210,                  /* -nodefaultlibs */
  OPT_nostartfiles = 1211,                   /* -nostartfiles */
  OPT_nostdinc = 1212,                       /* -nostdinc */
  OPT_nostdinc__ = 1213,                     /* -nostdinc++ */
  OPT_nostdlib = 1214,                       /* -nostdlib */
  OPT_o = 1215,                              /* -o */
  OPT_p = 1216,                              /* -p */
  OPT_pass_exit_codes = 1217,                /* -pass-exit-codes */
  /* OPT_pedantic = 1218, */                 /* -pedantic */
  OPT_pedantic_errors = 1219,                /* -pedantic-errors */
  OPT_pg = 1220,                             /* -pg */
  OPT_pie = 1221,                            /* -pie */
  OPT_pipe = 1222,                           /* -pipe */
  OPT_posix = 1223,                          /* -posix */
  OPT_print_file_name_ = 1224,               /* -print-file-name= */
  OPT_print_libgcc_file_name = 1225,         /* -print-libgcc-file-name */
  OPT_print_multi_directory = 1226,          /* -print-multi-directory */
  OPT_print_multi_lib = 1227,                /* -print-multi-lib */
  OPT_print_multi_os_directory = 1228,       /* -print-multi-os-directory */
  OPT_print_multiarch = 1229,                /* -print-multiarch */
  OPT_print_objc_runtime_info = 1230,        /* -print-objc-runtime-info */
  OPT_print_prog_name_ = 1231,               /* -print-prog-name= */
  OPT_print_search_dirs = 1232,              /* -print-search-dirs */
  OPT_print_sysroot = 1233,                  /* -print-sysroot */
  OPT_print_sysroot_headers_suffix = 1234,   /* -print-sysroot-headers-suffix */
  OPT_profile = 1235,                        /* -profile */
  OPT_pthread = 1236,                        /* -pthread */
  OPT_quiet = 1237,                          /* -quiet */
  OPT_r = 1238,                              /* -r */
  OPT_rdynamic = 1239,                       /* -rdynamic */
  OPT_remap = 1240,                          /* -remap */
  OPT_s = 1241,                              /* -s */
  OPT_s_bc_abi = 1242,                       /* -s-bc-abi */
  OPT_save_temps = 1243,                     /* -save-temps */
  OPT_save_temps_ = 1244,                    /* -save-temps= */
  OPT_shared = 1245,                         /* -shared */
  OPT_shared_libgcc = 1246,                  /* -shared-libgcc */
  /* OPT_specs = 1247, */                    /* -specs */
  OPT_specs_ = 1248,                         /* -specs= */
  OPT_static = 1249,                         /* -static */
  OPT_static_libasan = 1250,                 /* -static-libasan */
  OPT_static_libgcc = 1251,                  /* -static-libgcc */
  OPT_static_libgcj = 1252,                  /* -static-libgcj */
  OPT_static_libgfortran = 1253,             /* -static-libgfortran */
  OPT_static_libgo = 1254,                   /* -static-libgo */
  OPT_static_liblsan = 1255,                 /* -static-liblsan */
  OPT_static_libmpx = 1256,                  /* -static-libmpx */
  OPT_static_libmpxwrappers = 1257,          /* -static-libmpxwrappers */
  OPT_static_libstdc__ = 1258,               /* -static-libstdc++ */
  OPT_static_libtsan = 1259,                 /* -static-libtsan */
  OPT_static_libubsan = 1260,                /* -static-libubsan */
  /* OPT_std_c__03 = 1261, */                /* -std=c++03 */
  /* OPT_std_c__0x = 1262, */                /* -std=c++0x */
  OPT_std_c__11 = 1263,                      /* -std=c++11 */
  OPT_std_c__14 = 1264,                      /* -std=c++14 */
  /* OPT_std_c__17 = 1265, */                /* -std=c++17 */
  /* OPT_std_c__1y = 1266, */                /* -std=c++1y */
  OPT_std_c__1z = 1267,                      /* -std=c++1z */
  OPT_std_c__98 = 1268,                      /* -std=c++98 */
  OPT_std_c11 = 1269,                        /* -std=c11 */
  /* OPT_std_c1x = 1270, */                  /* -std=c1x */
  /* OPT_std_c89 = 1271, */                  /* -std=c89 */
  OPT_std_c90 = 1272,                        /* -std=c90 */
  OPT_std_c99 = 1273,                        /* -std=c99 */
  /* OPT_std_c9x = 1274, */                  /* -std=c9x */
  OPT_std_f2003 = 1275,                      /* -std=f2003 */
  OPT_std_f2008 = 1276,                      /* -std=f2008 */
  OPT_std_f2008ts = 1277,                    /* -std=f2008ts */
  OPT_std_f95 = 1278,                        /* -std=f95 */
  OPT_std_gnu = 1279,                        /* -std=gnu */
  /* OPT_std_gnu__03 = 1280, */              /* -std=gnu++03 */
  /* OPT_std_gnu__0x = 1281, */              /* -std=gnu++0x */
  OPT_std_gnu__11 = 1282,                    /* -std=gnu++11 */
  OPT_std_gnu__14 = 1283,                    /* -std=gnu++14 */
  /* OPT_std_gnu__17 = 1284, */              /* -std=gnu++17 */
  /* OPT_std_gnu__1y = 1285, */              /* -std=gnu++1y */
  OPT_std_gnu__1z = 1286,                    /* -std=gnu++1z */
  OPT_std_gnu__98 = 1287,                    /* -std=gnu++98 */
  OPT_std_gnu11 = 1288,                      /* -std=gnu11 */
  /* OPT_std_gnu1x = 1289, */                /* -std=gnu1x */
  /* OPT_std_gnu89 = 1290, */                /* -std=gnu89 */
  OPT_std_gnu90 = 1291,                      /* -std=gnu90 */
  OPT_std_gnu99 = 1292,                      /* -std=gnu99 */
  /* OPT_std_gnu9x = 1293, */                /* -std=gnu9x */
  /* OPT_std_iso9899_1990 = 1294, */         /* -std=iso9899:1990 */
  OPT_std_iso9899_199409 = 1295,             /* -std=iso9899:199409 */
  /* OPT_std_iso9899_1999 = 1296, */         /* -std=iso9899:1999 */
  /* OPT_std_iso9899_199x = 1297, */         /* -std=iso9899:199x */
  /* OPT_std_iso9899_2011 = 1298, */         /* -std=iso9899:2011 */
  OPT_std_legacy = 1299,                     /* -std=legacy */
  OPT_symbolic = 1300,                       /* -symbolic */
  OPT_t = 1301,                              /* -t */
  OPT_time = 1302,                           /* -time */
  OPT_time_ = 1303,                          /* -time= */
  OPT_traditional = 1304,                    /* -traditional */
  OPT_traditional_cpp = 1305,                /* -traditional-cpp */
  OPT_trigraphs = 1306,                      /* -trigraphs */
  OPT_u = 1307,                              /* -u */
  OPT_undef = 1308,                          /* -undef */
  OPT_v = 1309,                              /* -v */
  OPT_version = 1310,                        /* -version */
  OPT_w = 1311,                              /* -w */
  OPT_wrapper = 1312,                        /* -wrapper */
  OPT_x = 1313,                              /* -x */
  OPT_z = 1314,                              /* -z */
  N_OPTS,
  OPT_SPECIAL_unknown,
  OPT_SPECIAL_ignore,
  OPT_SPECIAL_program_name,
  OPT_SPECIAL_input_file
};
 
#ifdef GCC_C_COMMON_C
/* Mapping from cpp message reasons to the options that enable them.  */
#include <cpplib.h>
struct cpp_reason_option_codes_t
{
  const int reason;        /* cpplib message reason.  */
  const int option_code;    /* gcc option that controls this message.  */
};
 
static const struct cpp_reason_option_codes_t cpp_reason_option_codes[] = {
  {CPP_W_BUILTIN_MACRO_REDEFINED,           OPT_Wbuiltin_macro_redefined},
  {CPP_W_CXX_OPERATOR_NAMES,                OPT_Wc___compat},
  {CPP_W_CXX11_COMPAT,                      OPT_Wc__11_compat},
  {CPP_W_C90_C99_COMPAT,                    OPT_Wc90_c99_compat},
  {CPP_W_COMMENTS,                          OPT_Wcomment},
  {CPP_W_WARNING_DIRECTIVE,                 OPT_Wcpp},
  {CPP_W_DATE_TIME,                         OPT_Wdate_time},
  {CPP_W_DEPRECATED,                        OPT_Wdeprecated},
  {CPP_W_ENDIF_LABELS,                      OPT_Wendif_labels},
  {CPP_W_INVALID_PCH,                       OPT_Winvalid_pch},
  {CPP_W_LITERAL_SUFFIX,                    OPT_Wliteral_suffix},
  {CPP_W_LONG_LONG,                         OPT_Wlong_long},
  {CPP_W_MISSING_INCLUDE_DIRS,              OPT_Wmissing_include_dirs},
  {CPP_W_MULTICHAR,                         OPT_Wmultichar},
  {CPP_W_NORMALIZE,                         OPT_Wnormalized_},
  {CPP_W_PEDANTIC,                          OPT_Wpedantic},
  {CPP_W_TRADITIONAL,                       OPT_Wtraditional},
  {CPP_W_TRIGRAPHS,                         OPT_Wtrigraphs},
  {CPP_W_UNDEF,                             OPT_Wundef},
  {CPP_W_UNUSED_MACROS,                     OPT_Wunused_macros},
  {CPP_W_VARIADIC_MACROS,                   OPT_Wvariadic_macros},
  {CPP_W_NONE,                              0},
};
#endif
 
#endif /* OPTIONS_H */