summaryrefslogtreecommitdiff
path: root/gdb/c-exp.y
diff options
context:
space:
mode:
authorPierre Muller <muller@ics.u-strasbg.fr>2002-06-21 14:32:10 +0000
committerPierre Muller <muller@ics.u-strasbg.fr>2002-06-21 14:32:10 +0000
commit749e35df592250836ccc0bcda26b992ce1182713 (patch)
tree2b80746253728019790c5d9506262270c7dddd15 /gdb/c-exp.y
parent7eb84d16b746ea5dc5e3a295e5ccebf21a4f153b (diff)
downloadgdb-749e35df592250836ccc0bcda26b992ce1182713.tar.gz
2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
* parse.c (parse_fprintf): New function used to avoid calls to fprintf in bison parser generated debug code. * parser-defs.h: Declaration of new parse_fprintf function. * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y: Set YYDEBUG to 1 by default. Set YYFPRINTF as parse_fprintf.
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r--gdb/c-exp.y4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y
index f555518ea00..ea5083646e0 100644
--- a/gdb/c-exp.y
+++ b/gdb/c-exp.y
@@ -100,9 +100,11 @@ extern int hp_som_som_object_present;
#define yycheck c_yycheck
#ifndef YYDEBUG
-#define YYDEBUG 0 /* Default to no yydebug support */
+#define YYDEBUG 1 /* Default to yydebug support */
#endif
+#define YYFPRINTF parser_fprintf
+
int yyparse (void);
static int yylex (void);