diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-08-11 17:16:37 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-08-11 17:16:37 +0000 |
commit | baa3eb38dfd765a404c5c231a01f38a39f4f1482 (patch) | |
tree | e6cfb44520cd1f69ce37a63ee60064d48ca0fc04 /gas/config | |
parent | 11af873fca0a3bc4c3476e35ec931a49dce101ee (diff) | |
download | gdb-baa3eb38dfd765a404c5c231a01f38a39f4f1482.zip gdb-baa3eb38dfd765a404c5c231a01f38a39f4f1482.tar.gz gdb-baa3eb38dfd765a404c5c231a01f38a39f4f1482.tar.bz2 |
fix typo in gas error output (this is an assembler, not a compiler)
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/bfin-parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/bfin-parse.y b/gas/config/bfin-parse.y index b39d5cd..ef84a72 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; } |