projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
189244a
)
* pa.c (print_operand): Handle case 'c' for .vtable_inherit
author
Alan Modra
<alan@linuxcare.com.au>
Wed, 18 Oct 2000 02:12:03 +0000
(
02:12
+0000)
committer
Jeff Law
<law@gcc.gnu.org>
Wed, 18 Oct 2000 02:12:03 +0000
(20:12 -0600)
From-SVN: r36920
gcc/ChangeLog
patch
|
blob
|
history
gcc/config/pa/pa.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 88a4357540df2b99b685e564469191c3b96bb8a4..88745d9bc8460c3fe268f50cb0747854fd103071 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-1,3
+1,7
@@
+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.
diff --git
a/gcc/config/pa/pa.c
b/gcc/config/pa/pa.c
index 9013ac0143d1170b4ce552ce3714b29d39737174..0a5c4495457a21ce4800a5fad0c6a9f695ae1460 100644
(file)
--- 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 ();
}