aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2001-10-11 11:48:42 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-10-11 11:48:42 -0700
commit4a8d0c9c68d8ce12453255695bfab8b2111dd772 (patch)
tree36b169e5937e71fb76f555ec055b161e29728e84 /gcc/combine.c
parent94e091c8336b9ec8ed70f5e0b9b5b31b189f10a4 (diff)
downloadgcc-4a8d0c9c68d8ce12453255695bfab8b2111dd772.zip
gcc-4a8d0c9c68d8ce12453255695bfab8b2111dd772.tar.gz
gcc-4a8d0c9c68d8ce12453255695bfab8b2111dd772.tar.bz2
rtl.h (REG_VTABLE_REF): New.
* rtl.h (REG_VTABLE_REF): New. * rtl.c (reg_note_name): Add it. * combine.c (distribute_notes): Handle it. * final.c (final_scan_insn): Handle it. * tree.def (VTABLE_REF): New. * expr.c (expand_expr): Handle it. * varasm.c (assemble_vtable_entry, assemble_vtable_inherit): New. * output.h: Declare them. cp/ * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead of an asm statement. (build_vtbl_ref_1): Split out from build_vtbl_ref. (build_vfn_ref): Use it to handle vtable descriptors before calling build_vtable_entry_ref. * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit. testsuite/ * g++.old-deja/g++.other/crash18.C: Add -S to options. From-SVN: r46195
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 12225db..e16cb4d 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -11952,6 +11952,12 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
place = i3;
break;
+ case REG_VTABLE_REF:
+ /* ??? Should remain with *a particular* memory load. Given the
+ nature of vtable data, the last insn seems relatively safe. */
+ place = i3;
+ break;
+
case REG_NON_LOCAL_GOTO:
if (GET_CODE (i3) == JUMP_INSN)
place = i3;