Blackfin gas: tweak error message

Mike Frysinger vapier@gentoo.org
Thu Aug 13 06:38:00 GMT 2009


this fixes a trivial typo in two error messages in the assembler -- this is 
the assembler, not the compiler, so outputting "ICE" just confuses things with 
gcc's "ICE".  committed.
-mike

2009-08-11  Mike Frysinger  <vapier@gentoo.org>

	* config/bfin-parse.y (binary): Change "compiler" to "assembler".
	(unary): Likewise.

Index: gas/config/bfin-parse.y
RCS file: /cvs/src/src/gas/config/bfin-parse.y,v
retrieving revision 1.21
diff -u -p -r1.21 bfin-parse.y
--- gas/config/bfin-parse.y	26 May 2009 15:35:37 -0000	1.21
+++ gas/config/bfin-parse.y	11 Aug 2009 17:13:44 -0000
@@ -4370,7 +4370,7 @@ binary (Expr_Op_Type op, Expr_Node *x, E
 	  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;
     }

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
URL: <https://sourceware.org/pipermail/binutils/attachments/20090813/4bfe4843/attachment.sig>


More information about the Binutils mailing list