diff options
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index c79f20d2be9..e2ed7de4b8d 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -819,13 +819,13 @@ _cpp_parse_expr (pfile) { if (top->flags & HAVE_VALUE) SYNTAX_ERROR2 ("missing binary operator before '%s'", - op_as_text (pfile, top->op)); + op_as_text (pfile, op.op)); } else { if (!(top->flags & HAVE_VALUE)) SYNTAX_ERROR2 ("operator '%s' has no left operand", - op_as_text (pfile, top->op)); + op_as_text (pfile, op.op)); } /* Check for and handle stack overflow. */ |