(print_operand): Don't abort if error: might have been a user asm.

From-SVN: r2141
This commit is contained in:
James Van Artsdalen 1992-09-17 05:21:44 +00:00
parent 442426450e
commit 68daafd46e

View File

@ -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)