From f948f549e3292613a33fb4c37c3443cb4900ad75 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 11 Aug 2009 17:16:37 +0000 Subject: [PATCH] fix typo in gas error output (this is an assembler, not a compiler) --- gas/ChangeLog | 5 +++++ gas/config/bfin-parse.y | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index 9d47ab498..33954c39e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2009-08-11 Mike Frysinger + + * config/bfin-parse.y (binary): Change "compiler" to "assembler". + (unary): Likewise. + 2009-08-11 Nick Clifton PR 10443 diff --git a/gas/config/bfin-parse.y b/gas/config/bfin-parse.y index b39d5cdaa..ef84a72de 100644 --- a/gas/config/bfin-parse.y +++ b/gas/config/bfin-parse.y @@ -4370,7 +4370,7 @@ binary (Expr_Op_Type op, Expr_Node *x, Expr_Node *y) break; default: - error ("%s:%d: Internal compiler error\n", __FILE__, __LINE__); + error ("%s:%d: Internal assembler error\n", __FILE__, __LINE__); } return x; } @@ -4416,7 +4416,7 @@ unary (Expr_Op_Type op, Expr_Node *x) x->value.i_value = ~x->value.i_value; break; default: - error ("%s:%d: Internal compiler error\n", __FILE__, __LINE__); + error ("%s:%d: Internal assembler error\n", __FILE__, __LINE__); } return x; } -- 2.11.4.GIT