]> git.saurik.com Git - bison.git/commitdiff
warnings: move them to complain.c.
authorVictor Santet <victor.santet@epita.fr>
Thu, 28 Jun 2012 14:44:20 +0000 (16:44 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Thu, 28 Jun 2012 15:06:20 +0000 (17:06 +0200)
* src/getargs.h, src/getargs.c (warnings, warnings_flags): Move to...
* src/complain.h, src/complain.c: Here.

src/complain.c
src/complain.h
src/getargs.c
src/getargs.h

index fc73cfe48c26c1e908157461f59ddd185e83bb90..fadef5a18aaa9f52df3eef857f04243e2ffdab49 100644 (file)
@@ -29,6 +29,8 @@
 #include "files.h"
 #include "getargs.h"
 
 #include "files.h"
 #include "getargs.h"
 
+int warnings_flag = Wconflicts_sr | Wconflicts_rr | Wother;
+
 bool complaint_issued;
 static unsigned *indent_ptr = 0;
 
 bool complaint_issued;
 static unsigned *indent_ptr = 0;
 
index 2bb3795e151339d0396c80706ca7b54070aa1b4f..30e7c86d1212f4e740c6575502e662227a69e79e 100644 (file)
 extern "C" {
 # endif
 
 extern "C" {
 # endif
 
+/*-------------.
+| --warnings.  |
+`-------------*/
+
+enum warnings
+  {
+    Wnone             = 0,      /**< Issue no warnings.  */
+    Werror            = 1 << 0, /**< Warnings are treated as errors.  */
+    Wmidrule_values   = 1 << 1, /**< Unset or unused midrule values.  */
+    Wyacc             = 1 << 2, /**< POSIXME.  */
+    Wconflicts_sr     = 1 << 3, /**< S/R conflicts.  */
+    Wconflicts_rr     = 1 << 4, /**< R/R conflicts.  */
+    Wother            = 1 << 5, /**< All other warnings.  */
+    Wall              = ~Werror /**< All above warnings.  */
+  };
+
+/** What warnings are issued.  */
+extern int warnings_flag;
+
 /** Record that a warning is about to be issued, and treat it as an
     error if <tt>warnings_flag & Werror</tt>.  This is exported
     only for the sake of Yacc-compatible conflict reports in conflicts.c.
 /** Record that a warning is about to be issued, and treat it as an
     error if <tt>warnings_flag & Werror</tt>.  This is exported
     only for the sake of Yacc-compatible conflict reports in conflicts.c.
index 0fbc403e24d6e1e313fc19ffb347ac918896f99c..d0b1e948cd5528aaf56ff8c23d8926c0e448e04c 100644 (file)
@@ -61,8 +61,6 @@ bool glr_parser = false;
 
 int report_flag = report_none;
 int trace_flag = trace_none;
 
 int report_flag = report_none;
 int trace_flag = trace_none;
-int warnings_flag = Wconflicts_sr | Wconflicts_rr
-                    | Wother;
 
 static struct bison_language const valid_languages[] = {
   { "c", "c-skel.m4", ".c", ".h", true },
 
 static struct bison_language const valid_languages[] = {
   { "c", "c-skel.m4", ".c", ".h", true },
index 9fc9aab93146d65157e59a9121b8c91b53b948cf..4eb3981220476ba8e219421f628e024a0aab0f38 100644 (file)
@@ -108,24 +108,6 @@ enum trace
 /** What debug items bison displays during its run.  */
 extern int trace_flag;
 
 /** What debug items bison displays during its run.  */
 extern int trace_flag;
 
-/*-------------.
-| --warnings.  |
-`-------------*/
-
-enum warnings
-  {
-    Wnone             = 0,      /**< Issue no warnings.  */
-    Werror            = 1 << 0, /**< Warnings are treated as errors.  */
-    Wmidrule_values   = 1 << 1, /**< Unset or unused midrule values.  */
-    Wyacc             = 1 << 2, /**< POSIXME.  */
-    Wconflicts_sr     = 1 << 3, /**< S/R conflicts.  */
-    Wconflicts_rr     = 1 << 4, /**< R/R conflicts.  */
-    Wother            = 1 << 5, /**< All other warnings.  */
-    Wall              = ~Werror /**< All above warnings.  */
-  };
-/** What warnings are issued.  */
-extern int warnings_flag;
-
 
 /** Process the command line arguments.
  *
 
 /** Process the command line arguments.
  *