]>
git.saurik.com Git - bison.git/blob - src/complain.h
79f2017eb658f372f780e613e05cc923c9e5ae01
1 /* Declaration for error-reporting function for Bison.
3 Copyright (C) 2000-2002, 2006, 2009-2012 Free Software Foundation,
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.
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.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 # define COMPLAIN_H_ 1
22 # include "location.h"
34 Wnone
= 0, /**< Issue no warnings. */
35 Werror
= 1 << 0, /**< Warnings are treated as errors. */
36 Wmidrule_values
= 1 << 1, /**< Unset or unused midrule values. */
37 Wyacc
= 1 << 2, /**< POSIXME. */
38 Wconflicts_sr
= 1 << 3, /**< S/R conflicts. */
39 Wconflicts_rr
= 1 << 4, /**< R/R conflicts. */
40 Wother
= 1 << 5, /**< All other warnings. */
41 complaint
= 1 << 6, /**< All complaints. */
42 fatal
= 1 << 7, /**< All fatal errors. */
43 Wall
= ~Werror
/**< All above warnings. */
46 /** What warnings are issued. */
47 extern warnings warnings_flag
;
49 /** Record that a warning is about to be issued, and treat it as an
50 error if <tt>warnings_flag & Werror</tt>. This is exported
51 only for the sake of Yacc-compatible conflict reports in conflicts.c.
52 All other warnings should be implemented in complain.c and should use
53 the normal warning format. */
54 void set_warning_issued (void);
56 /** Make a complaint, but don't specify any location. */
57 void complain (warnings flags
, char const *message
, ...)
58 __attribute__ ((__format__ (__printf__
, 2, 3)));
60 /** Make a complaint with location. */
61 void complain_at (location loc
, warnings flags
, char const *message
, ...)
62 __attribute__ ((__format__ (__printf__
, 3, 4)));
64 /** Make a complaint with location and some indentation. */
65 void complain_at_indent (location loc
, warnings flags
, unsigned *indent
,
66 char const *message
, ...)
67 __attribute__ ((__format__ (__printf__
, 4, 5)));
69 /** Whether an error was reported. */
70 extern bool complaint_issued
;
76 #endif /* !COMPLAIN_H_ */