This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Blackfin gas: tweak error message


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;
     }

Attachment: signature.asc
Description: This is a digitally signed message part.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]