1 /* Various diagnostic subroutines for the GNU C language.
2 Copyright (C) 2000-2018 Free Software Foundation, Inc.
3 Contributed by Gabriel Dos Reis <gdr@codesourcery.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
28 /* Issue an ISO C11 pedantic warning MSGID if -pedantic outside C2X mode,
29 otherwise issue warning MSGID if -Wc11-c2X-compat is specified.
30 This function is supposed to be used for matters that are allowed in
31 ISO C2X but not supported in ISO C11, thus we explicitly don't pedwarn
32 when C2X is specified. */
35 pedwarn_c11 (location_t location
, int opt
, const char *gmsgid
, ...)
37 diagnostic_info diagnostic
;
40 rich_location
richloc (line_table
, location
);
42 va_start (ap
, gmsgid
);
43 /* If desired, issue the C11/C2X compat warning, which is more specific
45 if (warn_c11_c2x_compat
> 0)
47 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
,
48 (pedantic
&& !flag_isoc2x
)
49 ? DK_PEDWARN
: DK_WARNING
);
50 diagnostic
.option_index
= OPT_Wc11_c2x_compat
;
51 warned
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
53 /* -Wno-c11-c2x-compat suppresses even the pedwarns. */
54 else if (warn_c11_c2x_compat
== 0)
56 /* For -pedantic outside C2X, issue a pedwarn. */
57 else if (pedantic
&& !flag_isoc2x
)
59 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
, DK_PEDWARN
);
60 diagnostic
.option_index
= opt
;
61 warned
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
67 /* Issue an ISO C99 pedantic warning MSGID if -pedantic outside C11 mode,
68 otherwise issue warning MSGID if -Wc99-c11-compat is specified.
69 This function is supposed to be used for matters that are allowed in
70 ISO C11 but not supported in ISO C99, thus we explicitly don't pedwarn
71 when C11 is specified. */
74 pedwarn_c99 (location_t location
, int opt
, const char *gmsgid
, ...)
76 diagnostic_info diagnostic
;
79 rich_location
richloc (line_table
, location
);
81 va_start (ap
, gmsgid
);
82 /* If desired, issue the C99/C11 compat warning, which is more specific
84 if (warn_c99_c11_compat
> 0)
86 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
,
87 (pedantic
&& !flag_isoc11
)
88 ? DK_PEDWARN
: DK_WARNING
);
89 diagnostic
.option_index
= OPT_Wc99_c11_compat
;
90 warned
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
92 /* -Wno-c99-c11-compat suppresses even the pedwarns. */
93 else if (warn_c99_c11_compat
== 0)
95 /* For -pedantic outside C11, issue a pedwarn. */
96 else if (pedantic
&& !flag_isoc11
)
98 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
, DK_PEDWARN
);
99 diagnostic
.option_index
= opt
;
100 warned
= diagnostic_report_diagnostic (global_dc
, &diagnostic
);
106 /* Issue an ISO C90 pedantic warning MSGID if -pedantic outside C99 mode,
107 otherwise issue warning MSGID if -Wc90-c99-compat is specified, or if
108 a specific option such as -Wlong-long is specified.
109 This function is supposed to be used for matters that are allowed in
110 ISO C99 but not supported in ISO C90, thus we explicitly don't pedwarn
111 when C99 is specified. (There is no flag_c90.) */
114 pedwarn_c90 (location_t location
, int opt
, const char *gmsgid
, ...)
116 diagnostic_info diagnostic
;
119 rich_location
richloc (line_table
, location
);
121 va_start (ap
, gmsgid
);
122 /* Warnings such as -Wvla are the most specific ones. */
123 if (opt
!= OPT_Wpedantic
)
125 int opt_var
= *(int *) option_flag_var (opt
, &global_options
);
128 else if (opt_var
> 0)
130 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
,
131 (pedantic
&& !flag_isoc99
)
132 ? DK_PEDWARN
: DK_WARNING
);
133 diagnostic
.option_index
= opt
;
134 diagnostic_report_diagnostic (global_dc
, &diagnostic
);
139 /* Maybe we want to issue the C90/C99 compat warning, which is more
140 specific than -pedantic. */
141 if (warn_c90_c99_compat
> 0)
143 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
,
144 (pedantic
&& !flag_isoc99
)
145 ? DK_PEDWARN
: DK_WARNING
);
146 diagnostic
.option_index
= OPT_Wc90_c99_compat
;
147 diagnostic_report_diagnostic (global_dc
, &diagnostic
);
149 /* -Wno-c90-c99-compat suppresses the pedwarns. */
150 else if (warn_c90_c99_compat
== 0)
152 /* For -pedantic outside C99, issue a pedwarn. */
153 else if (pedantic
&& !flag_isoc99
)
155 diagnostic_set_info (&diagnostic
, gmsgid
, &ap
, &richloc
, DK_PEDWARN
);
156 diagnostic
.option_index
= opt
;
157 diagnostic_report_diagnostic (global_dc
, &diagnostic
);