From 3d01fba3d1a4495d670066bdd4983060e3c2486b Mon Sep 17 00:00:00 2001 From: Jie Zhang Date: Fri, 20 Jan 2006 16:57:09 +0000 Subject: [PATCH] * config/bfin-parse.y (value_match): Use correct conversion specifications in template string for __FILE__ and __LINE__. (binary): Ditto. (unary): Ditto. --- gas/ChangeLog | 7 +++++++ gas/config/bfin-parse.y | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index e93cecec94..d62394e294 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +2006-01-21 Jie Zhang + + * config/bfin-parse.y (value_match): Use correct conversion + specifications in template string for __FILE__ and __LINE__. + (binary): Ditto. + (unary): Ditto. + 2006-01-18 Alexandre Oliva Introduce TLS descriptors for i386 and x86_64. diff --git a/gas/config/bfin-parse.y b/gas/config/bfin-parse.y index f5f1022403..38c3f6e684 100644 --- a/gas/config/bfin-parse.y +++ b/gas/config/bfin-parse.y @@ -4232,7 +4232,7 @@ value_match (Expr_Node *expr, int sz, int sign, int mul, int issigned) if ((v % mul) != 0) { - error ("%s:%d: Value Error -- Must align to %d\n", __LINE__, __FILE__, mul); + error ("%s:%d: Value Error -- Must align to %d\n", __FILE__, __LINE__, mul); return 0; } @@ -4308,7 +4308,7 @@ binary (Expr_Op_Type op, Expr_Node *x, Expr_Node *y) break; default: - error ("%s:%d: Internal compiler error\n", __LINE__, __FILE__); + error ("%s:%d: Internal compiler error\n", __FILE__, __LINE__); } return x; } @@ -4335,7 +4335,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", __LINE__, __FILE__); + error ("%s:%d: Internal compiler error\n", __FILE__, __LINE__); } return x; } -- 2.11.0