]> git.saurik.com Git - bison.git/commitdiff
* src/LR0.c (new_state): Complete trace code.
authorAkim Demaille <akim@epita.fr>
Mon, 19 Nov 2001 10:28:57 +0000 (10:28 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 19 Nov 2001 10:28:57 +0000 (10:28 +0000)
* src/nullable.c (set_nullable): Don't translate traces.

ChangeLog
src/LR0.c
src/nullable.c

index 076380983041706afe06ca8197a5e9619a40377f..e7f63fffcbb0c318614b440c549af5168f9b7b75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-11-19  Akim Demaille  <akim@epita.fr>
+
+       * src/LR0.c (new_state): Complete trace code.
+       * src/nullable.c (set_nullable): Don't translate traces.
+
+
 2001-11-19  Akim Demaille  <akim@epita.fr>
 
        * src/print_graph.c (print_core): Better locality of variables.
index 133a8218c2fcd046cebff0135a7cb08ee652c947..3288d9dcd910e4c1e166e755df09425d96595f36 100644 (file)
--- a/src/LR0.c
+++ b/src/LR0.c
@@ -200,7 +200,8 @@ new_state (int symbol)
   short *iend;
 
 #if TRACE
-  fprintf (stderr, "Entering new_state, symbol = %d\n", symbol);
+  fprintf (stderr, "Entering new_state, symbol = %d, state = %d\n",
+          symbol, nstates);
 #endif
 
   if (nstates >= MAXSHORT)
index 6c60f0fdb395d950d22321e050c1583c242efa64..4568114f9f84b3f64f92c8c50f8895f5746327c3 100644 (file)
@@ -1,5 +1,5 @@
 /* Part of the bison parser generator,
-   Copyright 1984, 1989, 2000 Free Software Foundation, Inc.
+   Copyright 1984, 1989, 2000, 2001 Free Software Foundation, Inc.
 
    This file is part of Bison, the GNU Compiler Compiler.
 
@@ -48,7 +48,7 @@ set_nullable (void)
   short *r1;
 
 #ifdef TRACE
-  fprintf (stderr, _("Entering set_nullable"));
+  fprintf (stderr, "Entering set_nullable\n");
 #endif
 
   nullable = XCALLOC (char, nvars) - ntokens;