fix typo in gas error output (this is an assembler, not a compiler)
authorMike Frysinger <vapier@gentoo.org>
Tue, 11 Aug 2009 17:16:37 +0000 (17:16 +0000)
committerMike Frysinger <vapier@gentoo.org>
Tue, 11 Aug 2009 17:16:37 +0000 (17:16 +0000)
gas/ChangeLog
gas/config/bfin-parse.y

index 9d47ab498ca4e88b3f8e883b713b66771b10b684..33954c39e8c492d069e73503caafc6ee4773210c 100644 (file)
@@ -1,3 +1,8 @@
+2009-08-11  Mike Frysinger  <vapier@gentoo.org>
+
+       * config/bfin-parse.y (binary): Change "compiler" to "assembler".
+       (unary): Likewise.
+
 2009-08-11  Nick Clifton  <nickc@redhat.com>
 
        PR 10443
index b39d5cdaae2dc5ca3e9bcd2ddf97b3325c14e767..ef84a72debfefdbc1baced5e43a6a0a9a16a34cc 100644 (file)
@@ -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;
     }