From a773f6c7e6e74a1fac033016550dbbcba0ad8133 Mon Sep 17 00:00:00 2001 From: Jan Brittenson Date: Sun, 26 Sep 1993 13:59:41 -0700 Subject: [PATCH] Add space before opening paren in function calls. From-SVN: r5478 --- gcc/bi-parser.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/bi-parser.y b/gcc/bi-parser.y index c855d84374b..df490622494 100644 --- a/gcc/bi-parser.y +++ b/gcc/bi-parser.y @@ -81,7 +81,7 @@ variations: variation: '(' opt_string ')' - { $$ = makevar($2, (struct node *) NULL, (struct node *) NULL, (struct node *) NULL); } + { $$ = makevar ($2, (struct node *) NULL, (struct node *) NULL, (struct node *) NULL); } | '(' opt_string ',' list ')' { $$ = makevar ($2, $4, (struct node *) NULL, (struct node *) NULL); } | '(' opt_string ',' list ',' list ')' @@ -164,6 +164,6 @@ void yyerror (s) char *s; { - fprintf (stderr, "syntax error in input"); + fprintf (stderr, "syntax error in input\n"); exit (1); } -- 2.30.2