*** empty log message ***
This commit is contained in:
parent
7cc193c460
commit
f68b18f639
1 changed files with 6 additions and 14 deletions
|
@ -121,21 +121,13 @@ char *parse_operand( ptr, n_ops, instr)
|
||||||
*last;
|
*last;
|
||||||
|
|
||||||
ptr = skip_operand( ptr, instr);
|
ptr = skip_operand( ptr, instr);
|
||||||
if ( *ptr != '\0') {
|
for( last=ptr-1; isspace( *last); last--)
|
||||||
if ( *ptr == ',') {
|
;
|
||||||
for( last=ptr-1; isspace( *last); last--)
|
if ( *ptr == ',') {
|
||||||
;
|
ptr = skip_space( ptr + 1);
|
||||||
*(last+1) = '\0';
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
error("strange operand format: %s\n", ptr);
|
|
||||||
/* We don't know what this code does ! */
|
|
||||||
*ptr++ = '\0';
|
|
||||||
ptr = skip_space( ptr);
|
|
||||||
if ( *ptr != '\0') ptr++; /* skip ';' */
|
|
||||||
}
|
|
||||||
ptr = skip_space( ptr);
|
|
||||||
}
|
}
|
||||||
|
*(last+1) = '\0';
|
||||||
|
|
||||||
process_operand( op, &operand[ n_ops-1]);
|
process_operand( op, &operand[ n_ops-1]);
|
||||||
return( ptr);
|
return( ptr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue