OSDN Git Service

* 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 e93cece..d62394e 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 f5f1022..38c3f6e 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;
     }