Commit 11881f37 by Alan Modra Committed by Jeff Law

* pa.c (print_operand): Handle case 'c' for .vtable_inherit

From-SVN: r36920
parent 189244a4
Tue Oct 17 20:11:08 2000 Alan Modra <alan@linuxcare.com.au>
* pa.c (print_operand): Handle case 'c' for .vtable_inherit
Tue Oct 17 20:05:51 2000 Martin Buchholz <martin@xemacs.org>
* i370.md: Fix spelling typo.
......
......@@ -4117,6 +4117,11 @@ print_operand (file, x, code)
fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
return;
}
case 'c':
/* We can get here from a .vtable_inherit due to our
CONSTANT_ADDRESS_P rejecting perfectly good constant
addresses. */
break;
default:
abort ();
}
......
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