From 749e35df592250836ccc0bcda26b992ce1182713 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Fri, 21 Jun 2002 14:32:10 +0000 Subject: 2002-06-19 Pierre Muller * 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. --- gdb/p-exp.y | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gdb/p-exp.y') diff --git a/gdb/p-exp.y b/gdb/p-exp.y index 7333f6d04a0..fbdd3f69e18 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -104,9 +104,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define yycheck pascal_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); -- cgit v1.2.1