source: public/doc/gnu-c/Severity-Pragmas.html@ 02598c2

Last change on this file since 02598c2 was 02598c2, checked in by Mikhail Kirillov <w96k@…>, on Oct 6, 2022 at 12:36:29 PM

Add gnu-c

  • Property mode set to 100644
File size: 6.5 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<!-- Copyright (C) 2022 Richard Stallman and Free Software Foundation, Inc.
4
5(The work of Trevis Rothwell and Nelson Beebe has been assigned or
6licensed to the FSF.)
7
8Permission is granted to copy, distribute and/or modify this document
9under the terms of the GNU Free Documentation License, Version 1.3 or
10any later version published by the Free Software Foundation; with the
11Invariant Sections being "GNU General Public License," with the
12Front-Cover Texts being "A GNU Manual," and with the Back-Cover
13Texts as in (a) below. A copy of the license is included in the
14section entitled "GNU Free Documentation License."
15
16(a) The FSF's Back-Cover Text is: "You have the freedom to copy and
17modify this GNU manual. Buying copies from the FSF supports it in
18developing GNU and promoting software freedom." -->
19<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
20<head>
21<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
22<title>Severity Pragmas (GNU C Language Manual)</title>
23
24<meta name="description" content="Severity Pragmas (GNU C Language Manual)">
25<meta name="keywords" content="Severity Pragmas (GNU C Language Manual)">
26<meta name="resource-type" content="document">
27<meta name="distribution" content="global">
28<meta name="Generator" content="makeinfo">
29<link href="index.html" rel="start" title="Top">
30<link href="Symbol-Index.html" rel="index" title="Symbol Index">
31<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
32<link href="Pragmas.html" rel="up" title="Pragmas">
33<link href="Optimization-Pragmas.html" rel="next" title="Optimization Pragmas">
34<link href="Pragma-Basics.html" rel="prev" title="Pragma Basics">
35<style type="text/css">
36<!--
37a.summary-letter {text-decoration: none}
38blockquote.indentedblock {margin-right: 0em}
39div.display {margin-left: 3.2em}
40div.example {margin-left: 3.2em}
41div.lisp {margin-left: 3.2em}
42kbd {font-style: oblique}
43pre.display {font-family: inherit}
44pre.format {font-family: inherit}
45pre.menu-comment {font-family: serif}
46pre.menu-preformatted {font-family: serif}
47span.nolinebreak {white-space: nowrap}
48span.roman {font-family: initial; font-weight: normal}
49span.sansserif {font-family: sans-serif; font-weight: normal}
50ul.no-bullet {list-style: none}
51-->
52</style>
53
54
55</head>
56
57<body lang="en">
58<span id="Severity-Pragmas"></span><div class="header">
59<p>
60Next: <a href="Optimization-Pragmas.html" accesskey="n" rel="next">Optimization Pragmas</a>, Previous: <a href="Pragma-Basics.html" accesskey="p" rel="prev">Pragma Basics</a>, Up: <a href="Pragmas.html" accesskey="u" rel="up">Pragmas</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Symbol-Index.html" title="Index" rel="index">Index</a>]</p>
61</div>
62<hr>
63<span id="Severity-Pragmas-1"></span><h4 class="subsection">30.1.2 Severity Pragmas</h4>
64
65<p>These pragmas control the severity of classes of diagnostics.
66You can specify the class of diagnostic with the GCC option that causes
67those diagnostics to be generated.
68</p>
69<dl compact="compact">
70<dt><code>#pragma GCC diagnostic error <var>option</var></code></dt>
71<dt><code>_Pragma (&quot;GCC diagnostic error <var>option</var>&quot;)</code></dt>
72<dd><p>For code following this pragma, treat diagnostics of the variety
73specified by <var>option</var> as errors. For example:
74</p>
75<div class="example">
76<pre class="example">_Pragma (&quot;GCC diagnostic error -Wformat&quot;)
77</pre></div>
78
79<p>specifies to treat diagnostics enabled by the <var>-Wformat</var> option
80as errors rather than warnings.
81</p>
82</dd>
83<dt><code>#pragma GCC diagnostic warning <var>option</var></code></dt>
84<dt><code>_Pragma (&quot;GCC diagnostic warning <var>option</var>&quot;)</code></dt>
85<dd><p>For code following this pragma, treat diagnostics of the variety
86specified by <var>option</var> as warnings. This overrides the
87<var>-Werror</var> option which says to treat warnings as errors.
88</p>
89</dd>
90<dt><code>#pragma GCC diagnostic ignore <var>option</var></code></dt>
91<dt><code>_Pragma (&quot;GCC diagnostic ignore <var>option</var>&quot;)</code></dt>
92<dd><p>For code following this pragma, refrain from reporting any diagnostics
93of the variety specified by <var>option</var>.
94</p>
95</dd>
96<dt><code>#pragma GCC diagnostic push</code></dt>
97<dt><code>_Pragma (&quot;GCC diagnostic push&quot;)</code></dt>
98<dt><code>#pragma GCC diagnostic pop</code></dt>
99<dt><code>_Pragma (&quot;GCC diagnostic pop&quot;)</code></dt>
100<dd><p>These pragmas maintain a stack of states for severity settings.
101&lsquo;<samp>GCC diagnostic push</samp>&rsquo; saves the current settings on the stack,
102and &lsquo;<samp>GCC diagnostic pop</samp>&rsquo; pops the last stack item and restores
103the current settings from that.
104</p>
105<p>&lsquo;<samp>GCC diagnostic pop</samp>&rsquo; when the severity setting stack is empty
106restores the settings to what they were at the start of compilation.
107</p>
108<p>Here is an example:
109</p>
110<div class="example">
111<pre class="example">_Pragma (&quot;GCC diagnostic error -Wformat&quot;)
112
113/* <span class="roman"><samp>-Wformat</samp> messages treated as errors. </span> */
114
115_Pragma (&quot;GCC diagnostic push&quot;)
116_Pragma (&quot;GCC diagnostic warning -Wformat&quot;)
117
118/* <span class="roman"><samp>-Wformat</samp> messages treated as warnings. </span> */
119
120_Pragma (&quot;GCC diagnostic push&quot;)
121_Pragma (&quot;GCC diagnostic ignored -Wformat&quot;)
122
123/* <span class="roman"><samp>-Wformat</samp> messages suppressed. </span> */
124
125_Pragma (&quot;GCC diagnostic pop&quot;)
126
127/* <span class="roman"><samp>-Wformat</samp> messages treated as warnings again. </span> */
128
129_Pragma (&quot;GCC diagnostic pop&quot;)
130
131/* <span class="roman"><samp>-Wformat</samp> messages treated as errors again. </span> */
132
133/* <span class="roman">This is an excess &lsquo;<samp>pop</samp>&rsquo; that matches no &lsquo;<samp>push</samp>&rsquo;. </span> */
134_Pragma (&quot;GCC diagnostic pop&quot;)
135
136/* <span class="roman"><samp>-Wformat</samp> messages treated once again</span>
137 <span class="roman">as specified by the GCC command-line options.</span> */
138</pre></div>
139</dd>
140</dl>
141
142<hr>
143<div class="header">
144<p>
145Next: <a href="Optimization-Pragmas.html" accesskey="n" rel="next">Optimization Pragmas</a>, Previous: <a href="Pragma-Basics.html" accesskey="p" rel="prev">Pragma Basics</a>, Up: <a href="Pragmas.html" accesskey="u" rel="up">Pragmas</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Symbol-Index.html" title="Index" rel="index">Index</a>]</p>
146</div>
147
148
149
150</body>
151</html>
Note: See TracBrowser for help on using the repository browser.