From e3947b349cbbe750897b8c81d2e0dfeada17bf84 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 1 Sep 2005 16:35:19 -0700 Subject: re PR middle-end/23676 (ICE: "missing REG_EH_REGION note in the end of bb") PR 23676 * reload1.c (reload_as_needed): Check !CALL_P before calling fixup_eh_region_note. * rtlanal.c (may_trap_p): SUBREG by itself cannot trap. From-SVN: r103751 --- gcc/rtlanal.c | 1 + 1 file changed, 1 insertion(+) (limited to 'gcc/rtlanal.c') diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 6a3be0e..92068a1 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -2166,6 +2166,7 @@ may_trap_p (rtx x) case NEG: case ABS: + case SUBREG: /* These operations don't trap even with floating point. */ break; -- cgit v1.1