Commit 68daafd4 by James Van Artsdalen

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

From-SVN: r2141
parent 44242645
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment