diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/vax/vax.c | 7 | ||||
| -rw-r--r-- | gcc/config/vax/vax.h | 8 |
3 files changed, 11 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9d5ff31..43e1784 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-01-27 Richard Henderson <rth@redhat.com> + + * config/vax/vax.h (ASM_OUTPUT_MI_THUNK): Remove. Really. + 2003-01-28 Alexandre Oliva <aoliva@redhat.com> * config/mips/mips.h (UNITS_PER_HWFPVALUE): Renamed from... diff --git a/gcc/config/vax/vax.c b/gcc/config/vax/vax.c index 69b175f..422b936 100644 --- a/gcc/config/vax/vax.c +++ b/gcc/config/vax/vax.c @@ -714,6 +714,13 @@ reg_was_0_p (insn, op) && ! reg_set_between_p (op, XEXP (link, 0), insn)); } +/* Output code to add DELTA to the first argument, and then jump to FUNCTION. + Used for C++ multiple inheritance. + .mask ^m<r2,r3,r4,r5,r6,r7,r8,r9,r10,r11> #conservative entry mask + addl2 $DELTA, 4(ap) #adjust first argument + jmp FUNCTION+2 #jump beyond FUNCTION's entry mask +*/ + static void vax_output_mi_thunk (file, thunk, delta, vcall_offset, function) FILE *file; diff --git a/gcc/config/vax/vax.h b/gcc/config/vax/vax.h index ec08c0e..f3f1e46 100644 --- a/gcc/config/vax/vax.h +++ b/gcc/config/vax/vax.h @@ -1139,14 +1139,6 @@ enum reg_class { NO_REGS, ALL_REGS, LIM_REG_CLASSES }; assemble_name ((FILE), (NAME)), \ fprintf ((FILE), ",%u\n", (ROUNDED))) -/* Output code to add DELTA to the first argument, and then jump to FUNCTION. - Used for C++ multiple inheritance. - .mask ^m<r2,r3,r4,r5,r6,r7,r8,r9,r10,r11> #conservative entry mask - addl2 $DELTA, 4(ap) #adjust first argument - jmp FUNCTION+2 #jump beyond FUNCTION's entry mask - */ -#define ASM_OUTPUT_MI_THUNK vax_output_mi_thunk - /* Store in OUTPUT a string (made with alloca) containing an assembler-name for a local static variable named NAME. LABELNO is an integer which is different for each call. */ |
