* config/bfin-parse.y (value_match): Use correct conversion
specifications in template string for __FILE__ and __LINE__. (binary): Ditto. (unary): Ditto.
This commit is contained in:
parent
1c6ce4ef2a
commit
39cd1c7675
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user