aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.h
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/rtl.h
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/rtl.h')
-rw-r--r--gcc/rtl.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h
index 37a204c..4c0eb2c 100644
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -579,7 +579,11 @@ enum reg_note
REG_SETJMP,
/* Indicate calls that always returns. */
- REG_ALWAYS_RETURN
+ REG_ALWAYS_RETURN,
+
+ /* Indicate that the memory load references a vtable. The expression
+ is of the form (plus (symbol_ref vtable_sym) (const_int offset)). */
+ REG_VTABLE_REF
};
/* The base value for branch probability notes. */