hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Copyright (C) 1988-2016 Free Software Foundation, Inc.
 
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being "Funding Free Software", the Front-Cover
Texts being (a) (see below), and with the Back-Cover Texts being (b)
(see below).  A copy of the license is included in the section entitled
"GNU Free Documentation License".
 
(a) The FSF's Front-Cover Text is:
 
A GNU Manual
 
(b) The FSF's Back-Cover Text is:
 
You have freedom to copy and modify this GNU Manual, like GNU
     software.  Copies published by the Free Software Foundation raise
     funds for GNU development. -->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>Using the GNU Compiler Collection (GCC): Keyword Index</title>
 
<meta name="description" content="Using the GNU Compiler Collection (GCC): Keyword Index">
<meta name="keywords" content="Using the GNU Compiler Collection (GCC): Keyword Index">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Option-Index.html#Option-Index" rel="index" title="Option Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="index.html#Top" rel="up" title="Top">
<link href="Option-Index.html#Option-Index" rel="prev" title="Option Index">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
 
 
</head>
 
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Keyword-Index"></a>
<div class="header">
<p>
Previous: <a href="Option-Index.html#Option-Index" accesskey="p" rel="prev">Option Index</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Keyword-Index-1"></a>
<h2 class="unnumbered">Keyword Index</h2>
 
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Keyword-Index_cp_symbol-1"><b>#</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-2"><b>$</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-3"><b>%</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-4"><b>&amp;</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-5"><b>'</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-6"><b>*</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-7"><b>+</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-8"><b>-</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-9"><b>.</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-10"><b>/</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-11"><b>0</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-12"><b>&lt;</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-13"><b>=</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-14"><b>&gt;</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-15"><b>?</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-16"><b>_</b></a>
 &nbsp; 
<br>
<a class="summary-letter" href="#Keyword-Index_cp_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-W"><b>W</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-X"><b>X</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-Y"><b>Y</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-Z"><b>Z</b></a>
 &nbsp; 
</td></tr></table>
<table class="index-cp" border="0">
<tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> Section</th></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-1">#</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Pragmas.html#index-_0023pragma"><code>#pragma</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pragmas.html#Pragmas">Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-_0023pragma-implementation"><code>#pragma implementation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-_0023pragma-implementation_002c-implied"><code>#pragma implementation</code>, implied</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-_0023pragma-interface"><code>#pragma interface</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-2">$</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Dollar-Signs.html#index-_0024">$</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dollar-Signs.html#Dollar-Signs">Dollar Signs</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-3">%</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Modifiers.html#index-_0025-in-constraint">&lsquo;<samp>%</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Modifiers.html#Modifiers">Modifiers</a></td></tr>
<tr><td></td><td valign="top"><a href="Spec-Files.html#index-_0025include"><code>%include</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Spec-Files.html#Spec-Files">Spec Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Spec-Files.html#index-_0025include_005fnoerr"><code>%include_noerr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Spec-Files.html#Spec-Files">Spec Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Spec-Files.html#index-_0025rename"><code>%rename</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Spec-Files.html#Spec-Files">Spec Files</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-4">&amp;</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Modifiers.html#index-_0026-in-constraint">&lsquo;<samp>&amp;</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Modifiers.html#Modifiers">Modifiers</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-5">'</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-_0027"><code>'</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-6">*</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_002a_005f_005fbuiltin_005falloca"><code>*__builtin_alloca</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_002a_005f_005fbuiltin_005falloca_005fwith_005falign"><code>*__builtin_alloca_with_align</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-7">+</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Modifiers.html#index-_002b-in-constraint">&lsquo;<samp>+</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Modifiers.html#Modifiers">Modifiers</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-8">-</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-_002dlgcc_002c-use-with-_002dnodefaultlibs"><samp>-lgcc</samp>, use with <samp>-nodefaultlibs</samp></a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-_002dlgcc_002c-use-with-_002dnostdlib"><samp>-lgcc</samp>, use with <samp>-nostdlib</samp></a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Options.html#index-_002dmarch-feature-modifiers"><samp>-march</samp> feature modifiers</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Options.html#index-_002dmcpu-feature-modifiers"><samp>-mcpu</samp> feature modifiers</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-_002dnodefaultlibs-and-unresolved-references"><samp>-nodefaultlibs</samp> and unresolved references</a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-_002dnostdlib-and-unresolved-references"><samp>-nostdlib</samp> and unresolved references</a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-9">.</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#index-_002esdata_002f_002esdata2-references-_0028PowerPC_0029">.sdata/.sdata2 references (PowerPC)</a>:</td><td>&nbsp;</td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-10">/</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Comments.html#index-_002f_002f"><code>//</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Comments.html#C_002b_002b-Comments">C++ Comments</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-11">0</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-0-in-constraint">&lsquo;<samp>0</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-12">&lt;</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-_003c-in-constraint">&lsquo;<samp>&lt;</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-13">=</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Modifiers.html#index-_003d-in-constraint">&lsquo;<samp>=</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Modifiers.html#Modifiers">Modifiers</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-14">&gt;</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-_003e-in-constraint">&lsquo;<samp>&gt;</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-15">?</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Conditionals.html#index-_003f_003a-extensions"><code>?:</code> extensions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Conditionals.html#Conditionals">Conditionals</a></td></tr>
<tr><td></td><td valign="top"><a href="Conditionals.html#index-_003f_003a-side-effect"><code>?:</code> side effect</a>:</td><td>&nbsp;</td><td valign="top"><a href="Conditionals.html#Conditionals">Conditionals</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_symbol-16">_</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-_005f-in-variables-in-macros">&lsquo;<samp>_</samp>&rsquo; in variables in macros</a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-_005fAccum-data-type"><code>_Accum</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex.html#index-_005fComplex-keyword"><code>_Complex</code> keyword</a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex.html#Complex">Complex</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-_005fDecimal128-data-type"><code>_Decimal128</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-_005fDecimal32-data-type"><code>_Decimal32</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-_005fDecimal64-data-type"><code>_Decimal64</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005fExit"><code>_Exit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005fexit"><code>_exit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-_005fFract-data-type"><code>_Fract</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005fHTM_005fFIRST_005fUSER_005fABORT_005fCODE"><code>_HTM_FIRST_USER_ABORT_CODE</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-_005fSat-data-type"><code>_Sat</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#index-_005fxabort"><code>_xabort</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#x86-transactional-memory-intrinsics">x86 transactional memory intrinsics</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#index-_005fxbegin"><code>_xbegin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#x86-transactional-memory-intrinsics">x86 transactional memory intrinsics</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#index-_005fxend"><code>_xend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#x86-transactional-memory-intrinsics">x86 transactional memory intrinsics</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#index-_005fxtest"><code>_xtest</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-transactional-memory-intrinsics.html#x86-transactional-memory-intrinsics">x86 transactional memory intrinsics</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fadd_005ffetch"><code>__atomic_add_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005falways_005flock_005ffree"><code>__atomic_always_lock_free</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fand_005ffetch"><code>__atomic_and_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fclear"><code>__atomic_clear</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fcompare_005fexchange"><code>__atomic_compare_exchange</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fcompare_005fexchange_005fn"><code>__atomic_compare_exchange_n</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fexchange"><code>__atomic_exchange</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fexchange_005fn"><code>__atomic_exchange_n</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005ffetch_005fadd"><code>__atomic_fetch_add</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005ffetch_005fand"><code>__atomic_fetch_and</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005ffetch_005fnand"><code>__atomic_fetch_nand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005ffetch_005for"><code>__atomic_fetch_or</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005ffetch_005fsub"><code>__atomic_fetch_sub</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005ffetch_005fxor"><code>__atomic_fetch_xor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fis_005flock_005ffree"><code>__atomic_is_lock_free</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fload"><code>__atomic_load</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fload_005fn"><code>__atomic_load_n</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fnand_005ffetch"><code>__atomic_nand_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005for_005ffetch"><code>__atomic_or_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fsignal_005ffence"><code>__atomic_signal_fence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fstore"><code>__atomic_store</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fstore_005fn"><code>__atomic_store_n</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fsub_005ffetch"><code>__atomic_sub_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005ftest_005fand_005fset"><code>__atomic_test_and_set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fthread_005ffence"><code>__atomic_thread_fence</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fatomic-Builtins.html#index-_005f_005fatomic_005fxor_005ffetch"><code>__atomic_xor_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fatomic-Builtins.html#g_t_005f_005fatomic-Builtins">__atomic Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fadd_005foverflow"><code>__builtin_add_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005falloca"><code>__builtin_alloca</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005falloca_005fwith_005falign"><code>__builtin_alloca_with_align</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-Calls.html#index-_005f_005fbuiltin_005fapply"><code>__builtin_apply</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Constructing-Calls.html#Constructing-Calls">Constructing Calls</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-Calls.html#index-_005f_005fbuiltin_005fapply_005fargs"><code>__builtin_apply_args</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Constructing-Calls.html#Constructing-Calls">Constructing Calls</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005faligned"><code>__builtin_arc_aligned</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fbrk"><code>__builtin_arc_brk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fcore_005fread"><code>__builtin_arc_core_read</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fcore_005fwrite"><code>__builtin_arc_core_write</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fdivaw"><code>__builtin_arc_divaw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fflag"><code>__builtin_arc_flag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005flr"><code>__builtin_arc_lr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fmul64"><code>__builtin_arc_mul64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fmulu64"><code>__builtin_arc_mulu64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fnop"><code>__builtin_arc_nop</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fnorm"><code>__builtin_arc_norm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fnormw"><code>__builtin_arc_normw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005frtie"><code>__builtin_arc_rtie</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fsleep"><code>__builtin_arc_sleep</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fsr"><code>__builtin_arc_sr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fswap"><code>__builtin_arc_swap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fswi"><code>__builtin_arc_swi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005fsync"><code>__builtin_arc_sync</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005ftrap_005fs"><code>__builtin_arc_trap_s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Built_002din-Functions.html#index-_005f_005fbuiltin_005farc_005funimp_005fs"><code>__builtin_arc_unimp_s</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Built_002din-Functions.html#ARC-Built_002din-Functions">ARC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fassume_005faligned"><code>__builtin_assume_aligned</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fbswap16"><code>__builtin_bswap16</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fbswap32"><code>__builtin_bswap32</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fbswap64"><code>__builtin_bswap64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fcall_005fwith_005fstatic_005fchain"><code>__builtin_call_with_static_chain</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fcall_005fwith_005fstatic_005fchain-1"><code>__builtin_call_with_static_chain</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fchoose_005fexpr"><code>__builtin_choose_expr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fclrsb"><code>__builtin_clrsb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fclrsbl"><code>__builtin_clrsbl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fclrsbll"><code>__builtin_clrsbll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fclz"><code>__builtin_clz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fclzl"><code>__builtin_clzl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fclzll"><code>__builtin_clzll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fcomplex"><code>__builtin_complex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fconstant_005fp"><code>__builtin_constant_p</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#index-_005f_005fbuiltin_005fcpu_005finit"><code>__builtin_cpu_init</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#PowerPC-Built_002din-Functions">PowerPC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005fcpu_005finit-1"><code>__builtin_cpu_init</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Built_002din-Functions.html#x86-Built_002din-Functions">x86 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#index-_005f_005fbuiltin_005fcpu_005fis"><code>__builtin_cpu_is</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#PowerPC-Built_002din-Functions">PowerPC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005fcpu_005fis-1"><code>__builtin_cpu_is</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Built_002din-Functions.html#x86-Built_002din-Functions">x86 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#index-_005f_005fbuiltin_005fcpu_005fsupports"><code>__builtin_cpu_supports</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#PowerPC-Built_002din-Functions">PowerPC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005fcpu_005fsupports-1"><code>__builtin_cpu_supports</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Built_002din-Functions.html#x86-Built_002din-Functions">x86 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fctz"><code>__builtin_ctz</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fctzl"><code>__builtin_ctzl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fctzll"><code>__builtin_ctzll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fexpect"><code>__builtin_expect</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Return-Address.html#index-_005f_005fbuiltin_005fextract_005freturn_005faddr"><code>__builtin_extract_return_addr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Address.html#Return-Address">Return Address</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fffs"><code>__builtin_ffs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fffsl"><code>__builtin_ffsl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fffsll"><code>__builtin_ffsll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fFILE"><code>__builtin_FILE</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005ffpclassify"><code>__builtin_fpclassify</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005ffpclassify-1"><code>__builtin_fpclassify</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Return-Address.html#index-_005f_005fbuiltin_005fframe_005faddress"><code>__builtin_frame_address</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Address.html#Return-Address">Return Address</a></td></tr>
<tr><td></td><td valign="top"><a href="Return-Address.html#index-_005f_005fbuiltin_005ffrob_005freturn_005faddress"><code>__builtin_frob_return_address</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Address.html#Return-Address">Return Address</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fFUNCTION"><code>__builtin_FUNCTION</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fhuge_005fval"><code>__builtin_huge_val</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fhuge_005fvalf"><code>__builtin_huge_valf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fhuge_005fvall"><code>__builtin_huge_vall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#index-_005f_005fbuiltin_005fhuge_005fvalq"><code>__builtin_huge_valq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#PowerPC-Built_002din-Functions">PowerPC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005fhuge_005fvalq-1"><code>__builtin_huge_valq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Built_002din-Functions.html#x86-Built_002din-Functions">x86 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finf"><code>__builtin_inf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finfd128"><code>__builtin_infd128</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finfd32"><code>__builtin_infd32</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finfd64"><code>__builtin_infd64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finff"><code>__builtin_inff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finfl"><code>__builtin_infl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#index-_005f_005fbuiltin_005finfq"><code>__builtin_infq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#PowerPC-Built_002din-Functions">PowerPC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005finfq-1"><code>__builtin_infq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Built_002din-Functions.html#x86-Built_002din-Functions">x86 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisfinite"><code>__builtin_isfinite</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisgreater"><code>__builtin_isgreater</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisgreaterequal"><code>__builtin_isgreaterequal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisinf_005fsign"><code>__builtin_isinf_sign</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisinf_005fsign-1"><code>__builtin_isinf_sign</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisless"><code>__builtin_isless</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fislessequal"><code>__builtin_islessequal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fislessgreater"><code>__builtin_islessgreater</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisnormal"><code>__builtin_isnormal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fisunordered"><code>__builtin_isunordered</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fLINE"><code>__builtin_LINE</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fmul_005foverflow"><code>__builtin_mul_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnan"><code>__builtin_nan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnand128"><code>__builtin_nand128</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnand32"><code>__builtin_nand32</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnand64"><code>__builtin_nand64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnanf"><code>__builtin_nanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnanl"><code>__builtin_nanl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnanq"><code>__builtin_nanq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#PowerPC-Built_002din-Functions">PowerPC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnans"><code>__builtin_nans</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnansf"><code>__builtin_nansf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnansl"><code>__builtin_nansl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnansq"><code>__builtin_nansq</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Built_002din-Functions.html#PowerPC-Built_002din-Functions">PowerPC Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fisb"><code>__builtin_nds32_isb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fisync"><code>__builtin_nds32_isync</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fmfsr"><code>__builtin_nds32_mfsr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fmfusr"><code>__builtin_nds32_mfusr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fmtsr"><code>__builtin_nds32_mtsr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fmtusr"><code>__builtin_nds32_mtusr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fsetgie_005fdis"><code>__builtin_nds32_setgie_dis</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnds32_005fsetgie_005fen"><code>__builtin_nds32_setgie_en</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Built_002din-Functions.html#NDS32-Built_002din-Functions">NDS32 Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnon_005ftx_005fstore"><code>__builtin_non_tx_store</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005fobject_005fsize"><code>__builtin_object_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005fobject_005fsize-1"><code>__builtin_object_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Offsetof.html#index-_005f_005fbuiltin_005foffsetof"><code>__builtin_offsetof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Offsetof.html#Offsetof">Offsetof</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fparity"><code>__builtin_parity</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fparityl"><code>__builtin_parityl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fparityll"><code>__builtin_parityll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpopcount"><code>__builtin_popcount</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpopcountl"><code>__builtin_popcountl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpopcountll"><code>__builtin_popcountll</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpowi"><code>__builtin_powi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpowi-1"><code>__builtin_powi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpowif"><code>__builtin_powif</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpowif-1"><code>__builtin_powif</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpowil"><code>__builtin_powil</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fpowil-1"><code>__builtin_powil</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fprefetch"><code>__builtin_prefetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-Calls.html#index-_005f_005fbuiltin_005freturn"><code>__builtin_return</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Constructing-Calls.html#Constructing-Calls">Constructing Calls</a></td></tr>
<tr><td></td><td valign="top"><a href="Return-Address.html#index-_005f_005fbuiltin_005freturn_005faddress"><code>__builtin_return_address</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Address.html#Return-Address">Return Address</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fbrk"><code>__builtin_rx_brk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fclrpsw"><code>__builtin_rx_clrpsw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fint"><code>__builtin_rx_int</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmachi"><code>__builtin_rx_machi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmaclo"><code>__builtin_rx_maclo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmulhi"><code>__builtin_rx_mulhi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmullo"><code>__builtin_rx_mullo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmvfachi"><code>__builtin_rx_mvfachi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmvfacmi"><code>__builtin_rx_mvfacmi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmvfc"><code>__builtin_rx_mvfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmvtachi"><code>__builtin_rx_mvtachi</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmvtaclo"><code>__builtin_rx_mvtaclo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmvtc"><code>__builtin_rx_mvtc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fmvtipl"><code>__builtin_rx_mvtipl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fracw"><code>__builtin_rx_racw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005frevw"><code>__builtin_rx_revw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005frmpa"><code>__builtin_rx_rmpa</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fround"><code>__builtin_rx_round</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fsat"><code>__builtin_rx_sat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fsetpsw"><code>__builtin_rx_setpsw</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Built_002din-Functions.html#index-_005f_005fbuiltin_005frx_005fwait"><code>__builtin_rx_wait</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Built_002din-Functions.html#RX-Built_002din-Functions">RX Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsaddll_005foverflow"><code>__builtin_saddll_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsaddl_005foverflow"><code>__builtin_saddl_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsadd_005foverflow"><code>__builtin_sadd_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Built_002din-Functions.html#index-_005f_005fbuiltin_005fset_005fthread_005fpointer"><code>__builtin_set_thread_pointer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Built_002din-Functions.html#SH-Built_002din-Functions">SH Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Built_002din-Functions.html#index-_005f_005fbuiltin_005fsh_005fget_005ffpscr"><code>__builtin_sh_get_fpscr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Built_002din-Functions.html#SH-Built_002din-Functions">SH Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Built_002din-Functions.html#index-_005f_005fbuiltin_005fsh_005fset_005ffpscr"><code>__builtin_sh_set_fpscr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Built_002din-Functions.html#SH-Built_002din-Functions">SH Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsmulll_005foverflow"><code>__builtin_smulll_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsmull_005foverflow"><code>__builtin_smull_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsmul_005foverflow"><code>__builtin_smul_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fssubll_005foverflow"><code>__builtin_ssubll_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fssubl_005foverflow"><code>__builtin_ssubl_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fssub_005foverflow"><code>__builtin_ssub_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsub_005foverflow"><code>__builtin_sub_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftabort"><code>__builtin_tabort</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftbegin"><code>__builtin_tbegin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftbeginc"><code>__builtin_tbeginc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftbegin_005fnofloat"><code>__builtin_tbegin_nofloat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftbegin_005fretry"><code>__builtin_tbegin_retry</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftbegin_005fretry_005fnofloat"><code>__builtin_tbegin_retry_nofloat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftend"><code>__builtin_tend</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Built_002din-Functions.html#index-_005f_005fbuiltin_005fthread_005fpointer"><code>__builtin_thread_pointer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Built_002din-Functions.html#SH-Built_002din-Functions">SH Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005ftrap"><code>__builtin_trap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftx_005fassist"><code>__builtin_tx_assist</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-_005f_005fbuiltin_005ftx_005fnesting_005fdepth"><code>__builtin_tx_nesting_depth</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005ftypes_005fcompatible_005fp"><code>__builtin_types_compatible_p</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fuaddll_005foverflow"><code>__builtin_uaddll_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fuaddl_005foverflow"><code>__builtin_uaddl_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fuadd_005foverflow"><code>__builtin_uadd_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fumulll_005foverflow"><code>__builtin_umulll_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fumull_005foverflow"><code>__builtin_umull_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fumul_005foverflow"><code>__builtin_umul_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005funreachable"><code>__builtin_unreachable</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fusubll_005foverflow"><code>__builtin_usubll_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fusubl_005foverflow"><code>__builtin_usubl_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fusub_005foverflow"><code>__builtin_usub_overflow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-Calls.html#index-_005f_005fbuiltin_005fva_005farg_005fpack"><code>__builtin_va_arg_pack</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Constructing-Calls.html#Constructing-Calls">Constructing Calls</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-Calls.html#index-_005f_005fbuiltin_005fva_005farg_005fpack_005flen"><code>__builtin_va_arg_pack_len</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Constructing-Calls.html#Constructing-Calls">Constructing Calls</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fchk_005fptr_005fbounds"><code>__builtin___bnd_chk_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fchk_005fptr_005fbounds-1"><code>__builtin___bnd_chk_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fchk_005fptr_005flbounds"><code>__builtin___bnd_chk_ptr_lbounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fchk_005fptr_005flbounds-1"><code>__builtin___bnd_chk_ptr_lbounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fchk_005fptr_005fubounds"><code>__builtin___bnd_chk_ptr_ubounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fchk_005fptr_005fubounds-1"><code>__builtin___bnd_chk_ptr_ubounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fcopy_005fptr_005fbounds"><code>__builtin___bnd_copy_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fcopy_005fptr_005fbounds-1"><code>__builtin___bnd_copy_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fget_005fptr_005flbound"><code>__builtin___bnd_get_ptr_lbound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fget_005fptr_005flbound-1"><code>__builtin___bnd_get_ptr_lbound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fget_005fptr_005fubound"><code>__builtin___bnd_get_ptr_ubound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fget_005fptr_005fubound-1"><code>__builtin___bnd_get_ptr_ubound</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005finit_005fptr_005fbounds"><code>__builtin___bnd_init_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005finit_005fptr_005fbounds-1"><code>__builtin___bnd_init_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fnarrow_005fptr_005fbounds"><code>__builtin___bnd_narrow_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fnarrow_005fptr_005fbounds-1"><code>__builtin___bnd_narrow_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fnull_005fptr_005fbounds"><code>__builtin___bnd_null_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fnull_005fptr_005fbounds-1"><code>__builtin___bnd_null_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fset_005fptr_005fbounds"><code>__builtin___bnd_set_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fset_005fptr_005fbounds-1"><code>__builtin___bnd_set_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fstore_005fptr_005fbounds"><code>__builtin___bnd_store_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-_005f_005fbuiltin_005f_005f_005fbnd_005fstore_005fptr_005fbounds-1"><code>__builtin___bnd_store_ptr_bounds</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005f_005f_005fclear_005fcache"><code>__builtin___clear_cache</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005ffprintf_005fchk"><code>__builtin___fprintf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fmemcpy_005fchk"><code>__builtin___memcpy_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fmemmove_005fchk"><code>__builtin___memmove_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fmempcpy_005fchk"><code>__builtin___mempcpy_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fmemset_005fchk"><code>__builtin___memset_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fprintf_005fchk"><code>__builtin___printf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fsnprintf_005fchk"><code>__builtin___snprintf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fsprintf_005fchk"><code>__builtin___sprintf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fstpcpy_005fchk"><code>__builtin___stpcpy_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fstrcat_005fchk"><code>__builtin___strcat_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fstrcpy_005fchk"><code>__builtin___strcpy_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fstrncat_005fchk"><code>__builtin___strncat_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fstrncpy_005fchk"><code>__builtin___strncpy_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fvfprintf_005fchk"><code>__builtin___vfprintf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fvprintf_005fchk"><code>__builtin___vprintf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fvsnprintf_005fchk"><code>__builtin___vsnprintf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Object-Size-Checking.html#index-_005f_005fbuiltin_005f_005f_005fvsprintf_005fchk"><code>__builtin___vsprintf_chk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Object-Size-Checking.html#Object-Size-Checking">Object Size Checking</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex.html#index-_005f_005fcomplex_005f_005f-keyword"><code>__complex__</code> keyword</a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex.html#Complex">Complex</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#index-_005f_005fdeclspec_0028dllexport_0029"><code>__declspec(dllexport)</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#Microsoft-Windows-Function-Attributes">Microsoft Windows Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#index-_005f_005fdeclspec_0028dllimport_0029"><code>__declspec(dllimport)</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#Microsoft-Windows-Function-Attributes">Microsoft Windows Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fea-SPU-Named-Address-Spaces"><code>__ea</code> SPU Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Alternate-Keywords.html#index-_005f_005fextension_005f_005f"><code>__extension__</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Alternate-Keywords.html#Alternate-Keywords">Alternate Keywords</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005ffar-M32C-Named-Address-Spaces"><code>__far</code> M32C Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005ffar-RL78-Named-Address-Spaces"><code>__far</code> RL78 Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fflash-AVR-Named-Address-Spaces"><code>__flash</code> AVR Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fflash1-AVR-Named-Address-Spaces"><code>__flash1</code> AVR Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fflash2-AVR-Named-Address-Spaces"><code>__flash2</code> AVR Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fflash3-AVR-Named-Address-Spaces"><code>__flash3</code> AVR Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fflash4-AVR-Named-Address-Spaces"><code>__flash4</code> AVR Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fflash5-AVR-Named-Address-Spaces"><code>__flash5</code> AVR Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-_005f_005ffloat128-data-type"><code>__float128</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-_005f_005ffloat80-data-type"><code>__float80</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Half_002dPrecision.html#index-_005f_005ffp16-data-type"><code>__fp16</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Half_002dPrecision.html#Half_002dPrecision">Half-Precision</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Names.html#index-_005f_005fFUNCTION_005f_005f-identifier"><code>__FUNCTION__</code> identifier</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Names.html#Function-Names">Function Names</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Names.html#index-_005f_005ffunc_005f_005f-identifier"><code>__func__</code> identifier</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Names.html#Function-Names">Function Names</a></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-_005f_005fibm128-data-type"><code>__ibm128</code> data type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex.html#index-_005f_005fimag_005f_005f-keyword"><code>__imag__</code> keyword</a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex.html#Complex">Complex</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fint128.html#index-_005f_005fint128-data-types"><code>__int128</code> data types</a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fint128.html#g_t_005f_005fint128">__int128</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fmemx-AVR-Named-Address-Spaces"><code>__memx</code> AVR Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Names.html#index-_005f_005fPRETTY_005fFUNCTION_005f_005f-identifier"><code>__PRETTY_FUNCTION__</code> identifier</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Names.html#Function-Names">Function Names</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex.html#index-_005f_005freal_005f_005f-keyword"><code>__real__</code> keyword</a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex.html#Complex">Complex</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fseg_005ffs-x86-named-address-space"><code>__seg_fs</code> x86 named address space</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-_005f_005fseg_005fgs-x86-named-address-space"><code>__seg_gs</code> x86 named address space</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-_005f_005fSTDC_005fHOSTED_005f_005f"><code>__STDC_HOSTED__</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fadd_005fand_005ffetch"><code>__sync_add_and_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fand_005fand_005ffetch"><code>__sync_and_and_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fbool_005fcompare_005fand_005fswap"><code>__sync_bool_compare_and_swap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005ffetch_005fand_005fadd"><code>__sync_fetch_and_add</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005ffetch_005fand_005fand"><code>__sync_fetch_and_and</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005ffetch_005fand_005fnand"><code>__sync_fetch_and_nand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005ffetch_005fand_005for"><code>__sync_fetch_and_or</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005ffetch_005fand_005fsub"><code>__sync_fetch_and_sub</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005ffetch_005fand_005fxor"><code>__sync_fetch_and_xor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005flock_005frelease"><code>__sync_lock_release</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005flock_005ftest_005fand_005fset"><code>__sync_lock_test_and_set</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fnand_005fand_005ffetch"><code>__sync_nand_and_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005for_005fand_005ffetch"><code>__sync_or_and_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fsub_005fand_005ffetch"><code>__sync_sub_and_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fsynchronize"><code>__sync_synchronize</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fval_005fcompare_005fand_005fswap"><code>__sync_val_compare_and_swap</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="_005f_005fsync-Builtins.html#index-_005f_005fsync_005fxor_005fand_005ffetch"><code>__sync_xor_and_fetch</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="_005f_005fsync-Builtins.html#g_t_005f_005fsync-Builtins">__sync Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Thread_002dLocal.html#index-_005f_005fthread"><code>__thread</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Thread_002dLocal.html#Thread_002dLocal">Thread-Local</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-A">A</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Options.html#index-AArch64-Options">AArch64 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Options.html#AArch64-Options">AArch64 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Compatibility.html#index-ABI">ABI</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compatibility.html#Compatibility">Compatibility</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Attributes.html#index-abi_005ftag-function-attribute"><code>abi_tag</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Attributes.html#C_002b_002b-Attributes">C++ Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Attributes.html#index-abi_005ftag-type-attribute"><code>abi_tag</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Attributes.html#C_002b_002b-Attributes">C++ Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Attributes.html#index-abi_005ftag-variable-attribute"><code>abi_tag</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Attributes.html#C_002b_002b-Attributes">C++ Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-abort"><code>abort</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-abs"><code>abs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Volatiles.html#index-accessing-volatiles">accessing volatiles</a>:</td><td>&nbsp;</td><td valign="top"><a href="Volatiles.html#Volatiles">Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Volatiles.html#index-accessing-volatiles-1">accessing volatiles</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Volatiles.html#C_002b_002b-Volatiles">C++ Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-acos"><code>acos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-acosf"><code>acosf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-acosh"><code>acosh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-acoshf"><code>acoshf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-acoshl"><code>acoshl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-acosl"><code>acosl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Ada">Ada</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Ada-1">Ada</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-additional-floating-types">additional floating types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-address-constraints">address constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Labels-as-Values.html#index-address-of-a-label">address of a label</a>:</td><td>&nbsp;</td><td valign="top"><a href="Labels-as-Values.html#Labels-as-Values">Labels as Values</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Variable-Attributes.html#index-address-variable-attribute_002c-AVR"><code>address</code> variable attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Variable-Attributes.html#AVR-Variable-Attributes">AVR Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-address_005foperand"><code>address_operand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-alias-function-attribute"><code>alias</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-aligned-function-attribute"><code>aligned</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-aligned-type-attribute"><code>aligned</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-aligned-variable-attribute"><code>aligned</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Alignment.html#index-alignment">alignment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Alignment.html#Alignment">Alignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-alloca"><code>alloca</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-alloca-vs-variable_002dlength-arrays"><code>alloca</code> vs variable-length arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-alloc_005falign-function-attribute"><code>alloc_align</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-alloc_005fsize-function-attribute"><code>alloc_size</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-Allow-nesting-in-an-interrupt-handler-on-the-Blackfin-processor">Allow nesting in an interrupt handler on the Blackfin processor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nios-II-Options.html#index-Altera-Nios-II-options">Altera Nios II options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nios-II-Options.html#Nios-II-Options">Nios II Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Alternate-Keywords.html#index-alternate-keywords">alternate keywords</a>:</td><td>&nbsp;</td><td valign="top"><a href="Alternate-Keywords.html#Alternate-Keywords">Alternate Keywords</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Type-Attributes.html#index-altivec-type-attribute_002c-PowerPC"><code>altivec</code> type attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Type-Attributes.html#PowerPC-Type-Attributes">PowerPC Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Variable-Attributes.html#index-altivec-variable-attribute_002c-PowerPC"><code>altivec</code> variable attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Variable-Attributes.html#PowerPC-Variable-Attributes">PowerPC Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-always_005finline-function-attribute"><code>always_inline</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-AMD1">AMD1</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ANSI-C">ANSI C</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ANSI-C-standard">ANSI C standard</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ANSI-C89">ANSI C89</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-ANSI-support">ANSI support</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ANSI-X3_002e159_002d1989">ANSI X3.159-1989</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-apostrophes">apostrophes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Compatibility.html#index-application-binary-interface">application binary interface</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compatibility.html#Compatibility">Compatibility</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Options.html#index-ARC-options">ARC options</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Options.html#ARC-Options">ARC Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-arch_003d-function-attribute_002c-AArch64"><code>arch=</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Options.html#index-ARM-options">ARM options</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Options.html#ARM-Options">ARM Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Backwards-Compatibility.html#index-ARM-_005bAnnotated-C_002b_002b-Reference-Manual_005d">ARM [Annotated C++ Reference Manual]</a>:</td><td>&nbsp;</td><td valign="top"><a href="Backwards-Compatibility.html#Backwards-Compatibility">Backwards Compatibility</a></td></tr>
<tr><td></td><td valign="top"><a href="Zero-Length.html#index-arrays-of-length-zero">arrays of length zero</a>:</td><td>&nbsp;</td><td valign="top"><a href="Zero-Length.html#Zero-Length">Zero Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-arrays-of-variable-length">arrays of variable length</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Subscripting.html#index-arrays_002c-non_002dlvalue">arrays, non-lvalue</a>:</td><td>&nbsp;</td><td valign="top"><a href="Subscripting.html#Subscripting">Subscripting</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-artificial-function-attribute"><code>artificial</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-asin"><code>asin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-asinf"><code>asinf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-asinh"><code>asinh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-asinhf"><code>asinhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-asinhl"><code>asinhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-asinl"><code>asinl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-assembler-template"><code>asm</code> assembler template</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-clobbers"><code>asm</code> clobbers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Constraints.html#index-asm-constraints"><code>asm</code> constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Constraints.html#Constraints">Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-expressions"><code>asm</code> expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-flag-output-operands"><code>asm</code> flag output operands</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-goto-labels"><code>asm</code> goto labels</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-input-operands"><code>asm</code> input operands</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-Assembly-Language-with-C.html#index-asm-keyword"><code>asm</code> keyword</a>:</td><td>&nbsp;</td><td valign="top"><a href="Using-Assembly-Language-with-C.html#Using-Assembly-Language-with-C">Using Assembly Language with C</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-output-operands"><code>asm</code> output operands</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-volatile"><code>asm</code> volatile</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Asm-Labels.html#index-assembler-names-for-identifiers">assembler names for identifiers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Asm-Labels.html#Asm-Labels">Asm Labels</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-assembly-code_002c-invalid">assembly code, invalid</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-Assembly-Language-with-C.html#index-assembly-language-in-C">assembly language in C</a>:</td><td>&nbsp;</td><td valign="top"><a href="Using-Assembly-Language-with-C.html#Using-Assembly-Language-with-C">Using Assembly Language with C</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Asm.html#index-assembly-language-in-C_002c-basic">assembly language in C, basic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Asm.html#Basic-Asm">Basic Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-assembly-language-in-C_002c-extended">assembly language in C, extended</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-assume_005faligned-function-attribute"><code>assume_aligned</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atan"><code>atan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atan2"><code>atan2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atan2f"><code>atan2f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atan2l"><code>atan2l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atanf"><code>atanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atanh"><code>atanh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atanhf"><code>atanhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atanhl"><code>atanhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-atanl"><code>atanl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Type-Attributes.html#index-attribute-of-types">attribute of types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Type-Attributes.html#Type-Attributes">Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Attributes.html#index-attribute-of-variables">attribute of variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Attribute-Syntax.html#index-attribute-syntax">attribute syntax</a>:</td><td>&nbsp;</td><td valign="top"><a href="Attribute-Syntax.html#Attribute-Syntax">Attribute Syntax</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-autoincrement_002fdecrement-addressing">autoincrement/decrement addressing</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-automatic-inline-for-C_002b_002b-member-fns">automatic <code>inline</code> for C++ member fns</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Options.html#index-AVR-Options">AVR Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Options.html#AVR-Options">AVR Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-B">B</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Backwards-Compatibility.html#index-Backwards-Compatibility">Backwards Compatibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Backwards-Compatibility.html#Backwards-Compatibility">Backwards Compatibility</a></td></tr>
<tr><td></td><td valign="top"><a href="M32C-Function-Attributes.html#index-bank_005fswitch-function-attribute_002c-M32C"><code>bank_switch</code> function attribute, M32C</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32C-Function-Attributes.html#M32C-Function-Attributes">M32C Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Name-lookup.html#index-base-class-members">base class members</a>:</td><td>&nbsp;</td><td valign="top"><a href="Name-lookup.html#Name-lookup">Name lookup</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Type-Attributes.html#index-based-type-attribute_002c-MeP"><code>based</code> type attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Type-Attributes.html#MeP-Type-Attributes">MeP Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Variable-Attributes.html#index-based-variable-attribute_002c-MeP"><code>based</code> variable attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Variable-Attributes.html#MeP-Variable-Attributes">MeP Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Basic-Asm.html#index-basic-asm">basic <code>asm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-Asm.html#Basic-Asm">Basic Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-bcmp"><code>bcmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Xstormy16-Variable-Attributes.html#index-below100-variable-attribute_002c-Xstormy16"><code>below100</code> variable attribute, Xstormy16</a>:</td><td>&nbsp;</td><td valign="top"><a href="Xstormy16-Variable-Attributes.html#Xstormy16-Variable-Attributes">Xstormy16 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Compatibility.html#index-binary-compatibility">binary compatibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compatibility.html#Compatibility">Compatibility</a></td></tr>
<tr><td></td><td valign="top"><a href="Binary-constants.html#index-Binary-constants-using-the-0b-prefix">Binary constants using the &lsquo;<samp>0b</samp>&rsquo; prefix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Binary-constants.html#Binary-constants">Binary constants</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Options.html#index-Blackfin-Options">Blackfin Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Options.html#Blackfin-Options">Blackfin Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-bnd_005finstrument-function-attribute"><code>bnd_instrument</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-bnd_005flegacy-function-attribute"><code>bnd_legacy</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-bnd_005fvariable_005fsize-type-attribute"><code>bnd_variable_size</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Bound-member-functions.html#index-bound-pointer-to-member-function">bound pointer to member function</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bound-member-functions.html#Bound-member-functions">Bound member functions</a></td></tr>
<tr><td></td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#index-break-handler-functions">break handler functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#MicroBlaze-Function-Attributes">MicroBlaze Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#index-break_005fhandler-function-attribute_002c-MicroBlaze"><code>break_handler</code> function attribute, MicroBlaze</a>:</td><td>&nbsp;</td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#MicroBlaze-Function-Attributes">MicroBlaze Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="RL78-Function-Attributes.html#index-brk_005finterrupt-function-attribute_002c-RL78"><code>brk_interrupt</code> function attribute, RL78</a>:</td><td>&nbsp;</td><td valign="top"><a href="RL78-Function-Attributes.html#RL78-Function-Attributes">RL78 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-bug-criteria">bug criteria</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bugs.html#index-bugs">bugs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bugs.html#Bugs">Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Trouble.html#index-bugs_002c-known">bugs, known</a>:</td><td>&nbsp;</td><td valign="top"><a href="Trouble.html#Trouble">Trouble</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-built_002din-functions">built-in functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-built_002din-functions-1">built-in functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-bzero"><code>bzero</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-C-compilation-options">C compilation options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-C-intermediate-output_002c-nonexistent">C intermediate output, nonexistent</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Extensions.html#index-C-language-extensions">C language extensions</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Extensions.html#C-Extensions">C Extensions</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-C-language_002c-traditional">C language, traditional</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C-standard">C standard</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C-standards">C standards</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-G_002b_002b.html#index-c_002b_002b"><code>c++</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-G_002b_002b.html#Invoking-G_002b_002b">Invoking G++</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-C_002b_002b">C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Comments.html#index-C_002b_002b-comments">C++ comments</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Comments.html#C_002b_002b-Comments">C++ Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-C_002b_002b-interface-and-implementation-headers">C++ interface and implementation headers</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Extensions.html#index-C_002b_002b-language-extensions">C++ language extensions</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Extensions.html#C_002b_002b-Extensions">C++ Extensions</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-C_002b_002b-member-fns_002c-automatically-inline">C++ member fns, automatically <code>inline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Misunderstandings.html#index-C_002b_002b-misunderstandings">C++ misunderstandings</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Misunderstandings.html#C_002b_002b-Misunderstandings">C++ Misunderstandings</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#index-C_002b_002b-options_002c-command_002dline">C++ options, command-line</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-C_002b_002b-pragmas_002c-effect-on-inlining">C++ pragmas, effect on inlining</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-G_002b_002b.html#index-C_002b_002b-source-file-suffixes">C++ source file suffixes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-G_002b_002b.html#Invoking-G_002b_002b">Invoking G++</a></td></tr>
<tr><td></td><td valign="top"><a href="Static-Definitions.html#index-C_002b_002b-static-data_002c-declaring-and-defining">C++ static data, declaring and defining</a>:</td><td>&nbsp;</td><td valign="top"><a href="Static-Definitions.html#Static-Definitions">Static Definitions</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C11">C11</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C1X">C1X</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="C6X-Options.html#index-C6X-Options">C6X Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="C6X-Options.html#C6X-Options">C6X Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C89">C89</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C90">C90</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C94">C94</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C95">C95</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C99">C99</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-C9X">C9X</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cabs"><code>cabs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cabsf"><code>cabsf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cabsl"><code>cabsl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cacos"><code>cacos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cacosf"><code>cacosf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cacosh"><code>cacosh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cacoshf"><code>cacoshf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cacoshl"><code>cacoshl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cacosl"><code>cacosl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-callee_005fpop_005faggregate_005freturn-function-attribute_002c-x86"><code>callee_pop_aggregate_return</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-calling-functions-through-the-function-vector-on-SH2A">calling functions through the function vector on SH2A</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-calloc"><code>calloc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-caret-GCC_005fCOLORS-capability"><code>caret GCC_COLORS <span class="roman">capability</span></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-carg"><code>carg</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cargf"><code>cargf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cargl"><code>cargl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Designated-Inits.html#index-case-labels-in-initializers">case labels in initializers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Designated-Inits.html#Designated-Inits">Designated Inits</a></td></tr>
<tr><td></td><td valign="top"><a href="Case-Ranges.html#index-case-ranges">case ranges</a>:</td><td>&nbsp;</td><td valign="top"><a href="Case-Ranges.html#Case-Ranges">Case Ranges</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-casin"><code>casin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-casinf"><code>casinf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-casinh"><code>casinh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-casinhf"><code>casinhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-casinhl"><code>casinhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-casinl"><code>casinl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Cast-to-Union.html#index-cast-to-a-union">cast to a union</a>:</td><td>&nbsp;</td><td valign="top"><a href="Cast-to-Union.html#Cast-to-Union">Cast to Union</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-catan"><code>catan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-catanf"><code>catanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-catanh"><code>catanh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-catanhf"><code>catanhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-catanhl"><code>catanhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-catanl"><code>catanl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Variable-Attributes.html#index-cb-variable-attribute_002c-MeP"><code>cb</code> variable attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Variable-Attributes.html#MeP-Variable-Attributes">MeP Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cbrt"><code>cbrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cbrtf"><code>cbrtf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cbrtl"><code>cbrtl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ccos"><code>ccos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ccosf"><code>ccosf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ccosh"><code>ccosh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ccoshf"><code>ccoshf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ccoshl"><code>ccoshl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ccosl"><code>ccosl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-cdecl-function-attribute_002c-x86_002d32"><code>cdecl</code> function attribute, x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ceil"><code>ceil</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ceilf"><code>ceilf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ceill"><code>ceill</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cexp"><code>cexp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cexpf"><code>cexpf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cexpl"><code>cexpl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-character-set_002c-execution">character set, execution</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-character-set_002c-input">character set, input</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-character-set_002c-input-normalization">character set, input normalization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-character-set_002c-wide-execution">character set, wide execution</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cimag"><code>cimag</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cimagf"><code>cimagf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cimagl"><code>cimagl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-cleanup-variable-attribute"><code>cleanup</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-clog"><code>clog</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-clog10"><code>clog10</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-clog10f"><code>clog10f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-clog10l"><code>clog10l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-clogf"><code>clogf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-clogl"><code>clogl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-cmodel_003d-function-attribute_002c-AArch64"><code>cmodel=</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-COBOL">COBOL</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Code-Gen-Options.html#index-code-generation-conventions">code generation conventions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Mixed-Declarations.html#index-code_002c-mixed-with-declarations">code, mixed with declarations</a>:</td><td>&nbsp;</td><td valign="top"><a href="Mixed-Declarations.html#Mixed-Declarations">Mixed Declarations</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-cold-function-attribute"><code>cold</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Label-Attributes.html#index-cold-label-attribute"><code>cold</code> label attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Label-Attributes.html#Label-Attributes">Label Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-command-options">command options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Comments.html#index-comments_002c-C_002b_002b-style">comments, C++ style</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Comments.html#C_002b_002b-Comments">C++ Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-common-variable-attribute"><code>common</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-comparison-of-signed-and-unsigned-values_002c-warning">comparison of signed and unsigned values, warning</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Developer-Options.html#index-compilation-statistics">compilation statistics</a>:</td><td>&nbsp;</td><td valign="top"><a href="Developer-Options.html#Developer-Options">Developer Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Reporting.html#index-compiler-bugs_002c-reporting">compiler bugs, reporting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Reporting.html#Bug-Reporting">Bug Reporting</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-compiler-compared-to-C_002b_002b-preprocessor">compiler compared to C++ preprocessor</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#index-compiler-options_002c-C_002b_002b">compiler options, C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-compiler-options_002c-Objective_002dC-and-Objective_002dC_002b_002b">compiler options, Objective-C and Objective-C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-compiler-version_002c-specifying">compiler version, specifying</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-COMPILER_005fPATH"><code>COMPILER_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex.html#index-complex-conjugation">complex conjugation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex.html#Complex">Complex</a></td></tr>
<tr><td></td><td valign="top"><a href="Complex.html#index-complex-numbers">complex numbers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Complex.html#Complex">Complex</a></td></tr>
<tr><td></td><td valign="top"><a href="Compound-Literals.html#index-compound-literals">compound literals</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compound-Literals.html#Compound-Literals">Compound Literals</a></td></tr>
<tr><td></td><td valign="top"><a href="Labels-as-Values.html#index-computed-gotos">computed gotos</a>:</td><td>&nbsp;</td><td valign="top"><a href="Labels-as-Values.html#Labels-as-Values">Labels as Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Conditionals.html#index-conditional-expressions_002c-extensions">conditional expressions, extensions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Conditionals.html#Conditionals">Conditionals</a></td></tr>
<tr><td></td><td valign="top"><a href="Disappointments.html#index-conflicting-types">conflicting types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Disappointments.html#Disappointments">Disappointments</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-conj"><code>conj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-conjf"><code>conjf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-conjl"><code>conjl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Attributes.html#index-const-applied-to-function"><code>const</code> applied to function</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-const-function-attribute"><code>const</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointers-to-Arrays.html#index-const-qualifier">const qualifier</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointers-to-Arrays.html#Pointers-to-Arrays">Pointers to Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-constants-in-constraints">constants in constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Modifiers.html#index-constraint-modifier-characters">constraint modifier characters</a>:</td><td>&nbsp;</td><td valign="top"><a href="Modifiers.html#Modifiers">Modifiers</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-constraint_002c-matching">constraint, matching</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Constraints.html#index-constraints_002c-asm">constraints, <code>asm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Constraints.html#Constraints">Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Machine-Constraints.html#index-constraints_002c-machine-specific">constraints, machine specific</a>:</td><td>&nbsp;</td><td valign="top"><a href="Machine-Constraints.html#Machine-Constraints">Machine Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-Calls.html#index-constructing-calls">constructing calls</a>:</td><td>&nbsp;</td><td valign="top"><a href="Constructing-Calls.html#Constructing-Calls">Constructing Calls</a></td></tr>
<tr><td></td><td valign="top"><a href="Compound-Literals.html#index-constructor-expressions">constructor expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compound-Literals.html#Compound-Literals">Compound Literals</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-constructor-function-attribute"><code>constructor</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Contributors.html#index-contributors">contributors</a>:</td><td>&nbsp;</td><td valign="top"><a href="Contributors.html#Contributors">Contributors</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-copysign"><code>copysign</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-copysignf"><code>copysignf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-copysignl"><code>copysignl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-core-dump">core dump</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cos"><code>cos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cosf"><code>cosf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cosh"><code>cosh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-coshf"><code>coshf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-coshl"><code>coshl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cosl"><code>cosl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-CPATH"><code>CPATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-CPLUS_005fINCLUDE_005fPATH"><code>CPLUS_INCLUDE_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cpow"><code>cpow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cpowf"><code>cpowf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cpowl"><code>cpowl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cproj"><code>cproj</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cprojf"><code>cprojf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-cprojl"><code>cprojl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-cpu_003d-function-attribute_002c-AArch64"><code>cpu=</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="CR16-Options.html#index-CR16-Options">CR16 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="CR16-Options.html#CR16-Options">CR16 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-creal"><code>creal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-crealf"><code>crealf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-creall"><code>creall</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="CRIS-Options.html#index-CRIS-Options">CRIS Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="CRIS-Options.html#CRIS-Options">CRIS Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-critical-function-attribute_002c-MSP430"><code>critical</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-cross-compiling">cross compiling</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csin"><code>csin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csinf"><code>csinf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csinh"><code>csinh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csinhf"><code>csinhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csinhl"><code>csinhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csinl"><code>csinl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csqrt"><code>csqrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csqrtf"><code>csqrtf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-csqrtl"><code>csqrtl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ctan"><code>ctan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ctanf"><code>ctanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ctanh"><code>ctanh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ctanhf"><code>ctanhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ctanhl"><code>ctanhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ctanl"><code>ctanl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-C_005fINCLUDE_005fPATH"><code>C_INCLUDE_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-D">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Darwin-Options.html#index-Darwin-options">Darwin options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Darwin-Options.html#Darwin-Options">Darwin Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-dcgettext"><code>dcgettext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-dd-integer-suffix"><code>dd</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-DD-integer-suffix"><code>DD</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-deallocating-variable-length-arrays">deallocating variable length arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Developer-Options.html#index-debug-dump-options">debug dump options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Developer-Options.html#Developer-Options">Developer Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Developer-Options.html#index-debugging-GCC">debugging GCC</a>:</td><td>&nbsp;</td><td valign="top"><a href="Developer-Options.html#Developer-Options">Developer Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Debugging-Options.html#index-debugging-information-options">debugging information options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-decimal-floating-types">decimal floating types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-declaration-scope">declaration scope</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Statement-Exprs.html#index-declarations-inside-expressions">declarations inside expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statement-Exprs.html#Statement-Exprs">Statement Exprs</a></td></tr>
<tr><td></td><td valign="top"><a href="Mixed-Declarations.html#index-declarations_002c-mixed-with-code">declarations, mixed with code</a>:</td><td>&nbsp;</td><td valign="top"><a href="Mixed-Declarations.html#Mixed-Declarations">Mixed Declarations</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Attributes.html#index-declaring-attributes-of-functions">declaring attributes of functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Static-Definitions.html#index-declaring-static-data-in-C_002b_002b">declaring static data in C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="Static-Definitions.html#Static-Definitions">Static Definitions</a></td></tr>
<tr><td></td><td valign="top"><a href="Static-Definitions.html#index-defining-static-data-in-C_002b_002b">defining static data in C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="Static-Definitions.html#Static-Definitions">Static Definitions</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-dependencies-for-make-as-output">dependencies for make as output</a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-dependencies-for-make-as-output-1">dependencies for make as output</a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-dependencies_002c-make">dependencies, <code>make</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-DEPENDENCIES_005fOUTPUT"><code>DEPENDENCIES_OUTPUT</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Name-lookup.html#index-dependent-name-lookup">dependent name lookup</a>:</td><td>&nbsp;</td><td valign="top"><a href="Name-lookup.html#Name-lookup">Name lookup</a></td></tr>
<tr><td></td><td valign="top"><a href="Enumerator-Attributes.html#index-deprecated-enumerator-attribute"><code>deprecated</code> enumerator attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Enumerator-Attributes.html#Enumerator-Attributes">Enumerator Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-deprecated-function-attribute"><code>deprecated</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-deprecated-type-attribute"><code>deprecated</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-deprecated-variable-attribute"><code>deprecated</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Designated-Inits.html#index-designated-initializers">designated initializers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Designated-Inits.html#Designated-Inits">Designated Inits</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-designated_005finit-type-attribute"><code>designated_init</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Designated-Inits.html#index-designator-lists">designator lists</a>:</td><td>&nbsp;</td><td valign="top"><a href="Designated-Inits.html#Designated-Inits">Designated Inits</a></td></tr>
<tr><td></td><td valign="top"><a href="Designated-Inits.html#index-designators">designators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Designated-Inits.html#Designated-Inits">Designated Inits</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-destructor-function-attribute"><code>destructor</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Developer-Options.html#index-developer-options">developer options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Developer-Options.html#Developer-Options">Developer Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-df-integer-suffix"><code>df</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-DF-integer-suffix"><code>DF</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-dgettext"><code>dgettext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-diagnostic-messages">diagnostic messages</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-dialect-options">dialect options</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-digits-in-constraint">digits in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Directory-Options.html#index-directory-options">directory options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Directory-Options.html#Directory-Options">Directory Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Epiphany-Function-Attributes.html#index-disinterrupt-function-attribute_002c-Epiphany"><code>disinterrupt</code> function attribute, Epiphany</a>:</td><td>&nbsp;</td><td valign="top"><a href="Epiphany-Function-Attributes.html#Epiphany-Function-Attributes">Epiphany Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Function-Attributes.html#index-disinterrupt-function-attribute_002c-MeP"><code>disinterrupt</code> function attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Function-Attributes.html#MeP-Function-Attributes">MeP Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-dl-integer-suffix"><code>dl</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Decimal-Float.html#index-DL-integer-suffix"><code>DL</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Decimal-Float.html#Decimal-Float">Decimal Float</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#index-dllexport-function-attribute"><code>dllexport</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#Microsoft-Windows-Function-Attributes">Microsoft Windows Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#index-dllexport-variable-attribute"><code>dllexport</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#Microsoft-Windows-Variable-Attributes">Microsoft Windows Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#index-dllimport-function-attribute"><code>dllimport</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Function-Attributes.html#Microsoft-Windows-Function-Attributes">Microsoft Windows Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#index-dllimport-variable-attribute"><code>dllimport</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#Microsoft-Windows-Variable-Attributes">Microsoft Windows Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Dollar-Signs.html#index-dollar-signs-in-identifier-names">dollar signs in identifier names</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dollar-Signs.html#Dollar-Signs">Dollar Signs</a></td></tr>
<tr><td></td><td valign="top"><a href="Long-Long.html#index-double_002dword-arithmetic">double-word arithmetic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Long-Long.html#Long-Long">Long Long</a></td></tr>
<tr><td></td><td valign="top"><a href="Nested-Functions.html#index-downward-funargs">downward funargs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nested-Functions.html#Nested-Functions">Nested Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-drem"><code>drem</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-dremf"><code>dremf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-dreml"><code>dreml</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Developer-Options.html#index-dump-options">dump options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Developer-Options.html#Developer-Options">Developer Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-E-in-constraint">&lsquo;<samp>E</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Modifiers.html#index-earlyclobber-operand">earlyclobber operand</a>:</td><td>&nbsp;</td><td valign="top"><a href="Modifiers.html#Modifiers">Modifiers</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#index-eight_002dbit-data-on-the-H8_002f300_002c-H8_002f300H_002c-and-H8S">eight-bit data on the H8/300, H8/300H, and H8S</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#H8_002f300-Variable-Attributes">H8/300 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#index-eightbit_005fdata-variable-attribute_002c-H8_002f300"><code>eightbit_data</code> variable attribute, H8/300</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#H8_002f300-Variable-Attributes">H8/300 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Options.html#index-EIND"><code>EIND</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Options.html#AVR-Options">AVR Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-either-function-attribute_002c-MSP430"><code>either</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Variable-Attributes.html#index-either-variable-attribute_002c-MSP430"><code>either</code> variable attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Variable-Attributes.html#MSP430-Variable-Attributes">MSP430 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Empty-Structures.html#index-empty-structures">empty structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Empty-Structures.html#Empty-Structures">Empty Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-Enable-Cilk-Plus">Enable Cilk Plus</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Enumerator-Attributes.html#index-Enumerator-Attributes">Enumerator Attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Enumerator-Attributes.html#Enumerator-Attributes">Enumerator Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-environment-variables">environment variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-erf"><code>erf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-erfc"><code>erfc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-erfcf"><code>erfcf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-erfcl"><code>erfcl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-erff"><code>erff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-erfl"><code>erfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-error-function-attribute"><code>error</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-error-GCC_005fCOLORS-capability"><code>error GCC_COLORS <span class="roman">capability</span></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warnings-and-Errors.html#index-error-messages">error messages</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warnings-and-Errors.html#Warnings-and-Errors">Warnings and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="Escaped-Newlines.html#index-escaped-newlines">escaped newlines</a>:</td><td>&nbsp;</td><td valign="top"><a href="Escaped-Newlines.html#Escaped-Newlines">Escaped Newlines</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-exception-function-attribute"><code>exception</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-exception-handler-functions_002c-Blackfin">exception handler functions, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-exception-handler-functions_002c-NDS32">exception handler functions, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-exception_005fhandler-function-attribute"><code>exception_handler</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exit"><code>exit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exp"><code>exp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exp10"><code>exp10</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exp10f"><code>exp10f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exp10l"><code>exp10l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exp2"><code>exp2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exp2f"><code>exp2f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-exp2l"><code>exp2l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-expf"><code>expf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-expl"><code>expl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Explicit-Register-Variables.html#index-explicit-register-variables">explicit register variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Explicit-Register-Variables.html#Explicit-Register-Variables">Explicit Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-expm1"><code>expm1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-expm1f"><code>expm1f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-expm1l"><code>expm1l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Statement-Exprs.html#index-expressions-containing-statements">expressions containing statements</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statement-Exprs.html#Statement-Exprs">Statement Exprs</a></td></tr>
<tr><td></td><td valign="top"><a href="Compound-Literals.html#index-expressions_002c-constructor">expressions, constructor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compound-Literals.html#Compound-Literals">Compound Literals</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-extended-asm">extended <code>asm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-extensible-constraints">extensible constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Conditionals.html#index-extensions_002c-_003f_003a">extensions, <code>?:</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Conditionals.html#Conditionals">Conditionals</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Extensions.html#index-extensions_002c-C-language">extensions, C language</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Extensions.html#C-Extensions">C Extensions</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Extensions.html#index-extensions_002c-C_002b_002b-language">extensions, C++ language</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Extensions.html#C_002b_002b-Extensions">C++ Extensions</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-external-declaration-scope">external declaration scope</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-externally_005fvisible-function-attribute"><code>externally_visible</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-F">F</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-F-in-constraint">&lsquo;<samp>F</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fabs"><code>fabs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fabsf"><code>fabsf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fabsl"><code>fabsl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Function-Attributes.html#index-far-function-attribute_002c-MeP"><code>far</code> function attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Function-Attributes.html#MeP-Function-Attributes">MeP Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-far-function-attribute_002c-MIPS"><code>far</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Type-Attributes.html#index-far-type-attribute_002c-MeP"><code>far</code> type attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Type-Attributes.html#MeP-Type-Attributes">MeP Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Variable-Attributes.html#index-far-variable-attribute_002c-MeP"><code>far</code> variable attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Variable-Attributes.html#MeP-Variable-Attributes">MeP Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-fastcall-function-attribute_002c-x86_002d32"><code>fastcall</code> function attribute, x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="M32C-Function-Attributes.html#index-fast_005finterrupt-function-attribute_002c-M32C"><code>fast_interrupt</code> function attribute, M32C</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32C-Function-Attributes.html#M32C-Function-Attributes">M32C Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#index-fast_005finterrupt-function-attribute_002c-MicroBlaze"><code>fast_interrupt</code> function attribute, MicroBlaze</a>:</td><td>&nbsp;</td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#MicroBlaze-Function-Attributes">MicroBlaze Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Function-Attributes.html#index-fast_005finterrupt-function-attribute_002c-RX"><code>fast_interrupt</code> function attribute, RX</a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Function-Attributes.html#RX-Function-Attributes">RX Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-fatal-signal">fatal signal</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fdim"><code>fdim</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fdimf"><code>fdimf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fdiml"><code>fdiml</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="GNU-Free-Documentation-License.html#index-FDL_002c-GNU-Free-Documentation-License">FDL, GNU Free Documentation License</a>:</td><td>&nbsp;</td><td valign="top"><a href="GNU-Free-Documentation-License.html#GNU-Free-Documentation-License">GNU Free Documentation License</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ffs"><code>ffs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Overall-Options.html#index-file-name-suffix">file name suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Overall-Options.html#Overall-Options">Overall Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-file-names">file names</a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-fix_002dcortex_002da53_002d835769-function-attribute_002c-AArch64"><code>fix-cortex-a53-835769</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-fixed_002dpoint-types">fixed-point types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-flatten-function-attribute"><code>flatten</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Zero-Length.html#index-flexible-array-members">flexible array members</a>:</td><td>&nbsp;</td><td valign="top"><a href="Zero-Length.html#Zero-Length">Zero Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-float-as-function-value-type"><code>float</code> as function value type</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Disappointments.html#index-floating-point-precision">floating point precision</a>:</td><td>&nbsp;</td><td valign="top"><a href="Disappointments.html#Disappointments">Disappointments</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimize-Options.html#index-floating_002dpoint-precision">floating-point precision</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-floor"><code>floor</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-floorf"><code>floorf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-floorl"><code>floorl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fma"><code>fma</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmaf"><code>fmaf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmal"><code>fmal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmax"><code>fmax</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmaxf"><code>fmaxf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmaxl"><code>fmaxl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmin"><code>fmin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fminf"><code>fminf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fminl"><code>fminl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmod"><code>fmod</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmodf"><code>fmodf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fmodl"><code>fmodl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-force_005falign_005farg_005fpointer-function-attribute_002c-x86"><code>force_align_arg_pointer</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-format-function-attribute"><code>format</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-format_005farg-function-attribute"><code>format_arg</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Fortran">Fortran</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Epiphany-Function-Attributes.html#index-forwarder_005fsection-function-attribute_002c-Epiphany"><code>forwarder_section</code> function attribute, Epiphany</a>:</td><td>&nbsp;</td><td valign="top"><a href="Epiphany-Function-Attributes.html#Epiphany-Function-Attributes">Epiphany Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Constructing-Calls.html#index-forwarding-calls">forwarding calls</a>:</td><td>&nbsp;</td><td valign="top"><a href="Constructing-Calls.html#Constructing-Calls">Constructing Calls</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fprintf"><code>fprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fprintf_005funlocked"><code>fprintf_unlocked</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fputs"><code>fputs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fputs_005funlocked"><code>fputs_unlocked</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="FR30-Options.html#index-FR30-Options">FR30 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="FR30-Options.html#FR30-Options">FR30 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-freestanding-environment">freestanding environment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-freestanding-implementation">freestanding implementation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-frexp"><code>frexp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-frexpf"><code>frexpf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-frexpl"><code>frexpl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="FRV-Options.html#index-FRV-Options">FRV Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="FRV-Options.html#FRV-Options">FRV Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-fscanf"><code>fscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-fscanf_002c-and-constant-strings"><code>fscanf</code>, and constant strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="FT32-Options.html#index-FT32-Options">FT32 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="FT32-Options.html#FT32-Options">FT32 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="M32R_002fD-Function-Attributes.html#index-function-addressability-on-the-M32R_002fD">function addressability on the M32R/D</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32R_002fD-Function-Attributes.html#M32R_002fD-Function-Attributes">M32R/D Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Attributes.html#index-function-attributes">function attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Arith.html#index-function-pointers_002c-arithmetic">function pointers, arithmetic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Arith.html#Pointer-Arith">Pointer Arith</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Prototypes.html#index-function-prototype-declarations">function prototype declarations</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Prototypes.html#Function-Prototypes">Function Prototypes</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Multiversioning.html#index-function-versions">function versions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Multiversioning.html#Function-Multiversioning">Function Multiversioning</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Arith.html#index-function_002c-size-of-pointer-to">function, size of pointer to</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Arith.html#Pointer-Arith">Pointer Arith</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-in-arbitrary-sections">functions in arbitrary sections</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-that-are-dynamically-resolved">functions that are dynamically resolved</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-functions-that-are-passed-arguments-in-registers-on-x86_002d32">functions that are passed arguments in registers on x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-that-behave-like-malloc">functions that behave like malloc</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-that-have-no-side-effects">functions that have no side effects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-that-have-no-side-effects-1">functions that have no side effects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-that-never-return">functions that never return</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-functions-that-pop-the-argument-stack-on-x86_002d32">functions that pop the argument stack on x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-functions-that-pop-the-argument-stack-on-x86_002d32-1">functions that pop the argument stack on x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-functions-that-pop-the-argument-stack-on-x86_002d32-2">functions that pop the argument stack on x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-functions-that-pop-the-argument-stack-on-x86_002d32-3">functions that pop the argument stack on x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-that-return-more-than-once">functions that return more than once</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-with-non_002dnull-pointer-arguments">functions with non-null pointer arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-functions-with-printf_002c-scanf_002c-strftime-or-strfmon-style-arguments">functions with <code>printf</code>, <code>scanf</code>, <code>strftime</code> or <code>strfmon</code> style arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Function-Attributes.html#index-function_005fvector-function-attribute_002c-H8_002f300"><code>function_vector</code> function attribute, H8/300</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Function-Attributes.html#H8_002f300-Function-Attributes">H8/300 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="M32C-Function-Attributes.html#index-function_005fvector-function-attribute_002c-M16C_002fM32C"><code>function_vector</code> function attribute, M16C/M32C</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32C-Function-Attributes.html#M32C-Function-Attributes">M32C Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-function_005fvector-function-attribute_002c-SH"><code>function_vector</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-G">G</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-G-in-constraint">&lsquo;<samp>G</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-g-in-constraint">&lsquo;<samp>g</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-G_002b_002b.html#index-g_002b_002b"><code>g++</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-G_002b_002b.html#Invoking-G_002b_002b">Invoking G++</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-G_002b_002b">G++</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-gamma"><code>gamma</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-gammaf"><code>gammaf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-gammaf_005fr"><code>gammaf_r</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-gammal"><code>gammal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-gammal_005fr"><code>gammal_r</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-gamma_005fr"><code>gamma_r</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-GCC">GCC</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-GCC-command-options">GCC command options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-GCC_005fCOLORS-environment-variable"><code>GCC_COLORS <span class="roman">environment variable</span></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-GCC_005fCOMPARE_005fDEBUG"><code>GCC_COMPARE_DEBUG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-GCC_005fEXEC_005fPREFIX"><code>GCC_EXEC_PREFIX</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Type-Attributes.html#index-gcc_005fstruct-type-attribute_002c-PowerPC"><code>gcc_struct</code> type attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Type-Attributes.html#PowerPC-Type-Attributes">PowerPC Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Type-Attributes.html#index-gcc_005fstruct-type-attribute_002c-x86"><code>gcc_struct</code> type attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Type-Attributes.html#x86-Type-Attributes">x86 Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Variable-Attributes.html#index-gcc_005fstruct-variable-attribute_002c-PowerPC"><code>gcc_struct</code> variable attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Variable-Attributes.html#PowerPC-Variable-Attributes">PowerPC Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Variable-Attributes.html#index-gcc_005fstruct-variable-attribute_002c-x86"><code>gcc_struct</code> variable attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Variable-Attributes.html#x86-Variable-Attributes">x86 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-gcov"><code>gcov</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-general_002dregs_002donly-function-attribute_002c-AArch64"><code>general-regs-only</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-gettext"><code>gettext</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Code-Gen-Options.html#index-global-offset-table">global offset table</a>:</td><td>&nbsp;</td><td valign="top"><a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-global-register-after-longjmp">global register after <code>longjmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-global-register-variables">global register variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-GNAT">GNAT</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-GNU-C-Compiler">GNU C Compiler</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-GNU-Compiler-Collection">GNU Compiler Collection</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-gnu_005finline-function-attribute"><code>gnu_inline</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Go">Go</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Labels-as-Values.html#index-goto-with-computed-label">goto with computed label</a>:</td><td>&nbsp;</td><td valign="top"><a href="Labels-as-Values.html#Labels-as-Values">Labels as Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-gprof"><code>gprof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-grouping-options">grouping options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-H">H</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-H-in-constraint">&lsquo;<samp>H</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Half_002dPrecision.html#index-half_002dprecision-floating-point">half-precision floating point</a>:</td><td>&nbsp;</td><td valign="top"><a href="Half_002dPrecision.html#Half_002dPrecision">Half-Precision</a></td></tr>
<tr><td></td><td valign="top"><a href="Submodel-Options.html#index-hardware-models-and-configurations_002c-specifying">hardware models and configurations, specifying</a>:</td><td>&nbsp;</td><td valign="top"><a href="Submodel-Options.html#Submodel-Options">Submodel Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Hex-Floats.html#index-hex-floats">hex floats</a>:</td><td>&nbsp;</td><td valign="top"><a href="Hex-Floats.html#Hex-Floats">Hex Floats</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-highlight_002c-color">highlight, color</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-hk-fixed_002dsuffix"><code>hk</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-HK-fixed_002dsuffix"><code>HK</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-hosted-environment">hosted environment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-hosted-environment-1">hosted environment</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-hosted-environment-2">hosted environment</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-hosted-implementation">hosted implementation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-hot-function-attribute"><code>hot</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Label-Attributes.html#index-hot-label-attribute"><code>hot</code> label attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Label-Attributes.html#Label-Attributes">Label Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-Function-Attributes.html#index-hotpatch-function-attribute_002c-S_002f390"><code>hotpatch</code> function attribute, S/390</a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-Function-Attributes.html#S_002f390-Function-Attributes">S/390 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="HPPA-Options.html#index-HPPA-Options">HPPA Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="HPPA-Options.html#HPPA-Options">HPPA Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-hr-fixed_002dsuffix"><code>hr</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-HR-fixed_002dsuffix"><code>HR</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-hypot"><code>hypot</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-hypotf"><code>hypotf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-hypotl"><code>hypotl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-i-in-constraint">&lsquo;<samp>i</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-I-in-constraint">&lsquo;<samp>I</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="IA_002d64-Options.html#index-IA_002d64-Options">IA-64 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="IA_002d64-Options.html#IA_002d64-Options">IA-64 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#index-IBM-RS_002f6000-and-PowerPC-Options">IBM RS/6000 and PowerPC Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Dollar-Signs.html#index-identifier-names_002c-dollar-signs-in">identifier names, dollar signs in</a>:</td><td>&nbsp;</td><td valign="top"><a href="Dollar-Signs.html#Dollar-Signs">Dollar Signs</a></td></tr>
<tr><td></td><td valign="top"><a href="Asm-Labels.html#index-identifiers_002c-names-in-assembler-code">identifiers, names in assembler code</a>:</td><td>&nbsp;</td><td valign="top"><a href="Asm-Labels.html#Asm-Labels">Asm Labels</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-ifunc-function-attribute"><code>ifunc</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ilogb"><code>ilogb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ilogbf"><code>ilogbf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ilogbl"><code>ilogbl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-imaxabs"><code>imaxabs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Implementation.html#index-implementation_002ddefined-behavior_002c-C-language">implementation-defined behavior, C language</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Implementation.html#C-Implementation">C Implementation</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Implementation.html#index-implementation_002ddefined-behavior_002c-C_002b_002b-language">implementation-defined behavior, C++ language</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Implementation.html#C_002b_002b-Implementation">C++ Implementation</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-implied-_0023pragma-implementation">implied <code>#pragma implementation</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-incompatibilities-of-GCC">incompatibilities of GCC</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-increment-operators">increment operators</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-index"><code>index</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-indirect-calls_002c-ARC">indirect calls, ARC</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Function-Attributes.html#ARC-Function-Attributes">ARC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-indirect-calls_002c-ARM">indirect calls, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-indirect-calls_002c-Blackfin">indirect calls, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Epiphany-Function-Attributes.html#index-indirect-calls_002c-Epiphany">indirect calls, Epiphany</a>:</td><td>&nbsp;</td><td valign="top"><a href="Epiphany-Function-Attributes.html#Epiphany-Function-Attributes">Epiphany Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-indirect-calls_002c-MIPS">indirect calls, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-indirect-calls_002c-PowerPC">indirect calls, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-indirect-functions">indirect functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Compound-Literals.html#index-initializations-in-expressions">initializations in expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compound-Literals.html#Compound-Literals">Compound Literals</a></td></tr>
<tr><td></td><td valign="top"><a href="Designated-Inits.html#index-initializers-with-labeled-elements">initializers with labeled elements</a>:</td><td>&nbsp;</td><td valign="top"><a href="Designated-Inits.html#Designated-Inits">Designated Inits</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializers.html#index-initializers_002c-non_002dconstant">initializers, non-constant</a>:</td><td>&nbsp;</td><td valign="top"><a href="Initializers.html#Initializers">Initializers</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Attributes.html#index-init_005fpriority-variable-attribute"><code>init_priority</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Attributes.html#C_002b_002b-Attributes">C++ Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-Assembly-Language-with-C.html#index-inline-assembly-language">inline assembly language</a>:</td><td>&nbsp;</td><td valign="top"><a href="Using-Assembly-Language-with-C.html#Using-Assembly-Language-with-C">Using Assembly Language with C</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-inline-automatic-for-C_002b_002b-member-fns"><code>inline</code> automatic for C++ member fns</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-inline-functions">inline functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-inline-functions_002c-omission-of">inline functions, omission of</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-inlining-and-C_002b_002b-pragmas">inlining and C++ pragmas</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Trouble.html#index-installation-trouble">installation trouble</a>:</td><td>&nbsp;</td><td valign="top"><a href="Trouble.html#Trouble">Trouble</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-instrumentation-options">instrumentation options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-integrating-function-code">integrating function code</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-interface-and-implementation-headers_002c-C_002b_002b">interface and implementation headers, C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-intermediate-C-version_002c-nonexistent">intermediate C version, nonexistent</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-interrupt-function-attribute_002c-ARC"><code>interrupt</code> function attribute, ARC</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Function-Attributes.html#ARC-Function-Attributes">ARC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-interrupt-function-attribute_002c-ARM"><code>interrupt</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Function-Attributes.html#index-interrupt-function-attribute_002c-AVR"><code>interrupt</code> function attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Function-Attributes.html#AVR-Function-Attributes">AVR Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="CR16-Function-Attributes.html#index-interrupt-function-attribute_002c-CR16"><code>interrupt</code> function attribute, CR16</a>:</td><td>&nbsp;</td><td valign="top"><a href="CR16-Function-Attributes.html#CR16-Function-Attributes">CR16 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Epiphany-Function-Attributes.html#index-interrupt-function-attribute_002c-Epiphany"><code>interrupt</code> function attribute, Epiphany</a>:</td><td>&nbsp;</td><td valign="top"><a href="Epiphany-Function-Attributes.html#Epiphany-Function-Attributes">Epiphany Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="M32C-Function-Attributes.html#index-interrupt-function-attribute_002c-M32C"><code>interrupt</code> function attribute, M32C</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32C-Function-Attributes.html#M32C-Function-Attributes">M32C Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="M32R_002fD-Function-Attributes.html#index-interrupt-function-attribute_002c-M32R_002fD"><code>interrupt</code> function attribute, M32R/D</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32R_002fD-Function-Attributes.html#M32R_002fD-Function-Attributes">M32R/D Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="m68k-Function-Attributes.html#index-interrupt-function-attribute_002c-m68k"><code>interrupt</code> function attribute, m68k</a>:</td><td>&nbsp;</td><td valign="top"><a href="m68k-Function-Attributes.html#m68k-Function-Attributes">m68k Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Function-Attributes.html#index-interrupt-function-attribute_002c-MeP"><code>interrupt</code> function attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Function-Attributes.html#MeP-Function-Attributes">MeP Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-interrupt-function-attribute_002c-MIPS"><code>interrupt</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-interrupt-function-attribute_002c-MSP430"><code>interrupt</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-interrupt-function-attribute_002c-NDS32"><code>interrupt</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="RL78-Function-Attributes.html#index-interrupt-function-attribute_002c-RL78"><code>interrupt</code> function attribute, RL78</a>:</td><td>&nbsp;</td><td valign="top"><a href="RL78-Function-Attributes.html#RL78-Function-Attributes">RL78 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Function-Attributes.html#index-interrupt-function-attribute_002c-RX"><code>interrupt</code> function attribute, RX</a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Function-Attributes.html#RX-Function-Attributes">RX Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="V850-Function-Attributes.html#index-interrupt-function-attribute_002c-V850"><code>interrupt</code> function attribute, V850</a>:</td><td>&nbsp;</td><td valign="top"><a href="V850-Function-Attributes.html#V850-Function-Attributes">V850 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Visium-Function-Attributes.html#index-interrupt-function-attribute_002c-Visium"><code>interrupt</code> function attribute, Visium</a>:</td><td>&nbsp;</td><td valign="top"><a href="Visium-Function-Attributes.html#Visium-Function-Attributes">Visium Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Xstormy16-Function-Attributes.html#index-interrupt-function-attribute_002c-Xstormy16"><code>interrupt</code> function attribute, Xstormy16</a>:</td><td>&nbsp;</td><td valign="top"><a href="Xstormy16-Function-Attributes.html#Xstormy16-Function-Attributes">Xstormy16 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-interrupt_005fhandler-function-attribute_002c-Blackfin"><code>interrupt_handler</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Function-Attributes.html#index-interrupt_005fhandler-function-attribute_002c-H8_002f300"><code>interrupt_handler</code> function attribute, H8/300</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Function-Attributes.html#H8_002f300-Function-Attributes">H8/300 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="m68k-Function-Attributes.html#index-interrupt_005fhandler-function-attribute_002c-m68k"><code>interrupt_handler</code> function attribute, m68k</a>:</td><td>&nbsp;</td><td valign="top"><a href="m68k-Function-Attributes.html#m68k-Function-Attributes">m68k Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#index-interrupt_005fhandler-function-attribute_002c-MicroBlaze"><code>interrupt_handler</code> function attribute, MicroBlaze</a>:</td><td>&nbsp;</td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#MicroBlaze-Function-Attributes">MicroBlaze Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-interrupt_005fhandler-function-attribute_002c-SH"><code>interrupt_handler</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="V850-Function-Attributes.html#index-interrupt_005fhandler-function-attribute_002c-V850"><code>interrupt_handler</code> function attribute, V850</a>:</td><td>&nbsp;</td><td valign="top"><a href="V850-Function-Attributes.html#V850-Function-Attributes">V850 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="m68k-Function-Attributes.html#index-interrupt_005fthread-function-attribute_002c-fido"><code>interrupt_thread</code> function attribute, fido</a>:</td><td>&nbsp;</td><td valign="top"><a href="m68k-Function-Attributes.html#m68k-Function-Attributes">m68k Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="index.html#index-introduction">introduction</a>:</td><td>&nbsp;</td><td valign="top"><a href="index.html#Top">Top</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-invalid-assembly-code">invalid assembly code</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-invalid-input">invalid input</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-G_002b_002b.html#index-invoking-g_002b_002b">invoking <code>g++</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-G_002b_002b.html#Invoking-G_002b_002b">Invoking G++</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Variable-Attributes.html#index-io-variable-attribute_002c-AVR"><code>io</code> variable attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Variable-Attributes.html#AVR-Variable-Attributes">AVR Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Variable-Attributes.html#index-io-variable-attribute_002c-MeP"><code>io</code> variable attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Variable-Attributes.html#MeP-Variable-Attributes">MeP Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Variable-Attributes.html#index-io_005flow-variable-attribute_002c-AVR"><code>io_low</code> variable attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Variable-Attributes.html#AVR-Variable-Attributes">AVR Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isalnum"><code>isalnum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isalpha"><code>isalpha</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isascii"><code>isascii</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isblank"><code>isblank</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iscntrl"><code>iscntrl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isdigit"><code>isdigit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isgraph"><code>isgraph</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-islower"><code>islower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-9899">ISO 9899</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C">ISO C</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C-standard">ISO C standard</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C11">ISO C11</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C1X">ISO C1X</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C90">ISO C90</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C94">ISO C94</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C95">ISO C95</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C99">ISO C99</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C9X">ISO C9X</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-ISO-support">ISO support</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-ISO_002fIEC-9899">ISO/IEC 9899</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isprint"><code>isprint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ispunct"><code>ispunct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-isr-function-attribute_002c-ARM"><code>isr</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isspace"><code>isspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isupper"><code>isupper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswalnum"><code>iswalnum</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswalpha"><code>iswalpha</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswblank"><code>iswblank</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswcntrl"><code>iswcntrl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswdigit"><code>iswdigit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswgraph"><code>iswgraph</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswlower"><code>iswlower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswprint"><code>iswprint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswpunct"><code>iswpunct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswspace"><code>iswspace</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswupper"><code>iswupper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-iswxdigit"><code>iswxdigit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-isxdigit"><code>isxdigit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-J">J</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-j0"><code>j0</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-j0f"><code>j0f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-j0l"><code>j0l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-j1"><code>j1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-j1f"><code>j1f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-j1l"><code>j1l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Java">Java</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Attributes.html#index-java_005finterface-type-attribute"><code>java_interface</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Attributes.html#C_002b_002b-Attributes">C++ Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-jn"><code>jn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-jnf"><code>jnf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-jnl"><code>jnl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-K">K</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-k-fixed_002dsuffix"><code>k</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-K-fixed_002dsuffix"><code>K</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-keep_005finterrupts_005fmasked-function-attribute_002c-MIPS"><code>keep_interrupts_masked</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nvidia-PTX-Function-Attributes.html#index-kernel-attribute_002c-Nvidia-PTX"><code>kernel</code> attribute, Nvidia PTX</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nvidia-PTX-Function-Attributes.html#Nvidia-PTX-Function-Attributes">Nvidia PTX Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Alternate-Keywords.html#index-keywords_002c-alternate">keywords, alternate</a>:</td><td>&nbsp;</td><td valign="top"><a href="Alternate-Keywords.html#Alternate-Keywords">Alternate Keywords</a></td></tr>
<tr><td></td><td valign="top"><a href="Trouble.html#index-known-causes-of-trouble">known causes of trouble</a>:</td><td>&nbsp;</td><td valign="top"><a href="Trouble.html#Trouble">Trouble</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-kspisusp-function-attribute_002c-Blackfin"><code>kspisusp</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-L">L</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Variable-Attributes.html#index-l1_005fdata-variable-attribute_002c-Blackfin"><code>l1_data</code> variable attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Variable-Attributes.html#Blackfin-Variable-Attributes">Blackfin Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Variable-Attributes.html#index-l1_005fdata_005fA-variable-attribute_002c-Blackfin"><code>l1_data_A</code> variable attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Variable-Attributes.html#Blackfin-Variable-Attributes">Blackfin Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Variable-Attributes.html#index-l1_005fdata_005fB-variable-attribute_002c-Blackfin"><code>l1_data_B</code> variable attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Variable-Attributes.html#Blackfin-Variable-Attributes">Blackfin Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-l1_005ftext-function-attribute_002c-Blackfin"><code>l1_text</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-l2-function-attribute_002c-Blackfin"><code>l2</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Variable-Attributes.html#index-l2-variable-attribute_002c-Blackfin"><code>l2</code> variable attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Variable-Attributes.html#Blackfin-Variable-Attributes">Blackfin Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Label-Attributes.html#index-Label-Attributes">Label Attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Label-Attributes.html#Label-Attributes">Label Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Designated-Inits.html#index-labeled-elements-in-initializers">labeled elements in initializers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Designated-Inits.html#Designated-Inits">Designated Inits</a></td></tr>
<tr><td></td><td valign="top"><a href="Labels-as-Values.html#index-labels-as-values">labels as values</a>:</td><td>&nbsp;</td><td valign="top"><a href="Labels-as-Values.html#Labels-as-Values">Labels as Values</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-labs"><code>labs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-LANG"><code>LANG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-LANG-1"><code>LANG</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-language-dialect-options">language dialect options</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-LC_005fALL"><code>LC_ALL</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-LC_005fCTYPE"><code>LC_CTYPE</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-LC_005fMESSAGES"><code>LC_MESSAGES</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ldexp"><code>ldexp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ldexpf"><code>ldexpf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ldexpl"><code>ldexpl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-leaf-function-attribute"><code>leaf</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Zero-Length.html#index-length_002dzero-arrays">length-zero arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Zero-Length.html#Zero-Length">Zero Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lgamma"><code>lgamma</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lgammaf"><code>lgammaf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lgammaf_005fr"><code>lgammaf_r</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lgammal"><code>lgammal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lgammal_005fr"><code>lgammal_r</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lgamma_005fr"><code>lgamma_r</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-Libraries">Libraries</a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-LIBRARY_005fPATH"><code>LIBRARY_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-link-options">link options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-linker-script">linker script</a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-lk-fixed_002dsuffix"><code>lk</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-LK-fixed_002dsuffix"><code>LK</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Long-Long.html#index-LL-integer-suffix"><code>LL</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Long-Long.html#Long-Long">Long Long</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-llabs"><code>llabs</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-llk-fixed_002dsuffix"><code>llk</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-LLK-fixed_002dsuffix"><code>LLK</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-llr-fixed_002dsuffix"><code>llr</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-LLR-fixed_002dsuffix"><code>LLR</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-llrint"><code>llrint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-llrintf"><code>llrintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-llrintl"><code>llrintl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-llround"><code>llround</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-llroundf"><code>llroundf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-llroundl"><code>llroundl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="LM32-Options.html#index-LM32-options">LM32 options</a>:</td><td>&nbsp;</td><td valign="top"><a href="LM32-Options.html#LM32-Options">LM32 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-load-address-instruction">load address instruction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Local-Labels.html#index-local-labels">local labels</a>:</td><td>&nbsp;</td><td valign="top"><a href="Local-Labels.html#Local-Labels">Local Labels</a></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-local-variables-in-macros">local variables in macros</a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="Local-Register-Variables.html#index-local-variables_002c-specifying-registers">local variables, specifying registers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Local-Register-Variables.html#Local-Register-Variables">Local Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-locale">locale</a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-locale-definition">locale definition</a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-locus-GCC_005fCOLORS-capability"><code>locus GCC_COLORS <span class="roman">capability</span></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log"><code>log</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log10"><code>log10</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log10f"><code>log10f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log10l"><code>log10l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log1p"><code>log1p</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log1pf"><code>log1pf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log1pl"><code>log1pl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log2"><code>log2</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log2f"><code>log2f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-log2l"><code>log2l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-logb"><code>logb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-logbf"><code>logbf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-logbl"><code>logbl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-logf"><code>logf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-logl"><code>logl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Long-Long.html#index-long-long-data-types"><code>long long</code> data types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Long-Long.html#Long-Long">Long Long</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-longcall-function-attribute_002c-Blackfin"><code>longcall</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-longcall-function-attribute_002c-PowerPC"><code>longcall</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-longjmp"><code>longjmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-longjmp-incompatibilities"><code>longjmp</code> incompatibilities</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-longjmp-warnings"><code>longjmp</code> warnings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-long_005fcall-function-attribute_002c-ARC"><code>long_call</code> function attribute, ARC</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Function-Attributes.html#ARC-Function-Attributes">ARC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-long_005fcall-function-attribute_002c-ARM"><code>long_call</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Epiphany-Function-Attributes.html#index-long_005fcall-function-attribute_002c-Epiphany"><code>long_call</code> function attribute, Epiphany</a>:</td><td>&nbsp;</td><td valign="top"><a href="Epiphany-Function-Attributes.html#Epiphany-Function-Attributes">Epiphany Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-long_005fcall-function-attribute_002c-MIPS"><code>long_call</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-lower-function-attribute_002c-MSP430"><code>lower</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Variable-Attributes.html#index-lower-variable-attribute_002c-MSP430"><code>lower</code> variable attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Variable-Attributes.html#MSP430-Variable-Attributes">MSP430 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-lr-fixed_002dsuffix"><code>lr</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-LR-fixed_002dsuffix"><code>LR</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lrint"><code>lrint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lrintf"><code>lrintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lrintl"><code>lrintl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lround"><code>lround</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lroundf"><code>lroundf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-lroundl"><code>lroundl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-m-in-constraint">&lsquo;<samp>m</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="M32C-Options.html#index-M32C-options">M32C options</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32C-Options.html#M32C-Options">M32C Options</a></td></tr>
<tr><td></td><td valign="top"><a href="M32R_002fD-Options.html#index-M32R_002fD-options">M32R/D options</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></td></tr>
<tr><td></td><td valign="top"><a href="M680x0-Options.html#index-M680x0-options">M680x0 options</a>:</td><td>&nbsp;</td><td valign="top"><a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Machine-Constraints.html#index-machine-specific-constraints">machine specific constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Machine-Constraints.html#Machine-Constraints">Machine Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Submodel-Options.html#index-machine_002ddependent-options">machine-dependent options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Submodel-Options.html#Submodel-Options">Submodel Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Variadic-Macros.html#index-macro-with-variable-arguments">macro with variable arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variadic-Macros.html#Variadic-Macros">Variadic Macros</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-macros_002c-inline-alternative">macros, inline alternative</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="Local-Labels.html#index-macros_002c-local-labels">macros, local labels</a>:</td><td>&nbsp;</td><td valign="top"><a href="Local-Labels.html#Local-Labels">Local Labels</a></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-macros_002c-local-variables-in">macros, local variables in</a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="Statement-Exprs.html#index-macros_002c-statements-in-expressions">macros, statements in expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statement-Exprs.html#Statement-Exprs">Statement Exprs</a></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-macros_002c-types-of-arguments">macros, types of arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-make"><code>make</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-malloc"><code>malloc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-malloc-function-attribute"><code>malloc</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-matching-constraint">matching constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-may_005falias-type-attribute"><code>may_alias</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MCore-Options.html#index-MCore-options">MCore options</a>:</td><td>&nbsp;</td><td valign="top"><a href="MCore-Options.html#MCore-Options">MCore Options</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-medium_005fcall-function-attribute_002c-ARC"><code>medium_call</code> function attribute, ARC</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Function-Attributes.html#ARC-Function-Attributes">ARC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-member-fns_002c-automatically-inline">member fns, automatically <code>inline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-memchr"><code>memchr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-memcmp"><code>memcmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-memcpy"><code>memcpy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-memory-references-in-constraints">memory references in constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-mempcpy"><code>mempcpy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-memset"><code>memset</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Options.html#index-MeP-options">MeP options</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Options.html#MeP-Options">MeP Options</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Mercury">Mercury</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-message-formatting">message formatting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-messages_002c-warning">messages, warning</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warnings-and-Errors.html#index-messages_002c-warning-and-error">messages, warning and error</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warnings-and-Errors.html#Warnings-and-Errors">Warnings and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="MicroBlaze-Options.html#index-MicroBlaze-Options">MicroBlaze Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="MicroBlaze-Options.html#MicroBlaze-Options">MicroBlaze Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-micromips-function-attribute"><code>micromips</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Conditionals.html#index-middle_002doperands_002c-omitted">middle-operands, omitted</a>:</td><td>&nbsp;</td><td valign="top"><a href="Conditionals.html#Conditionals">Conditionals</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Options.html#index-MIPS-options">MIPS options</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-mips16-function-attribute_002c-MIPS"><code>mips16</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Misunderstandings.html#index-misunderstandings-in-C_002b_002b">misunderstandings in C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Misunderstandings.html#C_002b_002b-Misunderstandings">C++ Misunderstandings</a></td></tr>
<tr><td></td><td valign="top"><a href="Mixed-Declarations.html#index-mixed-declarations-and-code">mixed declarations and code</a>:</td><td>&nbsp;</td><td valign="top"><a href="Mixed-Declarations.html#Mixed-Declarations">Mixed Declarations</a></td></tr>
<tr><td></td><td valign="top"><a href="Using-Assembly-Language-with-C.html#index-mixing-assembly-language-and-C">mixing assembly language and C</a>:</td><td>&nbsp;</td><td valign="top"><a href="Using-Assembly-Language-with-C.html#Using-Assembly-Language-with-C">Using Assembly Language with C</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-mktemp_002c-and-constant-strings"><code>mktemp</code>, and constant strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="MMIX-Options.html#index-MMIX-Options">MMIX Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="MMIX-Options.html#MMIX-Options">MMIX Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MN10300-Options.html#index-MN10300-options">MN10300 options</a>:</td><td>&nbsp;</td><td valign="top"><a href="MN10300-Options.html#MN10300-Options">MN10300 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-mode-variable-attribute"><code>mode</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="M32R_002fD-Function-Attributes.html#index-model-function-attribute_002c-M32R_002fD"><code>model</code> function attribute, M32R/D</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32R_002fD-Function-Attributes.html#M32R_002fD-Function-Attributes">M32R/D Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="IA_002d64-Variable-Attributes.html#index-model-variable-attribute_002c-IA_002d64"><code>model</code> variable attribute, IA-64</a>:</td><td>&nbsp;</td><td valign="top"><a href="IA_002d64-Variable-Attributes.html#IA_002d64-Variable-Attributes">IA-64 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="M32R_002fD-Variable-Attributes.html#index-model_002dname-variable-attribute_002c-M32R_002fD"><code>model-name</code> variable attribute, M32R/D</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32R_002fD-Variable-Attributes.html#M32R_002fD-Variable-Attributes">M32R/D Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-modf"><code>modf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-modff"><code>modff</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-modfl"><code>modfl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Modifiers.html#index-modifiers-in-constraints">modifiers in constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Modifiers.html#Modifiers">Modifiers</a></td></tr>
<tr><td></td><td valign="top"><a href="Moxie-Options.html#index-Moxie-Options">Moxie Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Moxie-Options.html#Moxie-Options">Moxie Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Options.html#index-MSP430-Options">MSP430 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Options.html#MSP430-Options">MSP430 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-ms_005fabi-function-attribute_002c-x86"><code>ms_abi</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-ms_005fhook_005fprologue-function-attribute_002c-x86"><code>ms_hook_prologue</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Type-Attributes.html#index-ms_005fstruct-type-attribute_002c-PowerPC"><code>ms_struct</code> type attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Type-Attributes.html#PowerPC-Type-Attributes">PowerPC Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Type-Attributes.html#index-ms_005fstruct-type-attribute_002c-x86"><code>ms_struct</code> type attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Type-Attributes.html#x86-Type-Attributes">x86 Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Variable-Attributes.html#index-ms_005fstruct-variable-attribute_002c-PowerPC"><code>ms_struct</code> variable attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Variable-Attributes.html#PowerPC-Variable-Attributes">PowerPC Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Variable-Attributes.html#index-ms_005fstruct-variable-attribute_002c-x86"><code>ms_struct</code> variable attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Variable-Attributes.html#x86-Variable-Attributes">x86 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Multi_002dAlternative.html#index-multiple-alternative-constraints">multiple alternative constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Multi_002dAlternative.html#Multi_002dAlternative">Multi-Alternative</a></td></tr>
<tr><td></td><td valign="top"><a href="Long-Long.html#index-multiprecision-arithmetic">multiprecision arithmetic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Long-Long.html#Long-Long">Long Long</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-n-in-constraint">&lsquo;<samp>n</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-naked-function-attribute_002c-ARM"><code>naked</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Function-Attributes.html#index-naked-function-attribute_002c-AVR"><code>naked</code> function attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Function-Attributes.html#AVR-Function-Attributes">AVR Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MCORE-Function-Attributes.html#index-naked-function-attribute_002c-MCORE"><code>naked</code> function attribute, MCORE</a>:</td><td>&nbsp;</td><td valign="top"><a href="MCORE-Function-Attributes.html#MCORE-Function-Attributes">MCORE Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-naked-function-attribute_002c-MSP430"><code>naked</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-naked-function-attribute_002c-NDS32"><code>naked</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="RL78-Function-Attributes.html#index-naked-function-attribute_002c-RL78"><code>naked</code> function attribute, RL78</a>:</td><td>&nbsp;</td><td valign="top"><a href="RL78-Function-Attributes.html#RL78-Function-Attributes">RL78 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Function-Attributes.html#index-naked-function-attribute_002c-RX"><code>naked</code> function attribute, RX</a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Function-Attributes.html#RX-Function-Attributes">RX Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SPU-Function-Attributes.html#index-naked-function-attribute_002c-SPU"><code>naked</code> function attribute, SPU</a>:</td><td>&nbsp;</td><td valign="top"><a href="SPU-Function-Attributes.html#SPU-Function-Attributes">SPU Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-Named-Address-Spaces">Named Address Spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="Asm-Labels.html#index-names-used-in-assembler-code">names used in assembler code</a>:</td><td>&nbsp;</td><td valign="top"><a href="Asm-Labels.html#Asm-Labels">Asm Labels</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-naming-convention_002c-implementation-headers">naming convention, implementation headers</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Options.html#index-NDS32-Options">NDS32 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Options.html#NDS32-Options">NDS32 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Function-Attributes.html#index-near-function-attribute_002c-MeP"><code>near</code> function attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Function-Attributes.html#MeP-Function-Attributes">MeP Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-near-function-attribute_002c-MIPS"><code>near</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Type-Attributes.html#index-near-type-attribute_002c-MeP"><code>near</code> type attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Type-Attributes.html#MeP-Type-Attributes">MeP Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Variable-Attributes.html#index-near-variable-attribute_002c-MeP"><code>near</code> variable attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Variable-Attributes.html#MeP-Variable-Attributes">MeP Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nearbyint"><code>nearbyint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nearbyintf"><code>nearbyintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nearbyintl"><code>nearbyintl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-nested-function-attribute_002c-NDS32"><code>nested</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nested-Functions.html#index-nested-functions">nested functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nested-Functions.html#Nested-Functions">Nested Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-nested_005fready-function-attribute_002c-NDS32"><code>nested_ready</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-nesting-function-attribute_002c-Blackfin"><code>nesting</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Escaped-Newlines.html#index-newlines-_0028escaped_0029">newlines (escaped)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Escaped-Newlines.html#Escaped-Newlines">Escaped Newlines</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nextafter"><code>nextafter</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nextafterf"><code>nextafterf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nextafterl"><code>nextafterl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nexttoward"><code>nexttoward</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nexttowardf"><code>nexttowardf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-nexttowardl"><code>nexttowardl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-NFC">NFC</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-NFKC">NFKC</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Nios-II-Options.html#index-Nios-II-options">Nios II options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nios-II-Options.html#Nios-II-Options">Nios II Options</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-nmi-function-attribute_002c-NDS32"><code>nmi</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-NMI-handler-functions-on-the-Blackfin-processor">NMI handler functions on the Blackfin processor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-nmi_005fhandler-function-attribute_002c-Blackfin"><code>nmi_handler</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-noclone-function-attribute"><code>noclone</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-nocommon-variable-attribute"><code>nocommon</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-nocompression-function-attribute_002c-MIPS"><code>nocompression</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Variable-Attributes.html#index-noinit-variable-attribute_002c-MSP430"><code>noinit</code> variable attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Variable-Attributes.html#MSP430-Variable-Attributes">MSP430 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-noinline-function-attribute"><code>noinline</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-nomicromips-function-attribute"><code>nomicromips</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-nomips16-function-attribute_002c-MIPS"><code>nomips16</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Initializers.html#index-non_002dconstant-initializers">non-constant initializers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Initializers.html#Initializers">Initializers</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-non_002dstatic-inline-function">non-static inline function</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-nonnull-function-attribute"><code>nonnull</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-noplt-function-attribute"><code>noplt</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-noreturn-function-attribute"><code>noreturn</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-nosave_005flow_005fregs-function-attribute_002c-SH"><code>nosave_low_regs</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-note-GCC_005fCOLORS-capability"><code>note GCC_COLORS <span class="roman">capability</span></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-nothrow-function-attribute"><code>nothrow</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Type-Attributes.html#index-notshared-type-attribute_002c-ARM"><code>notshared</code> type attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Type-Attributes.html#ARM-Type-Attributes">ARM Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-not_005fnested-function-attribute_002c-NDS32"><code>not_nested</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005ficf-function-attribute"><code>no_icf</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005finstrument_005ffunction-function-attribute"><code>no_instrument_function</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005freorder-function-attribute"><code>no_reorder</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005fsanitize_005faddress-function-attribute"><code>no_sanitize_address</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005fsanitize_005fthread-function-attribute"><code>no_sanitize_thread</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005fsanitize_005fundefined-function-attribute"><code>no_sanitize_undefined</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005fsplit_005fstack-function-attribute"><code>no_split_stack</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005fstack_005flimit-function-attribute"><code>no_stack_limit</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nvidia-PTX-Options.html#index-Nvidia-PTX-options">Nvidia PTX options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nvidia-PTX-Options.html#Nvidia-PTX-Options">Nvidia PTX Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Nvidia-PTX-Options.html#index-nvptx-options">nvptx options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nvidia-PTX-Options.html#Nvidia-PTX-Options">Nvidia PTX Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-O">O</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-o-in-constraint">&lsquo;<samp>o</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-OBJC_005fINCLUDE_005fPATH"><code>OBJC_INCLUDE_PATH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Objective_002dC">Objective-C</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-Objective_002dC-1">Objective-C</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-Objective_002dC-and-Objective_002dC_002b_002b-options_002c-command_002dline">Objective-C and Objective-C++ options, command-line</a>:</td><td>&nbsp;</td><td valign="top"><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Objective_002dC_002b_002b">Objective-C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-Objective_002dC_002b_002b-1">Objective-C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-offsettable-address">offsettable address</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Prototypes.html#index-old_002dstyle-function-definitions">old-style function definitions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Prototypes.html#Function-Prototypes">Function Prototypes</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-omit_002dleaf_002dframe_002dpointer-function-attribute_002c-AArch64"><code>omit-leaf-frame-pointer</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Conditionals.html#index-omitted-middle_002doperands">omitted middle-operands</a>:</td><td>&nbsp;</td><td valign="top"><a href="Conditionals.html#Conditionals">Conditionals</a></td></tr>
<tr><td></td><td valign="top"><a href="Inline.html#index-open-coding">open coding</a>:</td><td>&nbsp;</td><td valign="top"><a href="Inline.html#Inline">Inline</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-OpenACC-accelerator-programming">OpenACC accelerator programming</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-OpenACC-accelerator-programming-1">OpenACC accelerator programming</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-OpenMP-parallel">OpenMP parallel</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-OpenMP-SIMD">OpenMP SIMD</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Constraints.html#index-operand-constraints_002c-asm">operand constraints, <code>asm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Constraints.html#Constraints">Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-optimize-function-attribute"><code>optimize</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimize-Options.html#index-optimize-options">optimize options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-options-to-control-diagnostics-formatting">options to control diagnostics formatting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-options-to-control-warnings">options to control warnings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#index-options_002c-C_002b_002b">options, C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Code-Gen-Options.html#index-options_002c-code-generation">options, code generation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Debugging-Options.html#index-options_002c-debugging">options, debugging</a>:</td><td>&nbsp;</td><td valign="top"><a href="Debugging-Options.html#Debugging-Options">Debugging Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-options_002c-dialect">options, dialect</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Directory-Options.html#index-options_002c-directory-search">options, directory search</a>:</td><td>&nbsp;</td><td valign="top"><a href="Directory-Options.html#Directory-Options">Directory Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-options_002c-GCC-command">options, GCC command</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-options_002c-grouping">options, grouping</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-options_002c-linking">options, linking</a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#index-options_002c-Objective_002dC-and-Objective_002dC_002b_002b">options, Objective-C and Objective-C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Optimize-Options.html#index-options_002c-optimization">options, optimization</a>:</td><td>&nbsp;</td><td valign="top"><a href="Optimize-Options.html#Optimize-Options">Optimize Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-options_002c-order">options, order</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-options_002c-preprocessor">options, preprocessor</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-options_002c-profiling">options, profiling</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-options_002c-program-instrumentation">options, program instrumentation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-options_002c-run_002dtime-error-checking">options, run-time error checking</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Non_002dbugs.html#index-order-of-evaluation_002c-side-effects">order of evaluation, side effects</a>:</td><td>&nbsp;</td><td valign="top"><a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-order-of-options">order of options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Function-Attributes.html#index-OS_005fmain-function-attribute_002c-AVR"><code>OS_main</code> function attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Function-Attributes.html#AVR-Function-Attributes">AVR Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Function-Attributes.html#index-OS_005ftask-function-attribute_002c-AVR"><code>OS_task</code> function attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Function-Attributes.html#AVR-Function-Attributes">AVR Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-other-register-constraints">other register constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Overall-Options.html#index-output-file-option">output file option</a>:</td><td>&nbsp;</td><td valign="top"><a href="Overall-Options.html#Overall-Options">Overall Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#index-overloaded-virtual-function_002c-warning">overloaded virtual function, warning</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-p-in-constraint">&lsquo;<samp>p</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-packed-type-attribute"><code>packed</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-packed-variable-attribute"><code>packed</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-parameter-forward-declaration">parameter forward declaration</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-partial_005fsave-function-attribute_002c-NDS32"><code>partial_save</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-Pascal">Pascal</a>:</td><td>&nbsp;</td><td valign="top"><a href="G_002b_002b-and-GCC.html#G_002b_002b-and-GCC">G++ and GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-pcs-function-attribute_002c-ARM"><code>pcs</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PDP_002d11-Options.html#index-PDP_002d11-Options">PDP-11 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="PDP_002d11-Options.html#PDP_002d11-Options">PDP-11 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Variable-Attributes.html#index-persistent-variable-attribute_002c-MSP430"><code>persistent</code> variable attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Variable-Attributes.html#MSP430-Variable-Attributes">MSP430 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Code-Gen-Options.html#index-PIC">PIC</a>:</td><td>&nbsp;</td><td valign="top"><a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></td></tr>
<tr><td></td><td valign="top"><a href="picoChip-Options.html#index-picoChip-options">picoChip options</a>:</td><td>&nbsp;</td><td valign="top"><a href="picoChip-Options.html#picoChip-Options">picoChip Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Bound-member-functions.html#index-pmf">pmf</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bound-member-functions.html#Bound-member-functions">Bound member functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-pointer-arguments">pointer arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-Pointer-Bounds-Checker-attributes">Pointer Bounds Checker attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-Pointer-Bounds-Checker-attributes-1">Pointer Bounds Checker attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#index-Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Bounds-Checker-builtins.html#Pointer-Bounds-Checker-builtins">Pointer Bounds Checker builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-Pointer-Bounds-Checker-options">Pointer Bounds Checker options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Bound-member-functions.html#index-pointer-to-member-function">pointer to member function</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bound-member-functions.html#Bound-member-functions">Bound member functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointers-to-Arrays.html#index-pointers-to-arrays">pointers to arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointers-to-Arrays.html#Pointers-to-Arrays">Pointers to Arrays</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporaries.html#index-portions-of-temporary-objects_002c-pointers-to">portions of temporary objects, pointers to</a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporaries.html#Temporaries">Temporaries</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-pow"><code>pow</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-pow10"><code>pow10</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-pow10f"><code>pow10f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-pow10l"><code>pow10l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Options.html#index-PowerPC-options">PowerPC options</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Options.html#PowerPC-Options">PowerPC Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-powf"><code>powf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-powl"><code>powl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Loop_002dSpecific-Pragmas.html#index-pragma-GCC-ivdep">pragma GCC ivdep</a>:</td><td>&nbsp;</td><td valign="top"><a href="Loop_002dSpecific-Pragmas.html#Loop_002dSpecific-Pragmas">Loop-Specific Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#index-pragma-GCC-optimize">pragma GCC optimize</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#Function-Specific-Option-Pragmas">Function Specific Option Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#index-pragma-GCC-pop_005foptions">pragma GCC pop_options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#Function-Specific-Option-Pragmas">Function Specific Option Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#index-pragma-GCC-push_005foptions">pragma GCC push_options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#Function-Specific-Option-Pragmas">Function Specific Option Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#index-pragma-GCC-reset_005foptions">pragma GCC reset_options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#Function-Specific-Option-Pragmas">Function Specific Option Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#index-pragma-GCC-target">pragma GCC target</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Specific-Option-Pragmas.html#Function-Specific-Option-Pragmas">Function Specific Option Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="M32C-Pragmas.html#index-pragma_002c-address">pragma, address</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32C-Pragmas.html#M32C-Pragmas">M32C Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Solaris-Pragmas.html#index-pragma_002c-align">pragma, align</a>:</td><td>&nbsp;</td><td valign="top"><a href="Solaris-Pragmas.html#Solaris-Pragmas">Solaris Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Pragmas.html#index-pragma_002c-call">pragma, call</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Pragmas.html#MeP-Pragmas">MeP Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Pragmas.html#index-pragma_002c-coprocessor-available">pragma, coprocessor available</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Pragmas.html#MeP-Pragmas">MeP Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Pragmas.html#index-pragma_002c-coprocessor-call_005fsaved">pragma, coprocessor call_saved</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Pragmas.html#MeP-Pragmas">MeP Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Pragmas.html#index-pragma_002c-coprocessor-subclass">pragma, coprocessor subclass</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Pragmas.html#MeP-Pragmas">MeP Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Pragmas.html#index-pragma_002c-custom-io_005fvolatile">pragma, custom io_volatile</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Pragmas.html#MeP-Pragmas">MeP Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Pragmas.html#index-pragma_002c-diagnostic">pragma, diagnostic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Pragmas.html#Diagnostic-Pragmas">Diagnostic Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Pragmas.html#index-pragma_002c-diagnostic-1">pragma, diagnostic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Pragmas.html#Diagnostic-Pragmas">Diagnostic Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Pragmas.html#index-pragma_002c-disinterrupt">pragma, disinterrupt</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Pragmas.html#MeP-Pragmas">MeP Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Solaris-Pragmas.html#index-pragma_002c-fini">pragma, fini</a>:</td><td>&nbsp;</td><td valign="top"><a href="Solaris-Pragmas.html#Solaris-Pragmas">Solaris Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Solaris-Pragmas.html#index-pragma_002c-init">pragma, init</a>:</td><td>&nbsp;</td><td valign="top"><a href="Solaris-Pragmas.html#Solaris-Pragmas">Solaris Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="RS_002f6000-and-PowerPC-Pragmas.html#index-pragma_002c-longcall">pragma, longcall</a>:</td><td>&nbsp;</td><td valign="top"><a href="RS_002f6000-and-PowerPC-Pragmas.html#RS_002f6000-and-PowerPC-Pragmas">RS/6000 and PowerPC Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Pragmas.html#index-pragma_002c-long_005fcalls">pragma, long_calls</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Pragmas.html#ARM-Pragmas">ARM Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Pragmas.html#index-pragma_002c-long_005fcalls_005foff">pragma, long_calls_off</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Pragmas.html#ARM-Pragmas">ARM Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Darwin-Pragmas.html#index-pragma_002c-mark">pragma, mark</a>:</td><td>&nbsp;</td><td valign="top"><a href="Darwin-Pragmas.html#Darwin-Pragmas">Darwin Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="M32C-Pragmas.html#index-pragma_002c-memregs">pragma, memregs</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32C-Pragmas.html#M32C-Pragmas">M32C Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Pragmas.html#index-pragma_002c-no_005flong_005fcalls">pragma, no_long_calls</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Pragmas.html#ARM-Pragmas">ARM Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Darwin-Pragmas.html#index-pragma_002c-options-align">pragma, options align</a>:</td><td>&nbsp;</td><td valign="top"><a href="Darwin-Pragmas.html#Darwin-Pragmas">Darwin Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Push_002fPop-Macro-Pragmas.html#index-pragma_002c-pop_005fmacro">pragma, pop_macro</a>:</td><td>&nbsp;</td><td valign="top"><a href="Push_002fPop-Macro-Pragmas.html#Push_002fPop-Macro-Pragmas">Push/Pop Macro Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Push_002fPop-Macro-Pragmas.html#index-pragma_002c-push_005fmacro">pragma, push_macro</a>:</td><td>&nbsp;</td><td valign="top"><a href="Push_002fPop-Macro-Pragmas.html#Push_002fPop-Macro-Pragmas">Push/Pop Macro Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Symbol_002dRenaming-Pragmas.html#index-pragma_002c-redefine_005fextname">pragma, redefine_extname</a>:</td><td>&nbsp;</td><td valign="top"><a href="Symbol_002dRenaming-Pragmas.html#Symbol_002dRenaming-Pragmas">Symbol-Renaming Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Darwin-Pragmas.html#index-pragma_002c-segment">pragma, segment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Darwin-Pragmas.html#Darwin-Pragmas">Darwin Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Darwin-Pragmas.html#index-pragma_002c-unused">pragma, unused</a>:</td><td>&nbsp;</td><td valign="top"><a href="Darwin-Pragmas.html#Darwin-Pragmas">Darwin Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Visibility-Pragmas.html#index-pragma_002c-visibility">pragma, visibility</a>:</td><td>&nbsp;</td><td valign="top"><a href="Visibility-Pragmas.html#Visibility-Pragmas">Visibility Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Weak-Pragmas.html#index-pragma_002c-weak">pragma, weak</a>:</td><td>&nbsp;</td><td valign="top"><a href="Weak-Pragmas.html#Weak-Pragmas">Weak Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="Pragmas.html#index-pragmas">pragmas</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pragmas.html#Pragmas">Pragmas</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-pragmas-in-C_002b_002b_002c-effect-on-inlining">pragmas in C++, effect on inlining</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Interface.html#index-pragmas_002c-interface-and-implementation">pragmas, interface and implementation</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Interface.html#C_002b_002b-Interface">C++ Interface</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-pragmas_002c-warning-of-unknown">pragmas, warning of unknown</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Precompiled-Headers.html#index-precompiled-headers">precompiled headers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Precompiled-Headers.html#Precompiled-Headers">Precompiled Headers</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-preprocessing-numbers">preprocessing numbers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-preprocessing-tokens">preprocessing tokens</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-preprocessor-options">preprocessor options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-printf"><code>printf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-printf_005funlocked"><code>printf_unlocked</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-prof"><code>prof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-profiling-options">profiling options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Variable-Attributes.html#index-progmem-variable-attribute_002c-AVR"><code>progmem</code> variable attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Variable-Attributes.html#AVR-Variable-Attributes">AVR Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-program-instrumentation-options">program instrumentation options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Prototypes.html#index-promotion-of-formal-parameters">promotion of formal parameters</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Prototypes.html#Function-Prototypes">Function Prototypes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-pure-function-attribute"><code>pure</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-push-address-instruction">push address instruction</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-putchar"><code>putchar</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-puts"><code>puts</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-Q">Q</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-q-floating-point-suffix"><code>q</code> floating point suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-Q-floating-point-suffix"><code>Q</code> floating point suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-qsort_002c-and-global-register-variables"><code>qsort</code>, and global register variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-quote-GCC_005fCOLORS-capability"><code>quote GCC_COLORS <span class="roman">capability</span></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-r-fixed_002dsuffix"><code>r</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-R-fixed_002dsuffix"><code>R</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-r-in-constraint">&lsquo;<samp>r</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Options.html#index-RAMPD"><code>RAMPD</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Options.html#AVR-Options">AVR Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Options.html#index-RAMPX"><code>RAMPX</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Options.html#AVR-Options">AVR Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Options.html#index-RAMPY"><code>RAMPY</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Options.html#AVR-Options">AVR Options</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Options.html#index-RAMPZ"><code>RAMPZ</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Options.html#AVR-Options">AVR Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Case-Ranges.html#index-ranges-in-case-statements">ranges in case statements</a>:</td><td>&nbsp;</td><td valign="top"><a href="Case-Ranges.html#Case-Ranges">Case Ranges</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-read_002donly-strings">read-only strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-reentrant-function-attribute_002c-MSP430"><code>reentrant</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-register-variable-after-longjmp">register variable after <code>longjmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Local-Register-Variables.html#index-registers-for-local-variables">registers for local variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Local-Register-Variables.html#Local-Register-Variables">Local Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-registers-in-constraints">registers in constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-registers_002c-global-allocation">registers, global allocation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-registers_002c-global-variables-in">registers, global variables in</a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-regparm-function-attribute_002c-x86"><code>regparm</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="M680x0-Options.html#index-relocation-truncated-to-fit-_0028ColdFire_0029">relocation truncated to fit (ColdFire)</a>:</td><td>&nbsp;</td><td valign="top"><a href="M680x0-Options.html#M680x0-Options">M680x0 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Options.html#index-relocation-truncated-to-fit-_0028MIPS_0029">relocation truncated to fit (MIPS)</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Options.html#MIPS-Options">MIPS Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-remainder"><code>remainder</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-remainderf"><code>remainderf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-remainderl"><code>remainderl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-remquo"><code>remquo</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-remquof"><code>remquof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-remquol"><code>remquol</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-renesas-function-attribute_002c-SH"><code>renesas</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#index-reordering_002c-warning">reordering, warning</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Bugs.html#index-reporting-bugs">reporting bugs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bugs.html#Bugs">Bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-resbank-function-attribute_002c-SH"><code>resbank</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-reset-function-attribute_002c-NDS32"><code>reset</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-reset-handler-functions">reset handler functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Variadic-Macros.html#index-rest-argument-_0028in-macro_0029">rest argument (in macro)</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variadic-Macros.html#Variadic-Macros">Variadic Macros</a></td></tr>
<tr><td></td><td valign="top"><a href="Restricted-Pointers.html#index-restricted-pointers">restricted pointers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Restricted-Pointers.html#Restricted-Pointers">Restricted Pointers</a></td></tr>
<tr><td></td><td valign="top"><a href="Restricted-Pointers.html#index-restricted-references">restricted references</a>:</td><td>&nbsp;</td><td valign="top"><a href="Restricted-Pointers.html#Restricted-Pointers">Restricted Pointers</a></td></tr>
<tr><td></td><td valign="top"><a href="Restricted-Pointers.html#index-restricted-this-pointer">restricted this pointer</a>:</td><td>&nbsp;</td><td valign="top"><a href="Restricted-Pointers.html#Restricted-Pointers">Restricted Pointers</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-returns_005fnonnull-function-attribute"><code>returns_nonnull</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-returns_005ftwice-function-attribute"><code>returns_twice</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-rindex"><code>rindex</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-rint"><code>rint</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-rintf"><code>rintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-rintl"><code>rintl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="RL78-Options.html#index-RL78-Options">RL78 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="RL78-Options.html#RL78-Options">RL78 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-round"><code>round</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-roundf"><code>roundf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-roundl"><code>roundl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#index-RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Vague-Linkage.html#index-RTTI">RTTI</a>:</td><td>&nbsp;</td><td valign="top"><a href="Vague-Linkage.html#Vague-Linkage">Vague Linkage</a></td></tr>
<tr><td></td><td valign="top"><a href="Instrumentation-Options.html#index-run_002dtime-error-checking-options">run-time error checking options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Instrumentation-Options.html#Instrumentation-Options">Instrumentation Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Code-Gen-Options.html#index-run_002dtime-options">run-time options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Options.html#index-RX-Options">RX Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Options.html#RX-Options">RX Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-S">S</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-s-in-constraint">&lsquo;<samp>s</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-and-zSeries-Options.html#index-S_002f390-and-zSeries-Options">S/390 and zSeries Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-and-zSeries-Options.html#S_002f390-and-zSeries-Options">S/390 and zSeries Options</a></td></tr>
<tr><td></td><td valign="top"><a href="RL78-Variable-Attributes.html#index-saddr-variable-attribute_002c-RL78"><code>saddr</code> variable attribute, RL78</a>:</td><td>&nbsp;</td><td valign="top"><a href="RL78-Variable-Attributes.html#RL78-Variable-Attributes">RL78 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-save-all-registers-on-the-Blackfin">save all registers on the Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Function-Attributes.html#index-save-all-registers-on-the-H8_002f300_002c-H8_002f300H_002c-and-H8S">save all registers on the H8/300, H8/300H, and H8S</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Function-Attributes.html#H8_002f300-Function-Attributes">H8/300 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-saveall-function-attribute_002c-Blackfin"><code>saveall</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Function-Attributes.html#index-saveall-function-attribute_002c-H8_002f300"><code>saveall</code> function attribute, H8/300</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Function-Attributes.html#H8_002f300-Function-Attributes">H8/300 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-save_005fall-function-attribute_002c-NDS32"><code>save_all</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#index-save_005fvolatiles-function-attribute_002c-MicroBlaze"><code>save_volatiles</code> function attribute, MicroBlaze</a>:</td><td>&nbsp;</td><td valign="top"><a href="MicroBlaze-Function-Attributes.html#MicroBlaze-Function-Attributes">MicroBlaze Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-scalar_005fstorage_005forder-type-attribute"><code>scalar_storage_order</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalb"><code>scalb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalbf"><code>scalbf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalbl"><code>scalbl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalbln"><code>scalbln</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalblnf"><code>scalblnf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalblnf-1"><code>scalblnf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalbn"><code>scalbn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scalbnf"><code>scalbnf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-scanf_002c-and-constant-strings"><code>scanf</code>, and constant strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-scanfnl"><code>scanfnl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-scope-of-a-variable-length-array">scope of a variable length array</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Disappointments.html#index-scope-of-declaration">scope of declaration</a>:</td><td>&nbsp;</td><td valign="top"><a href="Disappointments.html#Disappointments">Disappointments</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-scope-of-external-declarations">scope of external declarations</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Score-Options.html#index-Score-Options">Score Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Score-Options.html#Score-Options">Score Options</a></td></tr>
<tr><td></td><td valign="top"><a href="V850-Variable-Attributes.html#index-sda-variable-attribute_002c-V850"><code>sda</code> variable attribute, V850</a>:</td><td>&nbsp;</td><td valign="top"><a href="V850-Variable-Attributes.html#V850-Variable-Attributes">V850 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Directory-Options.html#index-search-path">search path</a>:</td><td>&nbsp;</td><td valign="top"><a href="Directory-Options.html#Directory-Options">Directory Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-section-function-attribute"><code>section</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-section-variable-attribute"><code>section</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#index-selectany-variable-attribute"><code>selectany</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#Microsoft-Windows-Variable-Attributes">Microsoft Windows Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-sentinel-function-attribute"><code>sentinel</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-setjmp"><code>setjmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-setjmp-incompatibilities"><code>setjmp</code> incompatibilities</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-shared-strings">shared strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#index-shared-variable-attribute"><code>shared</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Microsoft-Windows-Variable-Attributes.html#Microsoft-Windows-Variable-Attributes">Microsoft Windows Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-shortcall-function-attribute_002c-Blackfin"><code>shortcall</code> function attribute, Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-shortcall-function-attribute_002c-PowerPC"><code>shortcall</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-short_005fcall-function-attribute_002c-ARC"><code>short_call</code> function attribute, ARC</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Function-Attributes.html#ARC-Function-Attributes">ARC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-short_005fcall-function-attribute_002c-ARM"><code>short_call</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Epiphany-Function-Attributes.html#index-short_005fcall-function-attribute_002c-Epiphany"><code>short_call</code> function attribute, Epiphany</a>:</td><td>&nbsp;</td><td valign="top"><a href="Epiphany-Function-Attributes.html#Epiphany-Function-Attributes">Epiphany Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Conditionals.html#index-side-effect-in-_003f_003a">side effect in <code>?:</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Conditionals.html#Conditionals">Conditionals</a></td></tr>
<tr><td></td><td valign="top"><a href="Statement-Exprs.html#index-side-effects_002c-macro-argument">side effects, macro argument</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statement-Exprs.html#Statement-Exprs">Statement Exprs</a></td></tr>
<tr><td></td><td valign="top"><a href="Non_002dbugs.html#index-side-effects_002c-order-of-evaluation">side effects, order of evaluation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Non_002dbugs.html#Non_002dbugs">Non-bugs</a></td></tr>
<tr><td></td><td valign="top"><a href="AVR-Function-Attributes.html#index-signal-function-attribute_002c-AVR"><code>signal</code> function attribute, AVR</a>:</td><td>&nbsp;</td><td valign="top"><a href="AVR-Function-Attributes.html#AVR-Function-Attributes">AVR Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-signbit"><code>signbit</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-signbitd128"><code>signbitd128</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-signbitd32"><code>signbitd32</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-signbitd64"><code>signbitd64</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-signbitf"><code>signbitf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-signbitl"><code>signbitl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-signed-and-unsigned-values_002c-comparison-warning">signed and unsigned values, comparison warning</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-significand"><code>significand</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-significandf"><code>significandf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-significandl"><code>significandl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-SIMD">SIMD</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-simd-function-attribute"><code>simd</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-simple-constraints">simple constraints</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sin"><code>sin</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sincos"><code>sincos</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sincosf"><code>sincosf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sincosl"><code>sincosl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sinf"><code>sinf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sinh"><code>sinh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sinhf"><code>sinhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sinhl"><code>sinhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sinl"><code>sinl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-sizeof"><code>sizeof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="M32R_002fD-Options.html#index-smaller-data-references">smaller data references</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32R_002fD-Options.html#M32R_002fD-Options">M32R/D Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Nios-II-Options.html#index-smaller-data-references-1">smaller data references</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nios-II-Options.html#Nios-II-Options">Nios II Options</a></td></tr>
<tr><td></td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#index-smaller-data-references-_0028PowerPC_0029">smaller data references (PowerPC)</a>:</td><td>&nbsp;</td><td valign="top"><a href="RS_002f6000-and-PowerPC-Options.html#RS_002f6000-and-PowerPC-Options">RS/6000 and PowerPC Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-snprintf"><code>snprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Solaris-2-Options.html#index-Solaris-2-options">Solaris 2 options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Solaris-2-Options.html#Solaris-2-Options">Solaris 2 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="SPARC-Options.html#index-SPARC-options">SPARC options</a>:</td><td>&nbsp;</td><td valign="top"><a href="SPARC-Options.html#SPARC-Options">SPARC Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Spec-Files.html#index-Spec-Files">Spec Files</a>:</td><td>&nbsp;</td><td valign="top"><a href="Spec-Files.html#Spec-Files">Spec Files</a></td></tr>
<tr><td></td><td valign="top"><a href="Explicit-Register-Variables.html#index-specified-registers">specified registers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Explicit-Register-Variables.html#Explicit-Register-Variables">Explicit Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-specifying-compiler-version-and-target-machine">specifying compiler version and target machine</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Submodel-Options.html#index-specifying-hardware-config">specifying hardware config</a>:</td><td>&nbsp;</td><td valign="top"><a href="Submodel-Options.html#Submodel-Options">Submodel Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-specifying-machine-version">specifying machine version</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="Local-Register-Variables.html#index-specifying-registers-for-local-variables">specifying registers for local variables</a>:</td><td>&nbsp;</td><td valign="top"><a href="Local-Register-Variables.html#Local-Register-Variables">Local Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Precompiled-Headers.html#index-speed-of-compilation">speed of compilation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Precompiled-Headers.html#Precompiled-Headers">Precompiled Headers</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sprintf"><code>sprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="SPU-Options.html#index-SPU-options">SPU options</a>:</td><td>&nbsp;</td><td valign="top"><a href="SPU-Options.html#SPU-Options">SPU Options</a></td></tr>
<tr><td></td><td valign="top"><a href="SPU-Type-Attributes.html#index-spu_005fvector-type-attribute_002c-SPU"><code>spu_vector</code> type attribute, SPU</a>:</td><td>&nbsp;</td><td valign="top"><a href="SPU-Type-Attributes.html#SPU-Type-Attributes">SPU Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SPU-Variable-Attributes.html#index-spu_005fvector-variable-attribute_002c-SPU"><code>spu_vector</code> variable attribute, SPU</a>:</td><td>&nbsp;</td><td valign="top"><a href="SPU-Variable-Attributes.html#SPU-Variable-Attributes">SPU Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-sp_005fswitch-function-attribute_002c-SH"><code>sp_switch</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sqrt"><code>sqrt</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sqrtf"><code>sqrtf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sqrtl"><code>sqrtl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-sscanf"><code>sscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-sscanf_002c-and-constant-strings"><code>sscanf</code>, and constant strings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-sseregparm-function-attribute_002c-x86"><code>sseregparm</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-stack_005fprotect-function-attribute"><code>stack_protect</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Statement-Exprs.html#index-statements-inside-expressions">statements inside expressions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statement-Exprs.html#Statement-Exprs">Statement Exprs</a></td></tr>
<tr><td></td><td valign="top"><a href="Static-Definitions.html#index-static-data-in-C_002b_002b_002c-declaring-and-defining">static data in C++, declaring and defining</a>:</td><td>&nbsp;</td><td valign="top"><a href="Static-Definitions.html#Static-Definitions">Static Definitions</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-stdcall-function-attribute_002c-x86_002d32"><code>stdcall</code> function attribute, x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-stpcpy"><code>stpcpy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-stpncpy"><code>stpncpy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strcasecmp"><code>strcasecmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strcat"><code>strcat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strchr"><code>strchr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strcmp"><code>strcmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strcpy"><code>strcpy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strcspn"><code>strcspn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strdup"><code>strdup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strfmon"><code>strfmon</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strftime"><code>strftime</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-strict_002dalign-function-attribute_002c-AArch64"><code>strict-align</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-string-constants">string constants</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strlen"><code>strlen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strncasecmp"><code>strncasecmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strncat"><code>strncat</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strncmp"><code>strncmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strncpy"><code>strncpy</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strndup"><code>strndup</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strpbrk"><code>strpbrk</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strrchr"><code>strrchr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strspn"><code>strspn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strstr"><code>strstr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Unnamed-Fields.html#index-struct"><code>struct</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Unnamed-Fields.html#Unnamed-Fields">Unnamed Fields</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#index-struct-_005f_005fhtm_005ftdb"><code>struct __htm_tdb</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-System-z-Built_002din-Functions.html#S_002f390-System-z-Built_002din-Functions">S/390 System z Built-in Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-structures">structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Compound-Literals.html#index-structures_002c-constructor-expression">structures, constructor expression</a>:</td><td>&nbsp;</td><td valign="top"><a href="Compound-Literals.html#Compound-Literals">Compound Literals</a></td></tr>
<tr><td></td><td valign="top"><a href="Submodel-Options.html#index-submodel-options">submodel options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Submodel-Options.html#Submodel-Options">Submodel Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Subscripting.html#index-subscripting">subscripting</a>:</td><td>&nbsp;</td><td valign="top"><a href="Subscripting.html#Subscripting">Subscripting</a></td></tr>
<tr><td></td><td valign="top"><a href="Subscripting.html#index-subscripting-and-function-values">subscripting and function values</a>:</td><td>&nbsp;</td><td valign="top"><a href="Subscripting.html#Subscripting">Subscripting</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-G_002b_002b.html#index-suffixes-for-C_002b_002b-source">suffixes for C++ source</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-G_002b_002b.html#Invoking-G_002b_002b">Invoking G++</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-SUNPRO_005fDEPENDENCIES"><code>SUNPRO_DEPENDENCIES</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-suppressing-warnings">suppressing warnings</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Misunderstandings.html#index-surprises-in-C_002b_002b">surprises in C++</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Misunderstandings.html#C_002b_002b-Misunderstandings">C++ Misunderstandings</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-syntax-checking">syntax checking</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="IA_002d64-Function-Attributes.html#index-syscall_005flinkage-function-attribute_002c-IA_002d64"><code>syscall_linkage</code> function attribute, IA-64</a>:</td><td>&nbsp;</td><td valign="top"><a href="IA_002d64-Function-Attributes.html#IA_002d64-Function-Attributes">IA-64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-system-headers_002c-warnings-from">system headers, warnings from</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-sysv_005fabi-function-attribute_002c-x86"><code>sysv_abi</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tan"><code>tan</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tanf"><code>tanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tanh"><code>tanh</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tanhf"><code>tanhf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tanhl"><code>tanhl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tanl"><code>tanl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-target-function-attribute"><code>target</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-target-function-attribute-1"><code>target</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nios-II-Function-Attributes.html#index-target-function-attribute-2"><code>target</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nios-II-Function-Attributes.html#Nios-II-Function-Attributes">Nios II Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target-function-attribute-3"><code>target</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="S_002f390-Function-Attributes.html#index-target-function-attribute-4"><code>target</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="S_002f390-Function-Attributes.html#S_002f390-Function-Attributes">S/390 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target-function-attribute-5"><code>target</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Invoking-GCC.html#index-target-machine_002c-specifying">target machine, specifying</a>:</td><td>&nbsp;</td><td valign="top"><a href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022abm_0022_0029-function-attribute_002c-x86"><code>target(&quot;abm&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022aes_0022_0029-function-attribute_002c-x86"><code>target(&quot;aes&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022align_002dstringops_0022_0029-function-attribute_002c-x86"><code>target(&quot;align-stringops&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022altivec_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;altivec&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022arch_003dARCH_0022_0029-function-attribute_002c-x86"><code>target(&quot;arch=<var>ARCH</var>&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-target_0028_0022arm_0022_0029-function-attribute_002c-ARM"><code>target(&quot;arm&quot;)</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022avoid_002dindexed_002daddresses_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;avoid-indexed-addresses&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022cld_0022_0029-function-attribute_002c-x86"><code>target(&quot;cld&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022cmpb_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;cmpb&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022cpu_003dCPU_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;cpu=<var>CPU</var>&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nios-II-Function-Attributes.html#index-target_0028_0022custom_002dfpu_002dcfg_003dname_0022_0029-function-attribute_002c-Nios-II"><code>target(&quot;custom-fpu-cfg=<var>name</var>&quot;)</code> function attribute, Nios II</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nios-II-Function-Attributes.html#Nios-II-Function-Attributes">Nios II Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nios-II-Function-Attributes.html#index-target_0028_0022custom_002dinsn_003dN_0022_0029-function-attribute_002c-Nios-II"><code>target(&quot;custom-<var>insn</var>=<var>N</var>&quot;)</code> function attribute, Nios II</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nios-II-Function-Attributes.html#Nios-II-Function-Attributes">Nios II Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022default_0022_0029-function-attribute_002c-x86"><code>target(&quot;default&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022dlmzb_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;dlmzb&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022fancy_002dmath_002d387_0022_0029-function-attribute_002c-x86"><code>target(&quot;fancy-math-387&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022fma4_0022_0029-function-attribute_002c-x86"><code>target(&quot;fma4&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022fpmath_003dFPMATH_0022_0029-function-attribute_002c-x86"><code>target(&quot;fpmath=<var>FPMATH</var>&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022fprnd_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;fprnd&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-target_0028_0022fpu_003d_0022_0029-function-attribute_002c-ARM"><code>target(&quot;fpu=&quot;)</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022friz_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;friz&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022fused_002dmadd_0022_0029-function-attribute_002c-x86"><code>target(&quot;fused-madd&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022hard_002ddfp_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;hard-dfp&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022ieee_002dfp_0022_0029-function-attribute_002c-x86"><code>target(&quot;ieee-fp&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022inline_002dall_002dstringops_0022_0029-function-attribute_002c-x86"><code>target(&quot;inline-all-stringops&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022inline_002dstringops_002ddynamically_0022_0029-function-attribute_002c-x86"><code>target(&quot;inline-stringops-dynamically&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022isel_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;isel&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022longcall_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;longcall&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022lwp_0022_0029-function-attribute_002c-x86"><code>target(&quot;lwp&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022mfcrf_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;mfcrf&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022mfpgpr_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;mfpgpr&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022mmx_0022_0029-function-attribute_002c-x86"><code>target(&quot;mmx&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022mulhw_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;mulhw&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022multiple_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;multiple&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Nios-II-Function-Attributes.html#index-target_0028_0022no_002dcustom_002dinsn_0022_0029-function-attribute_002c-Nios-II"><code>target(&quot;no-custom-<var>insn</var>&quot;)</code> function attribute, Nios II</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nios-II-Function-Attributes.html#Nios-II-Function-Attributes">Nios II Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022paired_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;paired&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022pclmul_0022_0029-function-attribute_002c-x86"><code>target(&quot;pclmul&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022popcnt_0022_0029-function-attribute_002c-x86"><code>target(&quot;popcnt&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022popcntb_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;popcntb&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022popcntd_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;popcntd&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022powerpc_002dgfxopt_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;powerpc-gfxopt&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022powerpc_002dgpopt_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;powerpc-gpopt&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022recip_0022_0029-function-attribute_002c-x86"><code>target(&quot;recip&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022recip_002dprecision_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;recip-precision&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sse_0022_0029-function-attribute_002c-x86"><code>target(&quot;sse&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sse2_0022_0029-function-attribute_002c-x86"><code>target(&quot;sse2&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sse3_0022_0029-function-attribute_002c-x86"><code>target(&quot;sse3&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sse4_0022_0029-function-attribute_002c-x86"><code>target(&quot;sse4&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sse4_002e1_0022_0029-function-attribute_002c-x86"><code>target(&quot;sse4.1&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sse4_002e2_0022_0029-function-attribute_002c-x86"><code>target(&quot;sse4.2&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sse4a_0022_0029-function-attribute_002c-x86"><code>target(&quot;sse4a&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022ssse3_0022_0029-function-attribute_002c-x86"><code>target(&quot;ssse3&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022string_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;string&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-target_0028_0022thumb_0022_0029-function-attribute_002c-ARM"><code>target(&quot;thumb&quot;)</code> function attribute, ARM</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARM-Function-Attributes.html#ARM-Function-Attributes">ARM Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022tune_003dTUNE_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;tune=<var>TUNE</var>&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022tune_003dTUNE_0022_0029-function-attribute_002c-x86"><code>target(&quot;tune=<var>TUNE</var>&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022update_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;update&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="PowerPC-Function-Attributes.html#index-target_0028_0022vsx_0022_0029-function-attribute_002c-PowerPC"><code>target(&quot;vsx&quot;)</code> function attribute, PowerPC</a>:</td><td>&nbsp;</td><td valign="top"><a href="PowerPC-Function-Attributes.html#PowerPC-Function-Attributes">PowerPC Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022xop_0022_0029-function-attribute_002c-x86"><code>target(&quot;xop&quot;)</code> function attribute, x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Submodel-Options.html#index-target_002ddependent-options">target-dependent options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Submodel-Options.html#Submodel-Options">Submodel Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-target_005fclones-function-attribute"><code>target_clones</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-TC1">TC1</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-TC2">TC2</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-TC3">TC3</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="V850-Variable-Attributes.html#index-tda-variable-attribute_002c-V850"><code>tda</code> variable attribute, V850</a>:</td><td>&nbsp;</td><td valign="top"><a href="V850-Variable-Attributes.html#V850-Variable-Attributes">V850 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-Technical-Corrigenda">Technical Corrigenda</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-Technical-Corrigendum-1">Technical Corrigendum 1</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-Technical-Corrigendum-2">Technical Corrigendum 2</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-Technical-Corrigendum-3">Technical Corrigendum 3</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Template-Instantiation.html#index-template-instantiation">template instantiation</a>:</td><td>&nbsp;</td><td valign="top"><a href="Template-Instantiation.html#Template-Instantiation">Template Instantiation</a></td></tr>
<tr><td></td><td valign="top"><a href="Temporaries.html#index-temporaries_002c-lifetime-of">temporaries, lifetime of</a>:</td><td>&nbsp;</td><td valign="top"><a href="Temporaries.html#Temporaries">Temporaries</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tgamma"><code>tgamma</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tgammaf"><code>tgammaf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tgammal"><code>tgammal</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-thiscall-function-attribute_002c-x86_002d32"><code>thiscall</code> function attribute, x86-32</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Function-Attributes.html#x86-Function-Attributes">x86 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Thread_002dLocal.html#index-Thread_002dLocal-Storage">Thread-Local Storage</a>:</td><td>&nbsp;</td><td valign="top"><a href="Thread_002dLocal.html#Thread_002dLocal">Thread-Local</a></td></tr>
<tr><td></td><td valign="top"><a href="Nested-Functions.html#index-thunks">thunks</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nested-Functions.html#Nested-Functions">Nested Functions</a></td></tr>
<tr><td></td><td valign="top"><a href="TILE_002dGx-Options.html#index-TILE_002dGx-options">TILE-Gx options</a>:</td><td>&nbsp;</td><td valign="top"><a href="TILE_002dGx-Options.html#TILE_002dGx-Options">TILE-Gx Options</a></td></tr>
<tr><td></td><td valign="top"><a href="TILEPro-Options.html#index-TILEPro-options">TILEPro options</a>:</td><td>&nbsp;</td><td valign="top"><a href="TILEPro-Options.html#TILEPro-Options">TILEPro Options</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#index-tiny-data-section-on-the-H8_002f300H-and-H8S">tiny data section on the H8/300H and H8S</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#H8_002f300-Variable-Attributes">H8/300 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Type-Attributes.html#index-tiny-type-attribute_002c-MeP"><code>tiny</code> type attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Type-Attributes.html#MeP-Type-Attributes">MeP Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Variable-Attributes.html#index-tiny-variable-attribute_002c-MeP"><code>tiny</code> variable attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Variable-Attributes.html#MeP-Variable-Attributes">MeP Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#index-tiny_005fdata-variable-attribute_002c-H8_002f300"><code>tiny_data</code> variable attribute, H8/300</a>:</td><td>&nbsp;</td><td valign="top"><a href="H8_002f300-Variable-Attributes.html#H8_002f300-Variable-Attributes">H8/300 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Thread_002dLocal.html#index-TLS"><acronym>TLS</acronym></a>:</td><td>&nbsp;</td><td valign="top"><a href="Thread_002dLocal.html#Thread_002dLocal">Thread-Local</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-tls_002ddialect_003d-function-attribute_002c-AArch64"><code>tls-dialect=</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-tls_005fmodel-variable-attribute"><code>tls_model</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Environment-Variables.html#index-TMPDIR"><code>TMPDIR</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-toascii"><code>toascii</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-tolower"><code>tolower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-toupper"><code>toupper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-towlower"><code>towlower</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-towupper"><code>towupper</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="C-Dialect-Options.html#index-traditional-C-language">traditional C language</a>:</td><td>&nbsp;</td><td valign="top"><a href="C-Dialect-Options.html#C-Dialect-Options">C Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-transparent_005funion-type-attribute"><code>transparent_union</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-trapa_005fhandler-function-attribute_002c-SH"><code>trapa_handler</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="SH-Function-Attributes.html#index-trap_005fexit-function-attribute_002c-SH"><code>trap_exit</code> function attribute, SH</a>:</td><td>&nbsp;</td><td valign="top"><a href="SH-Function-Attributes.html#SH-Function-Attributes">SH Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-trunc"><code>trunc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-truncf"><code>truncf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-truncl"><code>truncl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-tune_003d-function-attribute_002c-AArch64"><code>tune=</code> function attribute, AArch64</a>:</td><td>&nbsp;</td><td valign="top"><a href="AArch64-Function-Attributes.html#AArch64-Function-Attributes">AArch64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Name-lookup.html#index-two_002dstage-name-lookup">two-stage name lookup</a>:</td><td>&nbsp;</td><td valign="top"><a href="Name-lookup.html#Name-lookup">Name lookup</a></td></tr>
<tr><td></td><td valign="top"><a href="Alignment.html#index-type-alignment">type alignment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Alignment.html#Alignment">Alignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Type-Attributes.html#index-type-attributes">type attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Type-Attributes.html#Type-Attributes">Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-typedef-names-as-function-parameters">typedef names as function parameters</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-typeof"><code>typeof</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="Vague-Linkage.html#index-type_005finfo"><code>type_info</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vague-Linkage.html#Vague-Linkage">Vague Linkage</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-uhk-fixed_002dsuffix"><code>uhk</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-UHK-fixed_002dsuffix"><code>UHK</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-uhr-fixed_002dsuffix"><code>uhr</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-UHR-fixed_002dsuffix"><code>UHR</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-uk-fixed_002dsuffix"><code>uk</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-UK-fixed_002dsuffix"><code>UK</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ulk-fixed_002dsuffix"><code>ulk</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ULK-fixed_002dsuffix"><code>ULK</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Long-Long.html#index-ULL-integer-suffix"><code>ULL</code> integer suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Long-Long.html#Long-Long">Long Long</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ullk-fixed_002dsuffix"><code>ullk</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ULLK-fixed_002dsuffix"><code>ULLK</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ullr-fixed_002dsuffix"><code>ullr</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ULLR-fixed_002dsuffix"><code>ULLR</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ulr-fixed_002dsuffix"><code>ulr</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ULR-fixed_002dsuffix"><code>ULR</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-undefined-behavior">undefined behavior</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Bug-Criteria.html#index-undefined-function-value">undefined function value</a>:</td><td>&nbsp;</td><td valign="top"><a href="Bug-Criteria.html#Bug-Criteria">Bug Criteria</a></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-underscores-in-variables-in-macros">underscores in variables in macros</a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="Unnamed-Fields.html#index-union"><code>union</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Unnamed-Fields.html#Unnamed-Fields">Unnamed Fields</a></td></tr>
<tr><td></td><td valign="top"><a href="Cast-to-Union.html#index-union_002c-casting-to-a">union, casting to a</a>:</td><td>&nbsp;</td><td valign="top"><a href="Cast-to-Union.html#Cast-to-Union">Cast to Union</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-unions">unions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-unknown-pragmas_002c-warning">unknown pragmas, warning</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-unresolved-references-and-_002dnodefaultlibs">unresolved references and <samp>-nodefaultlibs</samp></a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Link-Options.html#index-unresolved-references-and-_002dnostdlib">unresolved references and <samp>-nostdlib</samp></a>:</td><td>&nbsp;</td><td valign="top"><a href="Link-Options.html#Link-Options">Link Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-unused-function-attribute"><code>unused</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Label-Attributes.html#index-unused-label-attribute"><code>unused</code> label attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Label-Attributes.html#Label-Attributes">Label Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-unused-type-attribute"><code>unused</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-unused-variable-attribute"><code>unused</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-upper-function-attribute_002c-MSP430"><code>upper</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Variable-Attributes.html#index-upper-variable-attribute_002c-MSP430"><code>upper</code> variable attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Variable-Attributes.html#MSP430-Variable-Attributes">MSP430 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-ur-fixed_002dsuffix"><code>ur</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Fixed_002dPoint.html#index-UR-fixed_002dsuffix"><code>UR</code> fixed-suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Fixed_002dPoint.html#Fixed_002dPoint">Fixed-Point</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-used-function-attribute"><code>used</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-used-variable-attribute"><code>used</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Blackfin-Function-Attributes.html#index-User-stack-pointer-in-interrupts-on-the-Blackfin">User stack pointer in interrupts on the Blackfin</a>:</td><td>&nbsp;</td><td valign="top"><a href="Blackfin-Function-Attributes.html#Blackfin-Function-Attributes">Blackfin Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-use_005fdebug_005fexception_005freturn-function-attribute_002c-MIPS"><code>use_debug_exception_return</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-use_005fshadow_005fregister_005fset-function-attribute_002c-MIPS"><code>use_shadow_register_set</code> function attribute, MIPS</a>:</td><td>&nbsp;</td><td valign="top"><a href="MIPS-Function-Attributes.html#MIPS-Function-Attributes">MIPS Function Attributes</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-V">V</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-V-in-constraint">&lsquo;<samp>V</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="V850-Options.html#index-V850-Options">V850 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="V850-Options.html#V850-Options">V850 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Vague-Linkage.html#index-vague-linkage">vague linkage</a>:</td><td>&nbsp;</td><td valign="top"><a href="Vague-Linkage.html#Vague-Linkage">Vague Linkage</a></td></tr>
<tr><td></td><td valign="top"><a href="Global-Register-Variables.html#index-value-after-longjmp">value after <code>longjmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Global-Register-Variables.html#Global-Register-Variables">Global Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="M32R_002fD-Variable-Attributes.html#index-variable-addressability-on-the-M32R_002fD">variable addressability on the M32R/D</a>:</td><td>&nbsp;</td><td valign="top"><a href="M32R_002fD-Variable-Attributes.html#M32R_002fD-Variable-Attributes">M32R/D Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Alignment.html#index-variable-alignment">variable alignment</a>:</td><td>&nbsp;</td><td valign="top"><a href="Alignment.html#Alignment">Alignment</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Attributes.html#index-variable-attributes">variable attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Variadic-Macros.html#index-variable-number-of-arguments">variable number of arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variadic-Macros.html#Variadic-Macros">Variadic Macros</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-variable_002dlength-array-in-a-structure">variable-length array in a structure</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-variable_002dlength-array-scope">variable-length array scope</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-variable_002dlength-arrays">variable-length arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Explicit-Register-Variables.html#index-variables-in-specified-registers">variables in specified registers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Explicit-Register-Variables.html#Explicit-Register-Variables">Explicit Register Variables</a></td></tr>
<tr><td></td><td valign="top"><a href="Typeof.html#index-variables_002c-local_002c-in-macros">variables, local, in macros</a>:</td><td>&nbsp;</td><td valign="top"><a href="Typeof.html#Typeof">Typeof</a></td></tr>
<tr><td></td><td valign="top"><a href="Variadic-Macros.html#index-variadic-macros">variadic macros</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variadic-Macros.html#Variadic-Macros">Variadic Macros</a></td></tr>
<tr><td></td><td valign="top"><a href="VAX-Options.html#index-VAX-options">VAX options</a>:</td><td>&nbsp;</td><td valign="top"><a href="VAX-Options.html#VAX-Options">VAX Options</a></td></tr>
<tr><td></td><td valign="top"><a href="RX-Function-Attributes.html#index-vector-function-attribute_002c-RX"><code>vector</code> function attribute, RX</a>:</td><td>&nbsp;</td><td valign="top"><a href="RX-Function-Attributes.html#RX-Function-Attributes">RX Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-vector_005fsize-variable-attribute"><code>vector_size</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="IA_002d64-Function-Attributes.html#index-version_005fid-function-attribute_002c-IA_002d64"><code>version_id</code> function attribute, IA-64</a>:</td><td>&nbsp;</td><td valign="top"><a href="IA_002d64-Function-Attributes.html#IA_002d64-Function-Attributes">IA-64 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-vfprintf"><code>vfprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-vfscanf"><code>vfscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-visibility-function-attribute"><code>visibility</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-visibility-type-attribute"><code>visibility</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Type-Attributes.html#Common-Type-Attributes">Common Type Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-visibility-variable-attribute"><code>visibility</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Visium-Options.html#index-Visium-options">Visium options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Visium-Options.html#Visium-Options">Visium Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Variable-Length.html#index-VLAs">VLAs</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variable-Length.html#Variable-Length">Variable Length</a></td></tr>
<tr><td></td><td valign="top"><a href="MeP-Function-Attributes.html#index-vliw-function-attribute_002c-MeP"><code>vliw</code> function attribute, MeP</a>:</td><td>&nbsp;</td><td valign="top"><a href="MeP-Function-Attributes.html#MeP-Function-Attributes">MeP Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Arith.html#index-void-pointers_002c-arithmetic">void pointers, arithmetic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Arith.html#Pointer-Arith">Pointer Arith</a></td></tr>
<tr><td></td><td valign="top"><a href="Pointer-Arith.html#index-void_002c-size-of-pointer-to">void, size of pointer to</a>:</td><td>&nbsp;</td><td valign="top"><a href="Pointer-Arith.html#Pointer-Arith">Pointer Arith</a></td></tr>
<tr><td></td><td valign="top"><a href="Volatiles.html#index-volatile-access">volatile access</a>:</td><td>&nbsp;</td><td valign="top"><a href="Volatiles.html#Volatiles">Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Volatiles.html#index-volatile-access-1">volatile access</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Volatiles.html#C_002b_002b-Volatiles">C++ Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="Function-Attributes.html#index-volatile-applied-to-function"><code>volatile</code> applied to function</a>:</td><td>&nbsp;</td><td valign="top"><a href="Function-Attributes.html#Function-Attributes">Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Extended-Asm.html#index-volatile-asm">volatile <code>asm</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
<tr><td></td><td valign="top"><a href="Volatiles.html#index-volatile-read">volatile read</a>:</td><td>&nbsp;</td><td valign="top"><a href="Volatiles.html#Volatiles">Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Volatiles.html#index-volatile-read-1">volatile read</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Volatiles.html#C_002b_002b-Volatiles">C++ Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="Volatiles.html#index-volatile-write">volatile write</a>:</td><td>&nbsp;</td><td valign="top"><a href="Volatiles.html#Volatiles">Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Volatiles.html#index-volatile-write-1">volatile write</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Volatiles.html#C_002b_002b-Volatiles">C++ Volatiles</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-vprintf"><code>vprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-vscanf"><code>vscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-vsnprintf"><code>vsnprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-vsprintf"><code>vsprintf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-vsscanf"><code>vsscanf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Vague-Linkage.html#index-vtable">vtable</a>:</td><td>&nbsp;</td><td valign="top"><a href="Vague-Linkage.html#Vague-Linkage">Vague Linkage</a></td></tr>
<tr><td></td><td valign="top"><a href="VxWorks-Options.html#index-VxWorks-Options">VxWorks Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="VxWorks-Options.html#VxWorks-Options">VxWorks Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-W">W</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-w-floating-point-suffix"><code>w</code> floating point suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="Floating-Types.html#index-W-floating-point-suffix"><code>W</code> floating point suffix</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
<tr><td></td><td valign="top"><a href="MSP430-Function-Attributes.html#index-wakeup-function-attribute_002c-MSP430"><code>wakeup</code> function attribute, MSP430</a>:</td><td>&nbsp;</td><td valign="top"><a href="MSP430-Function-Attributes.html#MSP430-Function-Attributes">MSP430 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="NDS32-Function-Attributes.html#index-warm-function-attribute_002c-NDS32"><code>warm</code> function attribute, NDS32</a>:</td><td>&nbsp;</td><td valign="top"><a href="NDS32-Function-Attributes.html#NDS32-Function-Attributes">NDS32 Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-warning-for-comparison-of-signed-and-unsigned-values">warning for comparison of signed and unsigned values</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#index-warning-for-overloaded-virtual-function">warning for overloaded virtual function</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#index-warning-for-reordering-of-member-initializers">warning for reordering of member initializers</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-warning-for-unknown-pragmas">warning for unknown pragmas</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-warning-function-attribute"><code>warning</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-warning-GCC_005fCOLORS-capability"><code>warning GCC_COLORS <span class="roman">capability</span></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#Diagnostic-Message-Formatting-Options">Diagnostic Message Formatting Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-warning-messages">warning messages</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warning-Options.html#index-warnings-from-system-headers">warnings from system headers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warning-Options.html#Warning-Options">Warning Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Warnings-and-Errors.html#index-warnings-vs-errors">warnings vs errors</a>:</td><td>&nbsp;</td><td valign="top"><a href="Warnings-and-Errors.html#Warnings-and-Errors">Warnings and Errors</a></td></tr>
<tr><td></td><td valign="top"><a href="C_002b_002b-Attributes.html#index-warn_005funused-type-attribute"><code>warn_unused</code> type attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002b_002b-Attributes.html#C_002b_002b-Attributes">C++ Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-warn_005funused_005fresult-function-attribute"><code>warn_unused_result</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-weak-function-attribute"><code>weak</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-weak-variable-attribute"><code>weak</code> variable attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Variable-Attributes.html#Common-Variable-Attributes">Common Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-weakref-function-attribute"><code>weakref</code> function attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Incompatibilities.html#index-whitespace">whitespace</a>:</td><td>&nbsp;</td><td valign="top"><a href="Incompatibilities.html#Incompatibilities">Incompatibilities</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Windows-Options.html#index-Windows-Options-for-x86">Windows Options for x86</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Windows-Options.html#x86-Windows-Options">x86 Windows Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-X">X</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Simple-Constraints.html#index-X-in-constraint">&lsquo;<samp>X</samp>&rsquo; in constraint</a>:</td><td>&nbsp;</td><td valign="top"><a href="Simple-Constraints.html#Simple-Constraints">Simple Constraints</a></td></tr>
<tr><td></td><td valign="top"><a href="Standards.html#index-X3_002e159_002d1989">X3.159-1989</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
<tr><td></td><td valign="top"><a href="Named-Address-Spaces.html#index-x86-named-address-spaces">x86 named address spaces</a>:</td><td>&nbsp;</td><td valign="top"><a href="Named-Address-Spaces.html#Named-Address-Spaces">Named Address Spaces</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Options.html#index-x86-Options">x86 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Options.html#x86-Options">x86 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="x86-Windows-Options.html#index-x86-Windows-Options">x86 Windows Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-Windows-Options.html#x86-Windows-Options">x86 Windows Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Xstormy16-Options.html#index-Xstormy16-Options">Xstormy16 Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Xstormy16-Options.html#Xstormy16-Options">Xstormy16 Options</a></td></tr>
<tr><td></td><td valign="top"><a href="Xtensa-Options.html#index-Xtensa-Options">Xtensa Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="Xtensa-Options.html#Xtensa-Options">Xtensa Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-Y">Y</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-y0"><code>y0</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-y0f"><code>y0f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-y0l"><code>y0l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-y1"><code>y1</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-y1f"><code>y1f</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-y1l"><code>y1l</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-yn"><code>yn</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ynf"><code>ynf</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td></td><td valign="top"><a href="Other-Builtins.html#index-ynl"><code>ynl</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
<tr><th><a name="Keyword-Index_cp_letter-Z">Z</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="V850-Variable-Attributes.html#index-zda-variable-attribute_002c-V850"><code>zda</code> variable attribute, V850</a>:</td><td>&nbsp;</td><td valign="top"><a href="V850-Variable-Attributes.html#V850-Variable-Attributes">V850 Variable Attributes</a></td></tr>
<tr><td></td><td valign="top"><a href="Zero-Length.html#index-zero_002dlength-arrays">zero-length arrays</a>:</td><td>&nbsp;</td><td valign="top"><a href="Zero-Length.html#Zero-Length">Zero Length</a></td></tr>
<tr><td></td><td valign="top"><a href="Empty-Structures.html#index-zero_002dsize-structures">zero-size structures</a>:</td><td>&nbsp;</td><td valign="top"><a href="Empty-Structures.html#Empty-Structures">Empty Structures</a></td></tr>
<tr><td></td><td valign="top"><a href="zSeries-Options.html#index-zSeries-options">zSeries options</a>:</td><td>&nbsp;</td><td valign="top"><a href="zSeries-Options.html#zSeries-Options">zSeries Options</a></td></tr>
<tr><td colspan="4"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Keyword-Index_cp_symbol-1"><b>#</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-2"><b>$</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-3"><b>%</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-4"><b>&amp;</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-5"><b>'</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-6"><b>*</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-7"><b>+</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-8"><b>-</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-9"><b>.</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-10"><b>/</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-11"><b>0</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-12"><b>&lt;</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-13"><b>=</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-14"><b>&gt;</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-15"><b>?</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_symbol-16"><b>_</b></a>
 &nbsp; 
<br>
<a class="summary-letter" href="#Keyword-Index_cp_letter-A"><b>A</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-B"><b>B</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-C"><b>C</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-D"><b>D</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-E"><b>E</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-F"><b>F</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-G"><b>G</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-H"><b>H</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-I"><b>I</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-J"><b>J</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-K"><b>K</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-L"><b>L</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-M"><b>M</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-N"><b>N</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-O"><b>O</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-P"><b>P</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-Q"><b>Q</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-R"><b>R</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-S"><b>S</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-T"><b>T</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-U"><b>U</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-V"><b>V</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-W"><b>W</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-X"><b>X</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-Y"><b>Y</b></a>
 &nbsp; 
<a class="summary-letter" href="#Keyword-Index_cp_letter-Z"><b>Z</b></a>
 &nbsp; 
</td></tr></table>
 
 
<hr>
<div class="header">
<p>
Previous: <a href="Option-Index.html#Option-Index" accesskey="p" rel="prev">Option Index</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
</div>
 
 
 
</body>
</html>