(print_operand): Don't abort if error: might have been a user asm.
From-SVN: r2141
This commit is contained in:
parent
442426450e
commit
68daafd46e
@ -1058,7 +1058,12 @@ print_operand (file, x, code)
|
||||
break;
|
||||
|
||||
default:
|
||||
abort ();
|
||||
{
|
||||
char str[50];
|
||||
|
||||
sprintf (str, "invalid operand code `%c'", code);
|
||||
output_operand_lossage (str);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (GET_CODE (x) == REG)
|
||||
|
Loading…
Reference in New Issue
Block a user