From: Alan Modra Date: Wed, 18 Oct 2000 02:12:03 +0000 (+0000) Subject: * pa.c (print_operand): Handle case 'c' for .vtable_inherit X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=11881f37b7b4a5a485eaff11dda1c824495a0aaa;p=gcc.git * pa.c (print_operand): Handle case 'c' for .vtable_inherit From-SVN: r36920 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 88a4357540d..88745d9bc84 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 17 20:11:08 2000 Alan Modra + + * pa.c (print_operand): Handle case 'c' for .vtable_inherit + Tue Oct 17 20:05:51 2000 Martin Buchholz * i370.md: Fix spelling typo. diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 9013ac0143d..0a5c4495457 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -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 (); }