mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
gas/
2007-09-26 Jan Beulich <jbeulich@novell.com> * config/tc-ia64.c (dot_pred_rel): Replace specialized handling with simple call to parse_operand.
This commit is contained in:
parent
c15900ec36
commit
cc941dee48
@ -1,3 +1,8 @@
|
||||
2007-09-26 Jan Beulich <jbeulich@novell.com>
|
||||
|
||||
* config/tc-ia64.c (dot_pred_rel): Replace specialized handling
|
||||
with simple call to parse_operand.
|
||||
|
||||
2007-09-26 Jan Beulich <jbeulich@novell.com>
|
||||
|
||||
* config/tc-i386.c (NUM_FLAG_CODE): Remove.
|
||||
|
@ -5282,14 +5282,13 @@ dot_pred_rel (type)
|
||||
SKIP_WHITESPACE ();
|
||||
}
|
||||
|
||||
SKIP_WHITESPACE ();
|
||||
while (1)
|
||||
{
|
||||
valueT bits = 1;
|
||||
int regno;
|
||||
int sep, regno;
|
||||
expressionS pr, *pr1, *pr2;
|
||||
|
||||
expression_and_evaluate (&pr);
|
||||
sep = parse_operand (&pr, ',');
|
||||
if (pr.X_op == O_register
|
||||
&& pr.X_add_number >= REG_P
|
||||
&& pr.X_add_number <= REG_P + 63)
|
||||
@ -5336,10 +5335,8 @@ dot_pred_rel (type)
|
||||
if (mask & bits)
|
||||
as_warn (_("Duplicate predicate register ignored"));
|
||||
mask |= bits;
|
||||
if (*input_line_pointer != ',')
|
||||
if (sep != ',')
|
||||
break;
|
||||
++input_line_pointer;
|
||||
SKIP_WHITESPACE ();
|
||||
}
|
||||
|
||||
switch (type)
|
||||
|
Loading…
Reference in New Issue
Block a user