diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b2d7fed02d74..a70aceba4f2d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2010-03-01 Christian Bruel + + * except.c (dw2_build_landing_pads): set LABEL_PRESERVE_P. + 2010-03-01 H.J. Lu * config/i386/linux64.h (ASM_SPEC): Use SPEC_32 and SPEC_64. diff --git a/gcc/except.c b/gcc/except.c index 8012d7818340..bdf98ef4c022 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -974,6 +974,7 @@ dw2_build_landing_pads (void) lp->landing_pad = gen_label_rtx (); emit_label (lp->landing_pad); + LABEL_PRESERVE_P (lp->landing_pad) = 1; #ifdef HAVE_exception_receiver if (HAVE_exception_receiver)