You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Keyword-Index.html 495KB

3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Copyright (C) 1988-2020 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation; with the
  7. Invariant Sections being "Funding Free Software", the Front-Cover
  8. Texts being (a) (see below), and with the Back-Cover Texts being (b)
  9. (see below). A copy of the license is included in the section entitled
  10. "GNU Free Documentation License".
  11. (a) The FSF's Front-Cover Text is:
  12. A GNU Manual
  13. (b) The FSF's Back-Cover Text is:
  14. You have freedom to copy and modify this GNU Manual, like GNU
  15. software. Copies published by the Free Software Foundation raise
  16. funds for GNU development. -->
  17. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  18. <head>
  19. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  20. <title>Keyword Index (Using the GNU Compiler Collection (GCC))</title>
  21. <meta name="description" content="Keyword Index (Using the GNU Compiler Collection (GCC))">
  22. <meta name="keywords" content="Keyword Index (Using the GNU Compiler Collection (GCC))">
  23. <meta name="resource-type" content="document">
  24. <meta name="distribution" content="global">
  25. <meta name="Generator" content="makeinfo">
  26. <link href="index.html#Top" rel="start" title="Top">
  27. <link href="Option-Index.html#Option-Index" rel="index" title="Option Index">
  28. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  29. <link href="index.html#Top" rel="up" title="Top">
  30. <link href="Option-Index.html#Option-Index" rel="prev" title="Option Index">
  31. <style type="text/css">
  32. <!--
  33. a.summary-letter {text-decoration: none}
  34. blockquote.indentedblock {margin-right: 0em}
  35. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  36. blockquote.smallquotation {font-size: smaller}
  37. div.display {margin-left: 3.2em}
  38. div.example {margin-left: 3.2em}
  39. div.lisp {margin-left: 3.2em}
  40. div.smalldisplay {margin-left: 3.2em}
  41. div.smallexample {margin-left: 3.2em}
  42. div.smalllisp {margin-left: 3.2em}
  43. kbd {font-style: oblique}
  44. pre.display {font-family: inherit}
  45. pre.format {font-family: inherit}
  46. pre.menu-comment {font-family: serif}
  47. pre.menu-preformatted {font-family: serif}
  48. pre.smalldisplay {font-family: inherit; font-size: smaller}
  49. pre.smallexample {font-size: smaller}
  50. pre.smallformat {font-family: inherit; font-size: smaller}
  51. pre.smalllisp {font-size: smaller}
  52. span.nolinebreak {white-space: nowrap}
  53. span.roman {font-family: initial; font-weight: normal}
  54. span.sansserif {font-family: sans-serif; font-weight: normal}
  55. ul.no-bullet {list-style: none}
  56. -->
  57. </style>
  58. </head>
  59. <body lang="en">
  60. <a name="Keyword-Index"></a>
  61. <div class="header">
  62. <p>
  63. 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>
  64. </div>
  65. <hr>
  66. <a name="Keyword-Index-1"></a>
  67. <h2 class="unnumbered">Keyword Index</h2>
  68. <table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Keyword-Index_cp_symbol-1"><b>#</b></a>
  69. &nbsp;
  70. <a class="summary-letter" href="#Keyword-Index_cp_symbol-2"><b>$</b></a>
  71. &nbsp;
  72. <a class="summary-letter" href="#Keyword-Index_cp_symbol-3"><b>%</b></a>
  73. &nbsp;
  74. <a class="summary-letter" href="#Keyword-Index_cp_symbol-4"><b>&amp;</b></a>
  75. &nbsp;
  76. <a class="summary-letter" href="#Keyword-Index_cp_symbol-5"><b>'</b></a>
  77. &nbsp;
  78. <a class="summary-letter" href="#Keyword-Index_cp_symbol-6"><b>*</b></a>
  79. &nbsp;
  80. <a class="summary-letter" href="#Keyword-Index_cp_symbol-7"><b>+</b></a>
  81. &nbsp;
  82. <a class="summary-letter" href="#Keyword-Index_cp_symbol-8"><b>-</b></a>
  83. &nbsp;
  84. <a class="summary-letter" href="#Keyword-Index_cp_symbol-9"><b>.</b></a>
  85. &nbsp;
  86. <a class="summary-letter" href="#Keyword-Index_cp_symbol-10"><b>/</b></a>
  87. &nbsp;
  88. <a class="summary-letter" href="#Keyword-Index_cp_symbol-11"><b>0</b></a>
  89. &nbsp;
  90. <a class="summary-letter" href="#Keyword-Index_cp_symbol-12"><b>&lt;</b></a>
  91. &nbsp;
  92. <a class="summary-letter" href="#Keyword-Index_cp_symbol-13"><b>=</b></a>
  93. &nbsp;
  94. <a class="summary-letter" href="#Keyword-Index_cp_symbol-14"><b>&gt;</b></a>
  95. &nbsp;
  96. <a class="summary-letter" href="#Keyword-Index_cp_symbol-15"><b>?</b></a>
  97. &nbsp;
  98. <a class="summary-letter" href="#Keyword-Index_cp_symbol-16"><b>_</b></a>
  99. &nbsp;
  100. <br>
  101. <a class="summary-letter" href="#Keyword-Index_cp_letter-A"><b>A</b></a>
  102. &nbsp;
  103. <a class="summary-letter" href="#Keyword-Index_cp_letter-B"><b>B</b></a>
  104. &nbsp;
  105. <a class="summary-letter" href="#Keyword-Index_cp_letter-C"><b>C</b></a>
  106. &nbsp;
  107. <a class="summary-letter" href="#Keyword-Index_cp_letter-D"><b>D</b></a>
  108. &nbsp;
  109. <a class="summary-letter" href="#Keyword-Index_cp_letter-E"><b>E</b></a>
  110. &nbsp;
  111. <a class="summary-letter" href="#Keyword-Index_cp_letter-F"><b>F</b></a>
  112. &nbsp;
  113. <a class="summary-letter" href="#Keyword-Index_cp_letter-G"><b>G</b></a>
  114. &nbsp;
  115. <a class="summary-letter" href="#Keyword-Index_cp_letter-H"><b>H</b></a>
  116. &nbsp;
  117. <a class="summary-letter" href="#Keyword-Index_cp_letter-I"><b>I</b></a>
  118. &nbsp;
  119. <a class="summary-letter" href="#Keyword-Index_cp_letter-J"><b>J</b></a>
  120. &nbsp;
  121. <a class="summary-letter" href="#Keyword-Index_cp_letter-K"><b>K</b></a>
  122. &nbsp;
  123. <a class="summary-letter" href="#Keyword-Index_cp_letter-L"><b>L</b></a>
  124. &nbsp;
  125. <a class="summary-letter" href="#Keyword-Index_cp_letter-M"><b>M</b></a>
  126. &nbsp;
  127. <a class="summary-letter" href="#Keyword-Index_cp_letter-N"><b>N</b></a>
  128. &nbsp;
  129. <a class="summary-letter" href="#Keyword-Index_cp_letter-O"><b>O</b></a>
  130. &nbsp;
  131. <a class="summary-letter" href="#Keyword-Index_cp_letter-P"><b>P</b></a>
  132. &nbsp;
  133. <a class="summary-letter" href="#Keyword-Index_cp_letter-Q"><b>Q</b></a>
  134. &nbsp;
  135. <a class="summary-letter" href="#Keyword-Index_cp_letter-R"><b>R</b></a>
  136. &nbsp;
  137. <a class="summary-letter" href="#Keyword-Index_cp_letter-S"><b>S</b></a>
  138. &nbsp;
  139. <a class="summary-letter" href="#Keyword-Index_cp_letter-T"><b>T</b></a>
  140. &nbsp;
  141. <a class="summary-letter" href="#Keyword-Index_cp_letter-U"><b>U</b></a>
  142. &nbsp;
  143. <a class="summary-letter" href="#Keyword-Index_cp_letter-V"><b>V</b></a>
  144. &nbsp;
  145. <a class="summary-letter" href="#Keyword-Index_cp_letter-W"><b>W</b></a>
  146. &nbsp;
  147. <a class="summary-letter" href="#Keyword-Index_cp_letter-X"><b>X</b></a>
  148. &nbsp;
  149. <a class="summary-letter" href="#Keyword-Index_cp_letter-Y"><b>Y</b></a>
  150. &nbsp;
  151. <a class="summary-letter" href="#Keyword-Index_cp_letter-Z"><b>Z</b></a>
  152. &nbsp;
  153. </td></tr></table>
  154. <table class="index-cp" border="0">
  155. <tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> Section</th></tr>
  156. <tr><td colspan="4"> <hr></td></tr>
  157. <tr><th><a name="Keyword-Index_cp_symbol-1">#</a></th><td></td><td></td></tr>
  158. <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>
  159. <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>
  160. <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>
  161. <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>
  162. <tr><td colspan="4"> <hr></td></tr>
  163. <tr><th><a name="Keyword-Index_cp_symbol-2">$</a></th><td></td><td></td></tr>
  164. <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>
  165. <tr><td colspan="4"> <hr></td></tr>
  166. <tr><th><a name="Keyword-Index_cp_symbol-3">%</a></th><td></td><td></td></tr>
  167. <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>
  168. <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>
  169. <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>
  170. <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>
  171. <tr><td colspan="4"> <hr></td></tr>
  172. <tr><th><a name="Keyword-Index_cp_symbol-4">&amp;</a></th><td></td><td></td></tr>
  173. <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>
  174. <tr><td colspan="4"> <hr></td></tr>
  175. <tr><th><a name="Keyword-Index_cp_symbol-5">'</a></th><td></td><td></td></tr>
  176. <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>
  177. <tr><td colspan="4"> <hr></td></tr>
  178. <tr><th><a name="Keyword-Index_cp_symbol-6">*</a></th><td></td><td></td></tr>
  179. <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>
  180. <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>
  181. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_002a_005f_005fbuiltin_005falloca_005fwith_005falign_005fand_005fmax"><code>*__builtin_alloca_with_align_and_max</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  182. <tr><td colspan="4"> <hr></td></tr>
  183. <tr><th><a name="Keyword-Index_cp_symbol-7">+</a></th><td></td><td></td></tr>
  184. <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>
  185. <tr><td colspan="4"> <hr></td></tr>
  186. <tr><th><a name="Keyword-Index_cp_symbol-8">-</a></th><td></td><td></td></tr>
  187. <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>
  188. <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>
  189. <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>
  190. <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>
  191. <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>
  192. <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>
  193. <tr><td colspan="4"> <hr></td></tr>
  194. <tr><th><a name="Keyword-Index_cp_symbol-9">.</a></th><td></td><td></td></tr>
  195. <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>
  196. <tr><td colspan="4"> <hr></td></tr>
  197. <tr><th><a name="Keyword-Index_cp_symbol-10">/</a></th><td></td><td></td></tr>
  198. <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>
  199. <tr><td colspan="4"> <hr></td></tr>
  200. <tr><th><a name="Keyword-Index_cp_symbol-11">0</a></th><td></td><td></td></tr>
  201. <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>
  202. <tr><td colspan="4"> <hr></td></tr>
  203. <tr><th><a name="Keyword-Index_cp_symbol-12">&lt;</a></th><td></td><td></td></tr>
  204. <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>
  205. <tr><td colspan="4"> <hr></td></tr>
  206. <tr><th><a name="Keyword-Index_cp_symbol-13">=</a></th><td></td><td></td></tr>
  207. <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>
  208. <tr><td colspan="4"> <hr></td></tr>
  209. <tr><th><a name="Keyword-Index_cp_symbol-14">&gt;</a></th><td></td><td></td></tr>
  210. <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>
  211. <tr><td colspan="4"> <hr></td></tr>
  212. <tr><th><a name="Keyword-Index_cp_symbol-15">?</a></th><td></td><td></td></tr>
  213. <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>
  214. <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>
  215. <tr><td colspan="4"> <hr></td></tr>
  216. <tr><th><a name="Keyword-Index_cp_symbol-16">_</a></th><td></td><td></td></tr>
  217. <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>
  218. <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>
  219. <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>
  220. <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>
  221. <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>
  222. <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>
  223. <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>
  224. <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>
  225. <tr><td></td><td valign="top"><a href="Floating-Types.html#index-_005fFloatn-data-types"><code>_Float<var>n</var></code> data types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
  226. <tr><td></td><td valign="top"><a href="Floating-Types.html#index-_005fFloatnx-data-types"><code>_Float<var>n</var>x</code> data types</a>:</td><td>&nbsp;</td><td valign="top"><a href="Floating-Types.html#Floating-Types">Floating Types</a></td></tr>
  227. <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>
  228. <tr><td></td><td valign="top"><a href="x86-control_002dflow-protection-intrinsics.html#index-_005fget_005fssp"><code>_get_ssp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-control_002dflow-protection-intrinsics.html#x86-control_002dflow-protection-intrinsics">x86 control-flow protection intrinsics</a></td></tr>
  229. <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>
  230. <tr><td></td><td valign="top"><a href="x86-control_002dflow-protection-intrinsics.html#index-_005finc_005fssp"><code>_inc_ssp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="x86-control_002dflow-protection-intrinsics.html#x86-control_002dflow-protection-intrinsics">x86 control-flow protection intrinsics</a></td></tr>
  231. <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>
  232. <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>
  233. <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>
  234. <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>
  235. <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>
  236. <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>
  237. <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>
  238. <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>
  239. <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>
  240. <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>
  241. <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>
  242. <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>
  243. <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>
  244. <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>
  245. <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>
  246. <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>
  247. <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>
  248. <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>
  249. <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>
  250. <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>
  251. <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>
  252. <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>
  253. <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>
  254. <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>
  255. <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>
  256. <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>
  257. <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>
  258. <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>
  259. <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>
  260. <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>
  261. <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>
  262. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#index-_005f_005fbuiltin_005faddf128_005fround_005fto_005fodd"><code>__builtin_addf128_round_to_odd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0">Basic PowerPC Built-in Functions Available on ISA 3.0</a></td></tr>
  263. <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>
  264. <tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fadd_005foverflow_005fp"><code>__builtin_add_overflow_p</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
  265. <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>
  266. <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>
  267. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005falloca_005fwith_005falign_005fand_005fmax"><code>__builtin_alloca_with_align_and_max</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  268. <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>
  269. <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>
  270. <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>
  271. <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>
  272. <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>
  273. <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>
  274. <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>
  275. <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>
  276. <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>
  277. <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>
  278. <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>
  279. <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>
  280. <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>
  281. <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>
  282. <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>
  283. <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>
  284. <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>
  285. <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>
  286. <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>
  287. <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>
  288. <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>
  289. <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>
  290. <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>
  291. <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>
  292. <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>
  293. <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>
  294. <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>
  295. <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>
  296. <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>
  297. <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>
  298. <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>
  299. <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>
  300. <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>
  301. <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>
  302. <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>
  303. <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>
  304. <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>
  305. <tr><td></td><td valign="top"><a href="Vector-Extensions.html#index-_005f_005fbuiltin_005fconvertvector"><code>__builtin_convertvector</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Extensions.html#Vector-Extensions">Vector Extensions</a></td></tr>
  306. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations.html#index-_005f_005fbuiltin_005fcpu_005finit"><code>__builtin_cpu_init</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations.html#Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations">Basic PowerPC Built-in Functions Available on all Configurations</a></td></tr>
  307. <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>
  308. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations.html#index-_005f_005fbuiltin_005fcpu_005fis"><code>__builtin_cpu_is</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations.html#Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations">Basic PowerPC Built-in Functions Available on all Configurations</a></td></tr>
  309. <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>
  310. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations.html#index-_005f_005fbuiltin_005fcpu_005fsupports"><code>__builtin_cpu_supports</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations.html#Basic-PowerPC-Built_002din-Functions-Available-on-all-Configurations">Basic PowerPC Built-in Functions Available on all Configurations</a></td></tr>
  311. <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>
  312. <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>
  313. <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>
  314. <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>
  315. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#index-_005f_005fbuiltin_005fdivf128_005fround_005fto_005fodd"><code>__builtin_divf128_round_to_odd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0">Basic PowerPC Built-in Functions Available on ISA 3.0</a></td></tr>
  316. <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>
  317. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fexpect_005fwith_005fprobability"><code>__builtin_expect_with_probability</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  318. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fextend_005fpointer"><code>__builtin_extend_pointer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  319. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fextend_005fpointer-1"><code>__builtin_extend_pointer</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  320. <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>
  321. <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>
  322. <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>
  323. <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>
  324. <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>
  325. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#index-_005f_005fbuiltin_005ffmaf128_005fround_005fto_005fodd"><code>__builtin_fmaf128_round_to_odd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0">Basic PowerPC Built-in Functions Available on ISA 3.0</a></td></tr>
  326. <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>
  327. <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>
  328. <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>
  329. <tr><td></td><td valign="top"><a href="Return-Address.html#index-_005f_005fbuiltin_005ffrob_005freturn_005faddr"><code>__builtin_frob_return_addr</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Return-Address.html#Return-Address">Return Address</a></td></tr>
  330. <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>
  331. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fgoacc_005fparlevel_005fid"><code>__builtin_goacc_parlevel_id</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  332. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fgoacc_005fparlevel_005fsize"><code>__builtin_goacc_parlevel_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  333. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fhas_005fattribute"><code>__builtin_has_attribute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  334. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fhas_005fattribute-1"><code>__builtin_has_attribute</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  335. <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>
  336. <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>
  337. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fhuge_005fvalfn"><code>__builtin_huge_valf<var>n</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  338. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fhuge_005fvalfnx"><code>__builtin_huge_valf<var>n</var>x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  339. <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>
  340. <tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005fhuge_005fvalq"><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>
  341. <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>
  342. <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>
  343. <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>
  344. <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>
  345. <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>
  346. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finffn"><code>__builtin_inff<var>n</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  347. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005finffnx"><code>__builtin_inff<var>n</var>x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  348. <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>
  349. <tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005finfq"><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>
  350. <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>
  351. <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>
  352. <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>
  353. <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>
  354. <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>
  355. <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>
  356. <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>
  357. <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>
  358. <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>
  359. <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>
  360. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fis_005fconstant_005fevaluated"><code>__builtin_is_constant_evaluated</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  361. <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>
  362. <tr><td></td><td valign="top"><a href="Nonlocal-Gotos.html#index-_005f_005fbuiltin_005flongjmp"><code>__builtin_longjmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlocal-Gotos.html#Nonlocal-Gotos">Nonlocal Gotos</a></td></tr>
  363. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#index-_005f_005fbuiltin_005fmulf128_005fround_005fto_005fodd"><code>__builtin_mulf128_round_to_odd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0">Basic PowerPC Built-in Functions Available on ISA 3.0</a></td></tr>
  364. <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>
  365. <tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fmul_005foverflow_005fp"><code>__builtin_mul_overflow_p</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
  366. <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>
  367. <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>
  368. <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>
  369. <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>
  370. <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>
  371. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnanfn"><code>__builtin_nanf<var>n</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  372. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnanfnx"><code>__builtin_nanf<var>n</var>x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  373. <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>
  374. <tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnanq"><code>__builtin_nanq</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>
  375. <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>
  376. <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>
  377. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnansfn"><code>__builtin_nansf<var>n</var></code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  378. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fnansfnx"><code>__builtin_nansf<var>n</var>x</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  379. <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>
  380. <tr><td></td><td valign="top"><a href="x86-Built_002din-Functions.html#index-_005f_005fbuiltin_005fnansq"><code>__builtin_nansq</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>
  381. <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>
  382. <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>
  383. <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>
  384. <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>
  385. <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>
  386. <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>
  387. <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>
  388. <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>
  389. <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>
  390. <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>
  391. <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>
  392. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fobject_005fsize-2"><code>__builtin_object_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  393. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fobject_005fsize-3"><code>__builtin_object_size</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  394. <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>
  395. <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>
  396. <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>
  397. <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>
  398. <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>
  399. <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>
  400. <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>
  401. <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>
  402. <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>
  403. <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>
  404. <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>
  405. <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>
  406. <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>
  407. <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>
  408. <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>
  409. <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>
  410. <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>
  411. <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>
  412. <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>
  413. <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>
  414. <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>
  415. <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>
  416. <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>
  417. <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>
  418. <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>
  419. <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>
  420. <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>
  421. <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>
  422. <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>
  423. <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>
  424. <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>
  425. <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>
  426. <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>
  427. <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>
  428. <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>
  429. <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>
  430. <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>
  431. <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>
  432. <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>
  433. <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>
  434. <tr><td></td><td valign="top"><a href="Nonlocal-Gotos.html#index-_005f_005fbuiltin_005fsetjmp"><code>__builtin_setjmp</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlocal-Gotos.html#Nonlocal-Gotos">Nonlocal Gotos</a></td></tr>
  435. <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>
  436. <tr><td></td><td valign="top"><a href="Vector-Extensions.html#index-_005f_005fbuiltin_005fshuffle"><code>__builtin_shuffle</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Extensions.html#Vector-Extensions">Vector Extensions</a></td></tr>
  437. <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>
  438. <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>
  439. <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>
  440. <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>
  441. <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>
  442. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fspeculation_005fsafe_005fvalue"><code>__builtin_speculation_safe_value</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  443. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005fspeculation_005fsafe_005fvalue-1"><code>__builtin_speculation_safe_value</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  444. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#index-_005f_005fbuiltin_005fsqrtf128_005fround_005fto_005fodd"><code>__builtin_sqrtf128_round_to_odd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0">Basic PowerPC Built-in Functions Available on ISA 3.0</a></td></tr>
  445. <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>
  446. <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>
  447. <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>
  448. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#index-_005f_005fbuiltin_005fsubf128_005fround_005fto_005fodd"><code>__builtin_subf128_round_to_odd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0">Basic PowerPC Built-in Functions Available on ISA 3.0</a></td></tr>
  449. <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>
  450. <tr><td></td><td valign="top"><a href="Integer-Overflow-Builtins.html#index-_005f_005fbuiltin_005fsub_005foverflow_005fp"><code>__builtin_sub_overflow_p</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Integer-Overflow-Builtins.html#Integer-Overflow-Builtins">Integer Overflow Builtins</a></td></tr>
  451. <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>
  452. <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>
  453. <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>
  454. <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>
  455. <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>
  456. <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>
  457. <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>
  458. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-_005f_005fbuiltin_005ftgmath"><code>__builtin_tgmath</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  459. <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>
  460. <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>
  461. <tr><td></td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#index-_005f_005fbuiltin_005ftruncf128_005fround_005fto_005fodd"><code>__builtin_truncf128_round_to_odd</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0.html#Basic-PowerPC-Built_002din-Functions-Available-on-ISA-3_002e0">Basic PowerPC Built-in Functions Available on ISA 3.0</a></td></tr>
  462. <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>
  463. <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>
  464. <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>
  465. <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>
  466. <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>
  467. <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>
  468. <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>
  469. <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>
  470. <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>
  471. <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>
  472. <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>
  473. <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>
  474. <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>
  475. <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>
  476. <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>
  477. <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>
  478. <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>
  479. <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>
  480. <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>
  481. <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>
  482. <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>
  483. <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>
  484. <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>
  485. <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>
  486. <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>
  487. <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>
  488. <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>
  489. <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>
  490. <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>
  491. <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>
  492. <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>
  493. <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>
  494. <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>
  495. <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>
  496. <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>
  497. <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>
  498. <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>
  499. <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>
  500. <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>
  501. <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>
  502. <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>
  503. <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>
  504. <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>
  505. <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>
  506. <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>
  507. <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>
  508. <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>
  509. <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>
  510. <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>
  511. <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>
  512. <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>
  513. <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>
  514. <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>
  515. <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>
  516. <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>
  517. <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>
  518. <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>
  519. <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>
  520. <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>
  521. <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>
  522. <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>
  523. <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>
  524. <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>
  525. <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>
  526. <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>
  527. <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>
  528. <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>
  529. <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>
  530. <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>
  531. <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>
  532. <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>
  533. <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>
  534. <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>
  535. <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>
  536. <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>
  537. <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>
  538. <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>
  539. <tr><td colspan="4"> <hr></td></tr>
  540. <tr><th><a name="Keyword-Index_cp_letter-A">A</a></th><td></td><td></td></tr>
  541. <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>
  542. <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>
  543. <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>
  544. <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>
  545. <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>
  546. <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>
  547. <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>
  548. <tr><td></td><td valign="top"><a href="AVR-Variable-Attributes.html#index-absdata-variable-attribute_002c-AVR"><code>absdata</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>
  549. <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>
  550. <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>
  551. <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>
  552. <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>
  553. <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>
  554. <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>
  555. <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>
  556. <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>
  557. <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>
  558. <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>
  559. <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>
  560. <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>
  561. <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>
  562. <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>
  563. <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>
  564. <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>
  565. <tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-alias-variable-attribute"><code>alias</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>
  566. <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>
  567. <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>
  568. <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>
  569. <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>
  570. <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>
  571. <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>
  572. <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>
  573. <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>
  574. <tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-alloc_005fsize-type-attribute"><code>alloc_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>
  575. <tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-alloc_005fsize-variable-attribute"><code>alloc_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>
  576. <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>
  577. <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>
  578. <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>
  579. <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>
  580. <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>
  581. <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>
  582. <tr><td></td><td valign="top"><a href="AMD-GCN-Options.html#index-AMD-GCN-Options">AMD GCN Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="AMD-GCN-Options.html#AMD-GCN-Options">AMD GCN Options</a></td></tr>
  583. <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>
  584. <tr><td></td><td valign="top"><a href="AMD-GCN-Function-Attributes.html#index-amdgpu_005fhsa_005fkernel-function-attribute_002c-AMD-GCN"><code>amdgpu_hsa_kernel</code> function attribute, AMD GCN</a>:</td><td>&nbsp;</td><td valign="top"><a href="AMD-GCN-Function-Attributes.html#AMD-GCN-Function-Attributes">AMD GCN Function Attributes</a></td></tr>
  585. <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>
  586. <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>
  587. <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>
  588. <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>
  589. <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>
  590. <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>
  591. <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>
  592. <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>
  593. <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>
  594. <tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-arch_003d-function-attribute_002c-ARM"><code>arch=</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>
  595. <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>
  596. <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>
  597. <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>
  598. <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>
  599. <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>
  600. <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>
  601. <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>
  602. <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>
  603. <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>
  604. <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>
  605. <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>
  606. <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>
  607. <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>
  608. <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>
  609. <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>
  610. <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>
  611. <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>
  612. <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>
  613. <tr><td></td><td valign="top"><a href="Size-of-an-asm.html#index-asm-inline"><code>asm inline</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Size-of-an-asm.html#Size-of-an-asm">Size of an asm</a></td></tr>
  614. <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>
  615. <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>
  616. <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>
  617. <tr><td></td><td valign="top"><a href="Extended-Asm.html#index-asm-scratch-registers"><code>asm</code> scratch registers</a>:</td><td>&nbsp;</td><td valign="top"><a href="Extended-Asm.html#Extended-Asm">Extended Asm</a></td></tr>
  618. <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>
  619. <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>
  620. <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>
  621. <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>
  622. <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>
  623. <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>
  624. <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>
  625. <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>
  626. <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>
  627. <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>
  628. <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>
  629. <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>
  630. <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>
  631. <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>
  632. <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>
  633. <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>
  634. <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>
  635. <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>
  636. <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>
  637. <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>
  638. <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>
  639. <tr><td></td><td valign="top"><a href="ARC-Variable-Attributes.html#index-aux-variable-attribute_002c-ARC"><code>aux</code> variable attribute, ARC</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Variable-Attributes.html#ARC-Variable-Attributes">ARC Variable Attributes</a></td></tr>
  640. <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>
  641. <tr><td colspan="4"> <hr></td></tr>
  642. <tr><th><a name="Keyword-Index_cp_letter-B">B</a></th><td></td><td></td></tr>
  643. <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>
  644. <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>
  645. <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>
  646. <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>
  647. <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>
  648. <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>
  649. <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>
  650. <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>
  651. <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>
  652. <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>
  653. <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>
  654. <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>
  655. <tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-branch_002dprotection-function-attribute_002c-AArch64"><code>branch-protection</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>
  656. <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>
  657. <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>
  658. <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>
  659. <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>
  660. <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>
  661. <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>
  662. <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>
  663. <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>
  664. <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>
  665. <tr><td colspan="4"> <hr></td></tr>
  666. <tr><th><a name="Keyword-Index_cp_letter-C">C</a></th><td></td><td></td></tr>
  667. <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>
  668. <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>
  669. <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>
  670. <tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-C-language_002c-traditional">C language, traditional</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
  671. <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>
  672. <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>
  673. <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>
  674. <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>
  675. <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>
  676. <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>
  677. <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>
  678. <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>
  679. <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>
  680. <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>
  681. <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>
  682. <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>
  683. <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>
  684. <tr><td></td><td valign="top"><a href="C_002dSKY-Options.html#index-C_002dSKY-Options">C-SKY Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002dSKY-Options.html#C_002dSKY-Options">C-SKY Options</a></td></tr>
  685. <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>
  686. <tr><td></td><td valign="top"><a href="Standards.html#index-C17">C17</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
  687. <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>
  688. <tr><td></td><td valign="top"><a href="Standards.html#index-C2X">C2X</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
  689. <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>
  690. <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>
  691. <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>
  692. <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>
  693. <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>
  694. <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>
  695. <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>
  696. <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>
  697. <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>
  698. <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>
  699. <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>
  700. <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>
  701. <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>
  702. <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>
  703. <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>
  704. <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>
  705. <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>
  706. <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>
  707. <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>
  708. <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>
  709. <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>
  710. <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>
  711. <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>
  712. <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>
  713. <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>
  714. <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>
  715. <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>
  716. <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>
  717. <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>
  718. <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>
  719. <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>
  720. <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>
  721. <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>
  722. <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>
  723. <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>
  724. <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>
  725. <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>
  726. <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>
  727. <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>
  728. <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>
  729. <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>
  730. <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>
  731. <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>
  732. <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>
  733. <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>
  734. <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>
  735. <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>
  736. <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>
  737. <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>
  738. <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>
  739. <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>
  740. <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>
  741. <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>
  742. <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>
  743. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-cf_005fcheck-function-attribute_002c-x86"><code>cf_check</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>
  744. <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>
  745. <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>
  746. <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>
  747. <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>
  748. <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>
  749. <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>
  750. <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>
  751. <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>
  752. <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>
  753. <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>
  754. <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>
  755. <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>
  756. <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>
  757. <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>
  758. <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>
  759. <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>
  760. <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>
  761. <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>
  762. <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>
  763. <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>
  764. <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>
  765. <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>
  766. <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>
  767. <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>
  768. <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>
  769. <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>
  770. <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>
  771. <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>
  772. <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>
  773. <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>
  774. <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>
  775. <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>
  776. <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>
  777. <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>
  778. <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>
  779. <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>
  780. <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>
  781. <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>
  782. <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>
  783. <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>
  784. <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>
  785. <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>
  786. <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>
  787. <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>
  788. <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>
  789. <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>
  790. <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>
  791. <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>
  792. <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>
  793. <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>
  794. <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>
  795. <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>
  796. <tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-copy-function-attribute"><code>copy</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>
  797. <tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-copy-type-attribute"><code>copy</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>
  798. <tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-copy-variable-attribute"><code>copy</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>
  799. <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>
  800. <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>
  801. <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>
  802. <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>
  803. <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>
  804. <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>
  805. <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>
  806. <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>
  807. <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>
  808. <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>
  809. <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>
  810. <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>
  811. <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>
  812. <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>
  813. <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>
  814. <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>
  815. <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>
  816. <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>
  817. <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>
  818. <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>
  819. <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>
  820. <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>
  821. <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>
  822. <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>
  823. <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>
  824. <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>
  825. <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>
  826. <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>
  827. <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>
  828. <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>
  829. <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>
  830. <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>
  831. <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>
  832. <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>
  833. <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>
  834. <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>
  835. <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>
  836. <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>
  837. <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>
  838. <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>
  839. <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>
  840. <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>
  841. <tr><td colspan="4"> <hr></td></tr>
  842. <tr><th><a name="Keyword-Index_cp_letter-D">D</a></th><td></td><td></td></tr>
  843. <tr><td></td><td valign="top"><a href="G_002b_002b-and-GCC.html#index-D">D</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>
  844. <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>
  845. <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>
  846. <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>
  847. <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>
  848. <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>
  849. <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>
  850. <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>
  851. <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>
  852. <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>
  853. <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>
  854. <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>
  855. <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>
  856. <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>
  857. <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>
  858. <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>
  859. <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>
  860. <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>
  861. <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>
  862. <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>
  863. <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>
  864. <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>
  865. <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>
  866. <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>
  867. <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>
  868. <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>
  869. <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>
  870. <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>
  871. <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>
  872. <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>
  873. <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>
  874. <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>
  875. <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>
  876. <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>
  877. <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>
  878. <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>
  879. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-diff_002ddelete-GCC_005fCOLORS-capability"><code>diff-delete 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>
  880. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-diff_002dfilename-GCC_005fCOLORS-capability"><code>diff-filename 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>
  881. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-diff_002dhunk-GCC_005fCOLORS-capability"><code>diff-hunk 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>
  882. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-diff_002dinsert-GCC_005fCOLORS-capability"><code>diff-insert 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>
  883. <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>
  884. <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>
  885. <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>
  886. <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>
  887. <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>
  888. <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>
  889. <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>
  890. <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>
  891. <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>
  892. <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>
  893. <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>
  894. <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>
  895. <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>
  896. <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>
  897. <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>
  898. <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>
  899. <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>
  900. <tr><td colspan="4"> <hr></td></tr>
  901. <tr><th><a name="Keyword-Index_cp_letter-E">E</a></th><td></td><td></td></tr>
  902. <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>
  903. <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>
  904. <tr><td></td><td valign="top"><a href="eBPF-Options.html#index-eBPF-Options">eBPF Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="eBPF-Options.html#eBPF-Options">eBPF Options</a></td></tr>
  905. <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>
  906. <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>
  907. <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>
  908. <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>
  909. <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>
  910. <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>
  911. <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>
  912. <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>
  913. <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>
  914. <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>
  915. <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>
  916. <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>
  917. <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>
  918. <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>
  919. <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>
  920. <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>
  921. <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>
  922. <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>
  923. <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>
  924. <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>
  925. <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>
  926. <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>
  927. <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>
  928. <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>
  929. <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>
  930. <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>
  931. <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>
  932. <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>
  933. <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>
  934. <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>
  935. <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>
  936. <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>
  937. <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>
  938. <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>
  939. <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>
  940. <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>
  941. <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>
  942. <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>
  943. <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>
  944. <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>
  945. <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>
  946. <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>
  947. <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>
  948. <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>
  949. <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>
  950. <tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-extra-NOP-instructions-at-the-function-entry-point">extra NOP instructions at the function entry point</a>:</td><td>&nbsp;</td><td valign="top"><a href="Common-Function-Attributes.html#Common-Function-Attributes">Common Function Attributes</a></td></tr>
  951. <tr><td colspan="4"> <hr></td></tr>
  952. <tr><th><a name="Keyword-Index_cp_letter-F">F</a></th><td></td><td></td></tr>
  953. <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>
  954. <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>
  955. <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>
  956. <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>
  957. <tr><td></td><td valign="top"><a href="Statement-Attributes.html#index-fallthrough-statement-attribute"><code>fallthrough</code> statement attribute</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statement-Attributes.html#Statement-Attributes">Statement Attributes</a></td></tr>
  958. <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>
  959. <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>
  960. <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>
  961. <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>
  962. <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>
  963. <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>
  964. <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>
  965. <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>
  966. <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>
  967. <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>
  968. <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>
  969. <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>
  970. <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>
  971. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-fentry_005fname-function-attribute_002c-x86"><code>fentry_name</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>
  972. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-fentry_005fsection-function-attribute_002c-x86"><code>fentry_section</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>
  973. <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>
  974. <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>
  975. <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>
  976. <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>
  977. <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>
  978. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-fixit_002ddelete-GCC_005fCOLORS-capability"><code>fixit-delete 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>
  979. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-fixit_002dinsert-GCC_005fCOLORS-capability"><code>fixit-insert 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>
  980. <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>
  981. <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>
  982. <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>
  983. <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>
  984. <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>
  985. <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>
  986. <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>
  987. <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>
  988. <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>
  989. <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>
  990. <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>
  991. <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>
  992. <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>
  993. <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>
  994. <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>
  995. <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>
  996. <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>
  997. <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>
  998. <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>
  999. <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>
  1000. <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>
  1001. <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>
  1002. <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>
  1003. <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>
  1004. <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>
  1005. <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>
  1006. <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>
  1007. <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>
  1008. <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>
  1009. <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>
  1010. <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>
  1011. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-free"><code>free</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  1012. <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>
  1013. <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>
  1014. <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>
  1015. <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>
  1016. <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>
  1017. <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>
  1018. <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>
  1019. <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>
  1020. <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>
  1021. <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>
  1022. <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>
  1023. <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>
  1024. <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>
  1025. <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>
  1026. <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>
  1027. <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>
  1028. <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>
  1029. <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>
  1030. <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>
  1031. <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>
  1032. <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>
  1033. <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>
  1034. <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>
  1035. <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>
  1036. <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>
  1037. <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>
  1038. <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>
  1039. <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>
  1040. <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>
  1041. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-function_005freturn-function-attribute_002c-x86"><code>function_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>
  1042. <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>
  1043. <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>
  1044. <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>
  1045. <tr><td colspan="4"> <hr></td></tr>
  1046. <tr><th><a name="Keyword-Index_cp_letter-G">G</a></th><td></td><td></td></tr>
  1047. <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>
  1048. <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>
  1049. <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>
  1050. <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>
  1051. <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>
  1052. <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>
  1053. <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>
  1054. <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>
  1055. <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>
  1056. <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>
  1057. <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>
  1058. <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>
  1059. <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>
  1060. <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>
  1061. <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>
  1062. <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>
  1063. <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>
  1064. <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>
  1065. <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>
  1066. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-GCC_005fURLS-environment-variable"><code>GCC_URLS <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>
  1067. <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>
  1068. <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>
  1069. <tr><td></td><td valign="top"><a href="ARM-Function-Attributes.html#index-general_002dregs_002donly-function-attribute_002c-ARM"><code>general-regs-only</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>
  1070. <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>
  1071. <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>
  1072. <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>
  1073. <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>
  1074. <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>
  1075. <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>
  1076. <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>
  1077. <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>
  1078. <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>
  1079. <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>
  1080. <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>
  1081. <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>
  1082. <tr><td colspan="4"> <hr></td></tr>
  1083. <tr><th><a name="Keyword-Index_cp_letter-H">H</a></th><td></td><td></td></tr>
  1084. <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>
  1085. <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>
  1086. <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>
  1087. <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>
  1088. <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>
  1089. <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>
  1090. <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>
  1091. <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>
  1092. <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>
  1093. <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>
  1094. <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>
  1095. <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>
  1096. <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>
  1097. <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>
  1098. <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>
  1099. <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>
  1100. <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>
  1101. <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>
  1102. <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>
  1103. <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>
  1104. <tr><td colspan="4"> <hr></td></tr>
  1105. <tr><th><a name="Keyword-Index_cp_letter-I">I</a></th><td></td><td></td></tr>
  1106. <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>
  1107. <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>
  1108. <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>
  1109. <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>
  1110. <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>
  1111. <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>
  1112. <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>
  1113. <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>
  1114. <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>
  1115. <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>
  1116. <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>
  1117. <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>
  1118. <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>
  1119. <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>
  1120. <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>
  1121. <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>
  1122. <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>
  1123. <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>
  1124. <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>
  1125. <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>
  1126. <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>
  1127. <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>
  1128. <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>
  1129. <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>
  1130. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-indirect_005fbranch-function-attribute_002c-x86"><code>indirect_branch</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>
  1131. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-indirect_005freturn-function-attribute_002c-x86"><code>indirect_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>
  1132. <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>
  1133. <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>
  1134. <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>
  1135. <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>
  1136. <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>
  1137. <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>
  1138. <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>
  1139. <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>
  1140. <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>
  1141. <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>
  1142. <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>
  1143. <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>
  1144. <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>
  1145. <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>
  1146. <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>
  1147. <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>
  1148. <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>
  1149. <tr><td></td><td valign="top"><a href="C_002dSKY-Function-Attributes.html#index-interrupt-function-attribute_002c-C_002dSKY"><code>interrupt</code> function attribute, C-SKY</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002dSKY-Function-Attributes.html#C_002dSKY-Function-Attributes">C-SKY Function Attributes</a></td></tr>
  1150. <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>
  1151. <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>
  1152. <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>
  1153. <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>
  1154. <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>
  1155. <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>
  1156. <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>
  1157. <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>
  1158. <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>
  1159. <tr><td></td><td valign="top"><a href="RISC_002dV-Function-Attributes.html#index-interrupt-function-attribute_002c-RISC_002dV"><code>interrupt</code> function attribute, RISC-V</a>:</td><td>&nbsp;</td><td valign="top"><a href="RISC_002dV-Function-Attributes.html#RISC_002dV-Function-Attributes">RISC-V Function Attributes</a></td></tr>
  1160. <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>
  1161. <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>
  1162. <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>
  1163. <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>
  1164. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-interrupt-function-attribute_002c-x86"><code>interrupt</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>
  1165. <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>
  1166. <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>
  1167. <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>
  1168. <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>
  1169. <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>
  1170. <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>
  1171. <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>
  1172. <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>
  1173. <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>
  1174. <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>
  1175. <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>
  1176. <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>
  1177. <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>
  1178. <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>
  1179. <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>
  1180. <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>
  1181. <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>
  1182. <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>
  1183. <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>
  1184. <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>
  1185. <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>
  1186. <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>
  1187. <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>
  1188. <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>
  1189. <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>
  1190. <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>
  1191. <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>
  1192. <tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C17">ISO C17</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
  1193. <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>
  1194. <tr><td></td><td valign="top"><a href="Standards.html#index-ISO-C2X">ISO C2X</a>:</td><td>&nbsp;</td><td valign="top"><a href="Standards.html#Standards">Standards</a></td></tr>
  1195. <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>
  1196. <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>
  1197. <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>
  1198. <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>
  1199. <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>
  1200. <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>
  1201. <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>
  1202. <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>
  1203. <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>
  1204. <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>
  1205. <tr><td></td><td valign="top"><a href="C_002dSKY-Function-Attributes.html#index-isr-function-attribute_002c-C_002dSKY"><code>isr</code> function attribute, C-SKY</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002dSKY-Function-Attributes.html#C_002dSKY-Function-Attributes">C-SKY Function Attributes</a></td></tr>
  1206. <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>
  1207. <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>
  1208. <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>
  1209. <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>
  1210. <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>
  1211. <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>
  1212. <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>
  1213. <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>
  1214. <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>
  1215. <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>
  1216. <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>
  1217. <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>
  1218. <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>
  1219. <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>
  1220. <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>
  1221. <tr><td colspan="4"> <hr></td></tr>
  1222. <tr><th><a name="Keyword-Index_cp_letter-J">J</a></th><td></td><td></td></tr>
  1223. <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>
  1224. <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>
  1225. <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>
  1226. <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>
  1227. <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>
  1228. <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>
  1229. <tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-jli_005falways-function-attribute_002c-ARC"><code>jli_always</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>
  1230. <tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-jli_005ffixed-function-attribute_002c-ARC"><code>jli_fixed</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>
  1231. <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>
  1232. <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>
  1233. <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>
  1234. <tr><td colspan="4"> <hr></td></tr>
  1235. <tr><th><a name="Keyword-Index_cp_letter-K">K</a></th><td></td><td></td></tr>
  1236. <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>
  1237. <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>
  1238. <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>
  1239. <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>
  1240. <tr><td></td><td valign="top"><a href="BPF-Function-Attributes.html#index-kernel-helper_002c-function-attribute_002c-BPF"><code>kernel helper</code>, function attribute, BPF</a>:</td><td>&nbsp;</td><td valign="top"><a href="BPF-Function-Attributes.html#BPF-Function-Attributes">BPF Function Attributes</a></td></tr>
  1241. <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>
  1242. <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>
  1243. <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>
  1244. <tr><td colspan="4"> <hr></td></tr>
  1245. <tr><th><a name="Keyword-Index_cp_letter-L">L</a></th><td></td><td></td></tr>
  1246. <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>
  1247. <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>
  1248. <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>
  1249. <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>
  1250. <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>
  1251. <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>
  1252. <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>
  1253. <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>
  1254. <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>
  1255. <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>
  1256. <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>
  1257. <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>
  1258. <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>
  1259. <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>
  1260. <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>
  1261. <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>
  1262. <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>
  1263. <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>
  1264. <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>
  1265. <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>
  1266. <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>
  1267. <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>
  1268. <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>
  1269. <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>
  1270. <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>
  1271. <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>
  1272. <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>
  1273. <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>
  1274. <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>
  1275. <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>
  1276. <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>
  1277. <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>
  1278. <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>
  1279. <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>
  1280. <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>
  1281. <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>
  1282. <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>
  1283. <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>
  1284. <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>
  1285. <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>
  1286. <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>
  1287. <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>
  1288. <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>
  1289. <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>
  1290. <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>
  1291. <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>
  1292. <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>
  1293. <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>
  1294. <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>
  1295. <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>
  1296. <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>
  1297. <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>
  1298. <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>
  1299. <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>
  1300. <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>
  1301. <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>
  1302. <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>
  1303. <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>
  1304. <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>
  1305. <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>
  1306. <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>
  1307. <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>
  1308. <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>
  1309. <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>
  1310. <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>
  1311. <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>
  1312. <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>
  1313. <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>
  1314. <tr><td></td><td valign="top"><a href="BPF-Built_002din-Functions.html#index-long"><code>long</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="BPF-Built_002din-Functions.html#BPF-Built_002din-Functions">BPF Built-in Functions</a></td></tr>
  1315. <tr><td></td><td valign="top"><a href="BPF-Built_002din-Functions.html#index-long-1"><code>long</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="BPF-Built_002din-Functions.html#BPF-Built_002din-Functions">BPF Built-in Functions</a></td></tr>
  1316. <tr><td></td><td valign="top"><a href="BPF-Built_002din-Functions.html#index-long-2"><code>long</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="BPF-Built_002din-Functions.html#BPF-Built_002din-Functions">BPF Built-in Functions</a></td></tr>
  1317. <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>
  1318. <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>
  1319. <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>
  1320. <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>
  1321. <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>
  1322. <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>
  1323. <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>
  1324. <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>
  1325. <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>
  1326. <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>
  1327. <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>
  1328. <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>
  1329. <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>
  1330. <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>
  1331. <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>
  1332. <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>
  1333. <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>
  1334. <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>
  1335. <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>
  1336. <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>
  1337. <tr><td colspan="4"> <hr></td></tr>
  1338. <tr><th><a name="Keyword-Index_cp_letter-M">M</a></th><td></td><td></td></tr>
  1339. <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>
  1340. <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>
  1341. <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>
  1342. <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>
  1343. <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>
  1344. <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>
  1345. <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>
  1346. <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>
  1347. <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>
  1348. <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>
  1349. <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>
  1350. <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>
  1351. <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>
  1352. <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>
  1353. <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>
  1354. <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>
  1355. <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>
  1356. <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>
  1357. <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>
  1358. <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>
  1359. <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>
  1360. <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>
  1361. <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>
  1362. <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>
  1363. <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>
  1364. <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>
  1365. <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>
  1366. <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>
  1367. <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>
  1368. <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>
  1369. <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>
  1370. <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>
  1371. <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>
  1372. <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>
  1373. <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>
  1374. <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>
  1375. <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>
  1376. <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>
  1377. <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>
  1378. <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>
  1379. <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>
  1380. <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>
  1381. <tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-mode-type-attribute"><code>mode</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>
  1382. <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>
  1383. <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>
  1384. <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>
  1385. <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>
  1386. <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>
  1387. <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>
  1388. <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>
  1389. <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>
  1390. <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>
  1391. <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>
  1392. <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>
  1393. <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>
  1394. <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>
  1395. <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>
  1396. <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>
  1397. <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>
  1398. <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>
  1399. <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>
  1400. <tr><td colspan="4"> <hr></td></tr>
  1401. <tr><th><a name="Keyword-Index_cp_letter-N">N</a></th><td></td><td></td></tr>
  1402. <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>
  1403. <tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-naked-function-attribute_002c-ARC"><code>naked</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>
  1404. <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>
  1405. <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>
  1406. <tr><td></td><td valign="top"><a href="C_002dSKY-Function-Attributes.html#index-naked-function-attribute_002c-C_002dSKY"><code>naked</code> function attribute, C-SKY</a>:</td><td>&nbsp;</td><td valign="top"><a href="C_002dSKY-Function-Attributes.html#C_002dSKY-Function-Attributes">C-SKY Function Attributes</a></td></tr>
  1407. <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>
  1408. <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>
  1409. <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>
  1410. <tr><td></td><td valign="top"><a href="RISC_002dV-Function-Attributes.html#index-naked-function-attribute_002c-RISC_002dV"><code>naked</code> function attribute, RISC-V</a>:</td><td>&nbsp;</td><td valign="top"><a href="RISC_002dV-Function-Attributes.html#RISC_002dV-Function-Attributes">RISC-V Function Attributes</a></td></tr>
  1411. <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>
  1412. <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>
  1413. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-naked-function-attribute_002c-x86"><code>naked</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>
  1414. <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>
  1415. <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>
  1416. <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>
  1417. <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>
  1418. <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>
  1419. <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>
  1420. <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>
  1421. <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>
  1422. <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>
  1423. <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>
  1424. <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>
  1425. <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>
  1426. <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>
  1427. <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>
  1428. <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>
  1429. <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>
  1430. <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>
  1431. <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>
  1432. <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>
  1433. <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>
  1434. <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>
  1435. <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>
  1436. <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>
  1437. <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>
  1438. <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>
  1439. <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>
  1440. <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>
  1441. <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>
  1442. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-nocf_005fcheck-function-attribute"><code>nocf_check</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>
  1443. <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>
  1444. <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>
  1445. <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>
  1446. <tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-noinit-variable-attribute"><code>noinit</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>
  1447. <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>
  1448. <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>
  1449. <tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-noipa-function-attribute"><code>noipa</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>
  1450. <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>
  1451. <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>
  1452. <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>
  1453. <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>
  1454. <tr><td></td><td valign="top"><a href="Nonlocal-Gotos.html#index-nonlocal-gotos">nonlocal gotos</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nonlocal-Gotos.html#Nonlocal-Gotos">Nonlocal Gotos</a></td></tr>
  1455. <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>
  1456. <tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-nonstring-variable-attribute"><code>nonstring</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>
  1457. <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>
  1458. <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>
  1459. <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>
  1460. <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>
  1461. <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>
  1462. <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>
  1463. <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>
  1464. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-no_005fcaller_005fsaved_005fregisters-function-attribute_002c-x86"><code>no_caller_saved_registers</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>
  1465. <tr><td></td><td valign="top"><a href="AVR-Function-Attributes.html#index-no_005fgccisr-function-attribute_002c-AVR"><code>no_gccisr</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>
  1466. <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>
  1467. <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>
  1468. <tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005fprofile_005finstrument_005ffunction-function-attribute"><code>no_profile_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>
  1469. <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>
  1470. <tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-no_005fsanitize-function-attribute"><code>no_sanitize</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>
  1471. <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>
  1472. <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>
  1473. <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>
  1474. <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>
  1475. <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>
  1476. <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>
  1477. <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>
  1478. <tr><td colspan="4"> <hr></td></tr>
  1479. <tr><th><a name="Keyword-Index_cp_letter-O">O</a></th><td></td><td></td></tr>
  1480. <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>
  1481. <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>
  1482. <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>
  1483. <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>
  1484. <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>
  1485. <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>
  1486. <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>
  1487. <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>
  1488. <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>
  1489. <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>
  1490. <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>
  1491. <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>
  1492. <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>
  1493. <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>
  1494. <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>
  1495. <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>
  1496. <tr><td></td><td valign="top"><a href="OpenRISC-Options.html#index-OpenRISC-Options">OpenRISC Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="OpenRISC-Options.html#OpenRISC-Options">OpenRISC Options</a></td></tr>
  1497. <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>
  1498. <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>
  1499. <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>
  1500. <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>
  1501. <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>
  1502. <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>
  1503. <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>
  1504. <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>
  1505. <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>
  1506. <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>
  1507. <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>
  1508. <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>
  1509. <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>
  1510. <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>
  1511. <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>
  1512. <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>
  1513. <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>
  1514. <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>
  1515. <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>
  1516. <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>
  1517. <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>
  1518. <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>
  1519. <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>
  1520. <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>
  1521. <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>
  1522. <tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-outline_002datomics-function-attribute_002c-AArch64"><code>outline-atomics</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>
  1523. <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>
  1524. <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>
  1525. <tr><td colspan="4"> <hr></td></tr>
  1526. <tr><th><a name="Keyword-Index_cp_letter-P">P</a></th><td></td><td></td></tr>
  1527. <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>
  1528. <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>
  1529. <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>
  1530. <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>
  1531. <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>
  1532. <tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-patchable_005ffunction_005fentry-function-attribute"><code>patchable_function_entry</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>
  1533. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-path-GCC_005fCOLORS-capability"><code>path 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>
  1534. <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>
  1535. <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>
  1536. <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>
  1537. <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>
  1538. <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>
  1539. <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>
  1540. <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>
  1541. <tr><td></td><td valign="top"><a href="Variadic-Pointer-Args.html#index-pointer-arguments-in-variadic-functions">pointer arguments in variadic functions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variadic-Pointer-Args.html#Variadic-Pointer-Args">Variadic Pointer Args</a></td></tr>
  1542. <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>
  1543. <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>
  1544. <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>
  1545. <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>
  1546. <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>
  1547. <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>
  1548. <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>
  1549. <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>
  1550. <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>
  1551. <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>
  1552. <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>
  1553. <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>
  1554. <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>
  1555. <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>
  1556. <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>
  1557. <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>
  1558. <tr><td></td><td valign="top"><a href="Loop_002dSpecific-Pragmas.html#index-pragma-GCC-unroll-n">pragma GCC unroll <var>n</var></a>:</td><td>&nbsp;</td><td valign="top"><a href="Loop_002dSpecific-Pragmas.html#Loop_002dSpecific-Pragmas">Loop-Specific Pragmas</a></td></tr>
  1559. <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>
  1560. <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>
  1561. <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>
  1562. <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>
  1563. <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>
  1564. <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>
  1565. <tr><td></td><td valign="top"><a href="PRU-Pragmas.html#index-pragma_002c-ctable_005fentry">pragma, ctable_entry</a>:</td><td>&nbsp;</td><td valign="top"><a href="PRU-Pragmas.html#PRU-Pragmas">PRU Pragmas</a></td></tr>
  1566. <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>
  1567. <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>
  1568. <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>
  1569. <tr><td></td><td valign="top"><a href="Diagnostic-Pragmas.html#index-pragma_002c-diagnostic-2">pragma, diagnostic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Pragmas.html#Diagnostic-Pragmas">Diagnostic Pragmas</a></td></tr>
  1570. <tr><td></td><td valign="top"><a href="Diagnostic-Pragmas.html#index-pragma_002c-diagnostic-3">pragma, diagnostic</a>:</td><td>&nbsp;</td><td valign="top"><a href="Diagnostic-Pragmas.html#Diagnostic-Pragmas">Diagnostic Pragmas</a></td></tr>
  1571. <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>
  1572. <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>
  1573. <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>
  1574. <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>
  1575. <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>
  1576. <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>
  1577. <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>
  1578. <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>
  1579. <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>
  1580. <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>
  1581. <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>
  1582. <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>
  1583. <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>
  1584. <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>
  1585. <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>
  1586. <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>
  1587. <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>
  1588. <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>
  1589. <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>
  1590. <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>
  1591. <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>
  1592. <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>
  1593. <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>
  1594. <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>
  1595. <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>
  1596. <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>
  1597. <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>
  1598. <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>
  1599. <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>
  1600. <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>
  1601. <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>
  1602. <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>
  1603. <tr><td></td><td valign="top"><a href="PRU-Options.html#index-PRU-Options">PRU Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="PRU-Options.html#PRU-Options">PRU Options</a></td></tr>
  1604. <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>
  1605. <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>
  1606. <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>
  1607. <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>
  1608. <tr><td colspan="4"> <hr></td></tr>
  1609. <tr><th><a name="Keyword-Index_cp_letter-Q">Q</a></th><td></td><td></td></tr>
  1610. <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>
  1611. <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>
  1612. <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>
  1613. <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>
  1614. <tr><td colspan="4"> <hr></td></tr>
  1615. <tr><th><a name="Keyword-Index_cp_letter-R">R</a></th><td></td><td></td></tr>
  1616. <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>
  1617. <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>
  1618. <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>
  1619. <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>
  1620. <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>
  1621. <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>
  1622. <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>
  1623. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-range1-GCC_005fCOLORS-capability"><code>range1 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>
  1624. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-range2-GCC_005fCOLORS-capability"><code>range2 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>
  1625. <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>
  1626. <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>
  1627. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-realloc"><code>realloc</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  1628. <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>
  1629. <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>
  1630. <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>
  1631. <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>
  1632. <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>
  1633. <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>
  1634. <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>
  1635. <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>
  1636. <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>
  1637. <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>
  1638. <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>
  1639. <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>
  1640. <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>
  1641. <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>
  1642. <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>
  1643. <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>
  1644. <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>
  1645. <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>
  1646. <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>
  1647. <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>
  1648. <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>
  1649. <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>
  1650. <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>
  1651. <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>
  1652. <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>
  1653. <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>
  1654. <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>
  1655. <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>
  1656. <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>
  1657. <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>
  1658. <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>
  1659. <tr><td></td><td valign="top"><a href="RISC_002dV-Options.html#index-RISC_002dV-Options">RISC-V Options</a>:</td><td>&nbsp;</td><td valign="top"><a href="RISC_002dV-Options.html#RISC_002dV-Options">RISC-V Options</a></td></tr>
  1660. <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>
  1661. <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>
  1662. <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>
  1663. <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>
  1664. <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>
  1665. <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>
  1666. <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>
  1667. <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>
  1668. <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>
  1669. <tr><td colspan="4"> <hr></td></tr>
  1670. <tr><th><a name="Keyword-Index_cp_letter-S">S</a></th><td></td><td></td></tr>
  1671. <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>
  1672. <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>
  1673. <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>
  1674. <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>
  1675. <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>
  1676. <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>
  1677. <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>
  1678. <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>
  1679. <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>
  1680. <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>
  1681. <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>
  1682. <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>
  1683. <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>
  1684. <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>
  1685. <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>
  1686. <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>
  1687. <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>
  1688. <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>
  1689. <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>
  1690. <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>
  1691. <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>
  1692. <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>
  1693. <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>
  1694. <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>
  1695. <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>
  1696. <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>
  1697. <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>
  1698. <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>
  1699. <tr><td></td><td valign="top"><a href="ARC-Function-Attributes.html#index-secure_005fcall-function-attribute_002c-ARC"><code>secure_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>
  1700. <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>
  1701. <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>
  1702. <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>
  1703. <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>
  1704. <tr><td></td><td valign="top"><a href="Nvidia-PTX-Variable-Attributes.html#index-shared-attribute_002c-Nvidia-PTX"><code>shared</code> attribute, Nvidia PTX</a>:</td><td>&nbsp;</td><td valign="top"><a href="Nvidia-PTX-Variable-Attributes.html#Nvidia-PTX-Variable-Attributes">Nvidia PTX Variable Attributes</a></td></tr>
  1705. <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>
  1706. <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>
  1707. <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>
  1708. <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>
  1709. <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>
  1710. <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>
  1711. <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>
  1712. <tr><td></td><td valign="top"><a href="MIPS-Function-Attributes.html#index-short_005fcall-function-attribute_002c-MIPS"><code>short_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>
  1713. <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>
  1714. <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>
  1715. <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>
  1716. <tr><td></td><td valign="top"><a href="AArch64-Function-Attributes.html#index-sign_002dreturn_002daddress-function-attribute_002c-AArch64"><code>sign-return-address</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>
  1717. <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>
  1718. <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>
  1719. <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>
  1720. <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>
  1721. <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>
  1722. <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>
  1723. <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>
  1724. <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>
  1725. <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>
  1726. <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>
  1727. <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>
  1728. <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>
  1729. <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>
  1730. <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>
  1731. <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>
  1732. <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>
  1733. <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>
  1734. <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>
  1735. <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>
  1736. <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>
  1737. <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>
  1738. <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>
  1739. <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>
  1740. <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>
  1741. <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>
  1742. <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>
  1743. <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>
  1744. <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>
  1745. <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>
  1746. <tr><td></td><td valign="top"><a href="Environment-Variables.html#index-SOURCE_005fDATE_005fEPOCH"><code>SOURCE_DATE_EPOCH</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Environment-Variables.html#Environment-Variables">Environment Variables</a></td></tr>
  1747. <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>
  1748. <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>
  1749. <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>
  1750. <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>
  1751. <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>
  1752. <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>
  1753. <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>
  1754. <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>
  1755. <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>
  1756. <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>
  1757. <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>
  1758. <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>
  1759. <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>
  1760. <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>
  1761. <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>
  1762. <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>
  1763. <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>
  1764. <tr><td></td><td valign="top"><a href="Statement-Attributes.html#index-Statement-Attributes">Statement Attributes</a>:</td><td>&nbsp;</td><td valign="top"><a href="Statement-Attributes.html#Statement-Attributes">Statement Attributes</a></td></tr>
  1765. <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>
  1766. <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>
  1767. <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>
  1768. <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>
  1769. <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>
  1770. <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>
  1771. <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>
  1772. <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>
  1773. <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>
  1774. <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>
  1775. <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>
  1776. <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>
  1777. <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>
  1778. <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>
  1779. <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>
  1780. <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>
  1781. <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>
  1782. <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>
  1783. <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>
  1784. <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>
  1785. <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>
  1786. <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>
  1787. <tr><td></td><td valign="top"><a href="Other-Builtins.html#index-strnlen"><code>strnlen</code></a>:</td><td>&nbsp;</td><td valign="top"><a href="Other-Builtins.html#Other-Builtins">Other Builtins</a></td></tr>
  1788. <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>
  1789. <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>
  1790. <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>
  1791. <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>
  1792. <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>
  1793. <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>
  1794. <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>
  1795. <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>
  1796. <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>
  1797. <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>
  1798. <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>
  1799. <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>
  1800. <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>
  1801. <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>
  1802. <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>
  1803. <tr><td></td><td valign="top"><a href="Common-Function-Attributes.html#index-symver-function-attribute"><code>symver</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>
  1804. <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>
  1805. <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>
  1806. <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>
  1807. <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>
  1808. <tr><td colspan="4"> <hr></td></tr>
  1809. <tr><th><a name="Keyword-Index_cp_letter-T">T</a></th><td></td><td></td></tr>
  1810. <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>
  1811. <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>
  1812. <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>
  1813. <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>
  1814. <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>
  1815. <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>
  1816. <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>
  1817. <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>
  1818. <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>
  1819. <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>
  1820. <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>
  1821. <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>
  1822. <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>
  1823. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_00223dnow_0022_0029-function-attribute_002c-x86"><code>target(&quot;3dnow&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>
  1824. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_00223dnowa_0022_0029-function-attribute_002c-x86"><code>target(&quot;3dnowa&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>
  1825. <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>
  1826. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022adx_0022_0029-function-attribute_002c-x86"><code>target(&quot;adx&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>
  1827. <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>
  1828. <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>
  1829. <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>
  1830. <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>
  1831. <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>
  1832. <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>
  1833. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx&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>
  1834. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx2_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx2&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>
  1835. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx5124fmaps_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx5124fmaps&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>
  1836. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx5124vnniw_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx5124vnniw&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>
  1837. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512bitalg_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512bitalg&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>
  1838. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512bw_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512bw&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>
  1839. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512cd_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512cd&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>
  1840. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512dq_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512dq&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>
  1841. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512er_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512er&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>
  1842. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512f_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512f&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>
  1843. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512ifma_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512ifma&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>
  1844. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512pf_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512pf&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>
  1845. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512vbmi_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512vbmi&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>
  1846. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512vbmi2_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512vbmi2&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>
  1847. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512vl_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512vl&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>
  1848. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512vnni_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512vnni&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>
  1849. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022avx512vpopcntdq_0022_0029-function-attribute_002c-x86"><code>target(&quot;avx512vpopcntdq&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>
  1850. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022bmi_0022_0029-function-attribute_002c-x86"><code>target(&quot;bmi&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>
  1851. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022bmi2_0022_0029-function-attribute_002c-x86"><code>target(&quot;bmi2&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>
  1852. <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>
  1853. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022cldemote_0022_0029-function-attribute_002c-x86"><code>target(&quot;cldemote&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>
  1854. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022clflushopt_0022_0029-function-attribute_002c-x86"><code>target(&quot;clflushopt&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>
  1855. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022clwb_0022_0029-function-attribute_002c-x86"><code>target(&quot;clwb&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>
  1856. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022clzero_0022_0029-function-attribute_002c-x86"><code>target(&quot;clzero&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>
  1857. <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>
  1858. <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>
  1859. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022crc32_0022_0029-function-attribute_002c-x86"><code>target(&quot;crc32&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>
  1860. <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>
  1861. <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>
  1862. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022cx16_0022_0029-function-attribute_002c-x86"><code>target(&quot;cx16&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>
  1863. <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>
  1864. <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>
  1865. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022f16c_0022_0029-function-attribute_002c-x86"><code>target(&quot;f16c&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>
  1866. <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>
  1867. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022fma_0022_0029-function-attribute_002c-x86"><code>target(&quot;fma&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>
  1868. <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>
  1869. <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>
  1870. <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>
  1871. <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>
  1872. <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>
  1873. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022fsgsbase_0022_0029-function-attribute_002c-x86"><code>target(&quot;fsgsbase&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>
  1874. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022fxsr_0022_0029-function-attribute_002c-x86"><code>target(&quot;fxsr&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>
  1875. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022gfni_0022_0029-function-attribute_002c-x86"><code>target(&quot;gfni&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>
  1876. <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>
  1877. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022hle_0022_0029-function-attribute_002c-x86"><code>target(&quot;hle&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>
  1878. <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>
  1879. <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>
  1880. <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>
  1881. <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>
  1882. <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>
  1883. <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>
  1884. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022lzcnt_0022_0029-function-attribute_002c-x86"><code>target(&quot;lzcnt&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>
  1885. <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>
  1886. <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>
  1887. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022movbe_0022_0029-function-attribute_002c-x86"><code>target(&quot;movbe&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>
  1888. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022movdir64b_0022_0029-function-attribute_002c-x86"><code>target(&quot;movdir64b&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>
  1889. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022movdiri_0022_0029-function-attribute_002c-x86"><code>target(&quot;movdiri&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>
  1890. <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>
  1891. <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>
  1892. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022mwaitx_0022_0029-function-attribute_002c-x86"><code>target(&quot;mwaitx&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>
  1893. <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>
  1894. <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>
  1895. <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>
  1896. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022pconfig_0022_0029-function-attribute_002c-x86"><code>target(&quot;pconfig&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>
  1897. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022pku_0022_0029-function-attribute_002c-x86"><code>target(&quot;pku&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>
  1898. <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>
  1899. <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>
  1900. <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>
  1901. <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>
  1902. <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>
  1903. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022prefetchwt1_0022_0029-function-attribute_002c-x86"><code>target(&quot;prefetchwt1&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>
  1904. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022prfchw_0022_0029-function-attribute_002c-x86"><code>target(&quot;prfchw&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>
  1905. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022ptwrite_0022_0029-function-attribute_002c-x86"><code>target(&quot;ptwrite&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>
  1906. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022rdpid_0022_0029-function-attribute_002c-x86"><code>target(&quot;rdpid&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>
  1907. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022rdrnd_0022_0029-function-attribute_002c-x86"><code>target(&quot;rdrnd&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>
  1908. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022rdseed_0022_0029-function-attribute_002c-x86"><code>target(&quot;rdseed&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>
  1909. <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>
  1910. <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>
  1911. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022rtm_0022_0029-function-attribute_002c-x86"><code>target(&quot;rtm&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>
  1912. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sahf_0022_0029-function-attribute_002c-x86"><code>target(&quot;sahf&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>
  1913. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sgx_0022_0029-function-attribute_002c-x86"><code>target(&quot;sgx&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>
  1914. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022sha_0022_0029-function-attribute_002c-x86"><code>target(&quot;sha&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>
  1915. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022shstk_0022_0029-function-attribute_002c-x86"><code>target(&quot;shstk&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>
  1916. <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>
  1917. <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>
  1918. <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>
  1919. <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>
  1920. <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>
  1921. <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>
  1922. <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>
  1923. <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>
  1924. <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>
  1925. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022tbm_0022_0029-function-attribute_002c-x86"><code>target(&quot;tbm&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>
  1926. <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>
  1927. <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>
  1928. <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>
  1929. <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>
  1930. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022vaes_0022_0029-function-attribute_002c-x86"><code>target(&quot;vaes&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>
  1931. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022vpclmulqdq_0022_0029-function-attribute_002c-x86"><code>target(&quot;vpclmulqdq&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>
  1932. <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>
  1933. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022waitpkg_0022_0029-function-attribute_002c-x86"><code>target(&quot;waitpkg&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>
  1934. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022wbnoinvd_0022_0029-function-attribute_002c-x86"><code>target(&quot;wbnoinvd&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>
  1935. <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>
  1936. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022xsave_0022_0029-function-attribute_002c-x86"><code>target(&quot;xsave&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>
  1937. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022xsavec_0022_0029-function-attribute_002c-x86"><code>target(&quot;xsavec&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>
  1938. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022xsaveopt_0022_0029-function-attribute_002c-x86"><code>target(&quot;xsaveopt&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>
  1939. <tr><td></td><td valign="top"><a href="x86-Function-Attributes.html#index-target_0028_0022xsaves_0022_0029-function-attribute_002c-x86"><code>target(&quot;xsaves&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>
  1940. <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>
  1941. <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>
  1942. <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>
  1943. <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>
  1944. <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>
  1945. <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>
  1946. <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>
  1947. <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>
  1948. <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>
  1949. <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>
  1950. <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>
  1951. <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>
  1952. <tr><td></td><td valign="top"><a href="Code-Gen-Options.html#index-tentative-definitions">tentative definitions</a>:</td><td>&nbsp;</td><td valign="top"><a href="Code-Gen-Options.html#Code-Gen-Options">Code Gen Options</a></td></tr>
  1953. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-TERM_005fURLS-environment-variable"><code>TERM_URLS <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>
  1954. <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>
  1955. <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>
  1956. <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>
  1957. <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>
  1958. <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>
  1959. <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>
  1960. <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>
  1961. <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>
  1962. <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>
  1963. <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>
  1964. <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>
  1965. <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>
  1966. <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>
  1967. <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>
  1968. <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>
  1969. <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>
  1970. <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>
  1971. <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>
  1972. <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>
  1973. <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>
  1974. <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>
  1975. <tr><td></td><td valign="top"><a href="Preprocessor-Options.html#index-traditional-C-language">traditional C language</a>:</td><td>&nbsp;</td><td valign="top"><a href="Preprocessor-Options.html#Preprocessor-Options">Preprocessor Options</a></td></tr>
  1976. <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>
  1977. <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>
  1978. <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>
  1979. <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>
  1980. <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>
  1981. <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>
  1982. <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>
  1983. <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>
  1984. <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>
  1985. <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>
  1986. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-type_002ddiff-GCC_005fCOLORS-capability"><code>type-diff 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>
  1987. <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>
  1988. <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>
  1989. <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>
  1990. <tr><td colspan="4"> <hr></td></tr>
  1991. <tr><th><a name="Keyword-Index_cp_letter-U">U</a></th><td></td><td></td></tr>
  1992. <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>
  1993. <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>
  1994. <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>
  1995. <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>
  1996. <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>
  1997. <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>
  1998. <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>
  1999. <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>
  2000. <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>
  2001. <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>
  2002. <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>
  2003. <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>
  2004. <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>
  2005. <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>
  2006. <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>
  2007. <tr><td></td><td valign="top"><a href="ARC-Type-Attributes.html#index-uncached-type-attribute_002c-ARC"><code>uncached</code> type attribute, ARC</a>:</td><td>&nbsp;</td><td valign="top"><a href="ARC-Type-Attributes.html#ARC-Type-Attributes">ARC Type Attributes</a></td></tr>
  2008. <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>
  2009. <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>
  2010. <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>
  2011. <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>
  2012. <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>
  2013. <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>
  2014. <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>
  2015. <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>
  2016. <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>
  2017. <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>
  2018. <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>
  2019. <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>
  2020. <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>
  2021. <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>
  2022. <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>
  2023. <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>
  2024. <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>
  2025. <tr><td></td><td valign="top"><a href="Diagnostic-Message-Formatting-Options.html#index-urls">urls</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>
  2026. <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>
  2027. <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>
  2028. <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>
  2029. <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>
  2030. <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>
  2031. <tr><td colspan="4"> <hr></td></tr>
  2032. <tr><th><a name="Keyword-Index_cp_letter-V">V</a></th><td></td><td></td></tr>
  2033. <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>
  2034. <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>
  2035. <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>
  2036. <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>
  2037. <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>
  2038. <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>
  2039. <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>
  2040. <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>
  2041. <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>
  2042. <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>
  2043. <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>
  2044. <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>
  2045. <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>
  2046. <tr><td></td><td valign="top"><a href="Variadic-Pointer-Args.html#index-variadic-functions_002c-pointer-arguments">variadic functions, pointer arguments</a>:</td><td>&nbsp;</td><td valign="top"><a href="Variadic-Pointer-Args.html#Variadic-Pointer-Args">Variadic Pointer Args</a></td></tr>
  2047. <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>
  2048. <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>
  2049. <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>
  2050. <tr><td></td><td valign="top"><a href="Vector-Extensions.html#index-vector-types_002c-using-with-x86-intrinsics">vector types, using with x86 intrinsics</a>:</td><td>&nbsp;</td><td valign="top"><a href="Vector-Extensions.html#Vector-Extensions">Vector Extensions</a></td></tr>
  2051. <tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-vector_005fsize-type-attribute"><code>vector_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>
  2052. <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>
  2053. <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>
  2054. <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>
  2055. <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>
  2056. <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>
  2057. <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>
  2058. <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>
  2059. <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>
  2060. <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>
  2061. <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>
  2062. <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>
  2063. <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>
  2064. <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>
  2065. <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>
  2066. <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>
  2067. <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>
  2068. <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>
  2069. <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>
  2070. <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>
  2071. <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>
  2072. <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>
  2073. <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>
  2074. <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>
  2075. <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>
  2076. <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>
  2077. <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>
  2078. <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>
  2079. <tr><td colspan="4"> <hr></td></tr>
  2080. <tr><th><a name="Keyword-Index_cp_letter-W">W</a></th><td></td><td></td></tr>
  2081. <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>
  2082. <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>
  2083. <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>
  2084. <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>
  2085. <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>
  2086. <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>
  2087. <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>
  2088. <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>
  2089. <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>
  2090. <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>
  2091. <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>
  2092. <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>
  2093. <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>
  2094. <tr><td></td><td valign="top"><a href="Common-Type-Attributes.html#index-warn_005fif_005fnot_005faligned-type-attribute"><code>warn_if_not_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>
  2095. <tr><td></td><td valign="top"><a href="Common-Variable-Attributes.html#index-warn_005fif_005fnot_005faligned-variable-attribute"><code>warn_if_not_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>
  2096. <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>
  2097. <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>
  2098. <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>
  2099. <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>
  2100. <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>
  2101. <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>
  2102. <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>
  2103. <tr><td colspan="4"> <hr></td></tr>
  2104. <tr><th><a name="Keyword-Index_cp_letter-X">X</a></th><td></td><td></td></tr>
  2105. <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>
  2106. <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>
  2107. <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>
  2108. <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>
  2109. <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>
  2110. <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>
  2111. <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>
  2112. <tr><td colspan="4"> <hr></td></tr>
  2113. <tr><th><a name="Keyword-Index_cp_letter-Y">Y</a></th><td></td><td></td></tr>
  2114. <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>
  2115. <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>
  2116. <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>
  2117. <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>
  2118. <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>
  2119. <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>
  2120. <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>
  2121. <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>
  2122. <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>
  2123. <tr><td colspan="4"> <hr></td></tr>
  2124. <tr><th><a name="Keyword-Index_cp_letter-Z">Z</a></th><td></td><td></td></tr>
  2125. <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>
  2126. <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>
  2127. <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>
  2128. <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>
  2129. <tr><td colspan="4"> <hr></td></tr>
  2130. </table>
  2131. <table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Keyword-Index_cp_symbol-1"><b>#</b></a>
  2132. &nbsp;
  2133. <a class="summary-letter" href="#Keyword-Index_cp_symbol-2"><b>$</b></a>
  2134. &nbsp;
  2135. <a class="summary-letter" href="#Keyword-Index_cp_symbol-3"><b>%</b></a>
  2136. &nbsp;
  2137. <a class="summary-letter" href="#Keyword-Index_cp_symbol-4"><b>&amp;</b></a>
  2138. &nbsp;
  2139. <a class="summary-letter" href="#Keyword-Index_cp_symbol-5"><b>'</b></a>
  2140. &nbsp;
  2141. <a class="summary-letter" href="#Keyword-Index_cp_symbol-6"><b>*</b></a>
  2142. &nbsp;
  2143. <a class="summary-letter" href="#Keyword-Index_cp_symbol-7"><b>+</b></a>
  2144. &nbsp;
  2145. <a class="summary-letter" href="#Keyword-Index_cp_symbol-8"><b>-</b></a>
  2146. &nbsp;
  2147. <a class="summary-letter" href="#Keyword-Index_cp_symbol-9"><b>.</b></a>
  2148. &nbsp;
  2149. <a class="summary-letter" href="#Keyword-Index_cp_symbol-10"><b>/</b></a>
  2150. &nbsp;
  2151. <a class="summary-letter" href="#Keyword-Index_cp_symbol-11"><b>0</b></a>
  2152. &nbsp;
  2153. <a class="summary-letter" href="#Keyword-Index_cp_symbol-12"><b>&lt;</b></a>
  2154. &nbsp;
  2155. <a class="summary-letter" href="#Keyword-Index_cp_symbol-13"><b>=</b></a>
  2156. &nbsp;
  2157. <a class="summary-letter" href="#Keyword-Index_cp_symbol-14"><b>&gt;</b></a>
  2158. &nbsp;
  2159. <a class="summary-letter" href="#Keyword-Index_cp_symbol-15"><b>?</b></a>
  2160. &nbsp;
  2161. <a class="summary-letter" href="#Keyword-Index_cp_symbol-16"><b>_</b></a>
  2162. &nbsp;
  2163. <br>
  2164. <a class="summary-letter" href="#Keyword-Index_cp_letter-A"><b>A</b></a>
  2165. &nbsp;
  2166. <a class="summary-letter" href="#Keyword-Index_cp_letter-B"><b>B</b></a>
  2167. &nbsp;
  2168. <a class="summary-letter" href="#Keyword-Index_cp_letter-C"><b>C</b></a>
  2169. &nbsp;
  2170. <a class="summary-letter" href="#Keyword-Index_cp_letter-D"><b>D</b></a>
  2171. &nbsp;
  2172. <a class="summary-letter" href="#Keyword-Index_cp_letter-E"><b>E</b></a>
  2173. &nbsp;
  2174. <a class="summary-letter" href="#Keyword-Index_cp_letter-F"><b>F</b></a>
  2175. &nbsp;
  2176. <a class="summary-letter" href="#Keyword-Index_cp_letter-G"><b>G</b></a>
  2177. &nbsp;
  2178. <a class="summary-letter" href="#Keyword-Index_cp_letter-H"><b>H</b></a>
  2179. &nbsp;
  2180. <a class="summary-letter" href="#Keyword-Index_cp_letter-I"><b>I</b></a>
  2181. &nbsp;
  2182. <a class="summary-letter" href="#Keyword-Index_cp_letter-J"><b>J</b></a>
  2183. &nbsp;
  2184. <a class="summary-letter" href="#Keyword-Index_cp_letter-K"><b>K</b></a>
  2185. &nbsp;
  2186. <a class="summary-letter" href="#Keyword-Index_cp_letter-L"><b>L</b></a>
  2187. &nbsp;
  2188. <a class="summary-letter" href="#Keyword-Index_cp_letter-M"><b>M</b></a>
  2189. &nbsp;
  2190. <a class="summary-letter" href="#Keyword-Index_cp_letter-N"><b>N</b></a>
  2191. &nbsp;
  2192. <a class="summary-letter" href="#Keyword-Index_cp_letter-O"><b>O</b></a>
  2193. &nbsp;
  2194. <a class="summary-letter" href="#Keyword-Index_cp_letter-P"><b>P</b></a>
  2195. &nbsp;
  2196. <a class="summary-letter" href="#Keyword-Index_cp_letter-Q"><b>Q</b></a>
  2197. &nbsp;
  2198. <a class="summary-letter" href="#Keyword-Index_cp_letter-R"><b>R</b></a>
  2199. &nbsp;
  2200. <a class="summary-letter" href="#Keyword-Index_cp_letter-S"><b>S</b></a>
  2201. &nbsp;
  2202. <a class="summary-letter" href="#Keyword-Index_cp_letter-T"><b>T</b></a>
  2203. &nbsp;
  2204. <a class="summary-letter" href="#Keyword-Index_cp_letter-U"><b>U</b></a>
  2205. &nbsp;
  2206. <a class="summary-letter" href="#Keyword-Index_cp_letter-V"><b>V</b></a>
  2207. &nbsp;
  2208. <a class="summary-letter" href="#Keyword-Index_cp_letter-W"><b>W</b></a>
  2209. &nbsp;
  2210. <a class="summary-letter" href="#Keyword-Index_cp_letter-X"><b>X</b></a>
  2211. &nbsp;
  2212. <a class="summary-letter" href="#Keyword-Index_cp_letter-Y"><b>Y</b></a>
  2213. &nbsp;
  2214. <a class="summary-letter" href="#Keyword-Index_cp_letter-Z"><b>Z</b></a>
  2215. &nbsp;
  2216. </td></tr></table>
  2217. <hr>
  2218. <div class="header">
  2219. <p>
  2220. 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>
  2221. </div>
  2222. </body>
  2223. </html>