]>
Commit | Line | Data |
---|---|---|
a0f6b076 | 1 | /* Declaration for error-reporting function for Bison. |
6e30ede8 | 2 | |
c932d613 | 3 | Copyright (C) 2000-2002, 2006, 2009-2012 Free Software Foundation, |
ea0a7676 | 4 | Inc. |
a0f6b076 | 5 | |
f16b0819 PE |
6 | This program is free software: you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation, either version 3 of the License, or | |
9 | (at your option) any later version. | |
a0f6b076 AD |
10 | |
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
f16b0819 | 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
a0f6b076 AD |
18 | |
19 | #ifndef COMPLAIN_H_ | |
ee000ba4 | 20 | # define COMPLAIN_H_ 1 |
a0f6b076 | 21 | |
ee000ba4 AD |
22 | # include "location.h" |
23 | ||
24 | # ifdef __cplusplus | |
a0f6b076 | 25 | extern "C" { |
ee000ba4 | 26 | # endif |
a0f6b076 | 27 | |
6f8bdce2 JD |
28 | /** Record that a warning is about to be issued, and treat it as an |
29 | error if <tt>warnings_flag & warnings_error</tt>. This is exported | |
30 | only for the sake of Yacc-compatible conflict reports in conflicts.c. | |
31 | All other warnings should be implemented in complain.c and should use | |
32 | the normal warning format. */ | |
33 | void set_warning_issued (void); | |
34 | ||
8ffd7912 JD |
35 | /** Informative messages, but we proceed. Report iff |
36 | <tt>warnings_flag & warnings_other</tt>. */ | |
a0f6b076 | 37 | |
81ebdef9 | 38 | void warn (char const *format, ...) |
52489d44 AD |
39 | __attribute__ ((__format__ (__printf__, 1, 2))); |
40 | ||
81ebdef9 | 41 | void warn_at (location loc, char const *format, ...) |
e9955c83 | 42 | __attribute__ ((__format__ (__printf__, 2, 3))); |
a0f6b076 | 43 | |
348f5608 AR |
44 | /* Generate a message aligned by an indent. |
45 | When *indent == 0, assign message's indent to *indent, | |
46 | When *indent > 0, align the message by *indent value. */ | |
47 | void warn_at_indent (location loc, unsigned *indent, | |
48 | char const *format, ...) | |
49 | __attribute__ ((__format__ (__printf__, 3, 4))); | |
50 | ||
23eb2a69 | 51 | /** An error, but we continue and die later. */ |
a0f6b076 | 52 | |
81ebdef9 | 53 | void complain (char const *format, ...) |
52489d44 AD |
54 | __attribute__ ((__format__ (__printf__, 1, 2))); |
55 | ||
81ebdef9 | 56 | void complain_at (location loc, char const *format, ...) |
e9955c83 | 57 | __attribute__ ((__format__ (__printf__, 2, 3))); |
a0f6b076 | 58 | |
348f5608 AR |
59 | /* Generate a message aligned by an indent. |
60 | When *indent == 0, assign message's indent to *indent, | |
61 | When *indent > 0, align the message by *indent value. */ | |
62 | void complain_at_indent (location loc, unsigned *indent, | |
63 | char const *format, ...) | |
64 | __attribute__ ((__format__ (__printf__, 3, 4))); | |
65 | ||
663ce7bb AD |
66 | /** An incompatibility with POSIX Yacc: mapped either to warn* or |
67 | complain* depending on yacc_flag. */ | |
68 | ||
69 | void yacc_at (location loc, char const *format, ...) | |
70 | __attribute__ ((__format__ (__printf__, 2, 3))); | |
71 | ||
8ffd7912 JD |
72 | /** A midrule-value warning. Report iff |
73 | <tt>warnings_flag & warnings_midrule_values</tt>. */ | |
74 | ||
75 | void midrule_value_at (location loc, char const *format, ...) | |
76 | __attribute__ ((__format__ (__printf__, 2, 3))); | |
663ce7bb | 77 | |
23eb2a69 | 78 | /** A fatal error, causing immediate exit. */ |
a0f6b076 | 79 | |
81ebdef9 | 80 | void fatal (char const *format, ...) |
ec88357a | 81 | __attribute__ ((__noreturn__, __format__ (__printf__, 1, 2))); |
e9955c83 | 82 | |
81ebdef9 | 83 | void fatal_at (location loc, char const *format, ...) |
ec88357a | 84 | __attribute__ ((__noreturn__, __format__ (__printf__, 2, 3))); |
a0f6b076 | 85 | |
23eb2a69 | 86 | /** Whether an error was reported. */ |
ec88357a | 87 | extern bool complaint_issued; |
a0f6b076 | 88 | |
ee000ba4 | 89 | # ifdef __cplusplus |
a0f6b076 | 90 | } |
ee000ba4 | 91 | # endif |
a0f6b076 AD |
92 | |
93 | #endif /* !COMPLAIN_H_ */ |