* config/bfin-parse.y (value_match): Use correct conversion
authorJie Zhang <jie.zhang@analog.com>
Fri, 20 Jan 2006 16:57:09 +0000 (16:57 +0000)
committerJie Zhang <jie.zhang@analog.com>
Fri, 20 Jan 2006 16:57:09 +0000 (16:57 +0000)
specifications in template string for __FILE__ and __LINE__.
(binary): Ditto.
(unary): Ditto.

gas/ChangeLog
gas/config/bfin-parse.y

index e93cecec94d955cc586f46a5b167d9efd6b2b6d7..d62394e294a08d1e410d3e950f3fe85e3894945a 100644 (file)
@@ -1,3 +1,10 @@
+2006-01-21  Jie Zhang  <jie.zhang@analog.com>
+
+       * 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  <aoliva@redhat.com>
 
        Introduce TLS descriptors for i386 and x86_64.
index f5f102240339b9ade4e3238ad918df23dcdaee24..38c3f6e684c7e2c42a82da4b62c4b4904e3d80cc 100644 (file)
@@ -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;
     }