From: Nick Clifton Date: Wed, 26 Jul 2000 20:59:32 +0000 (+0000) Subject: Accept SEQUENCE as well as PARALLEL blocks in FRAME_RELATED_EXPR notes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=79d1334242dca47a8ecc4c1e70e25a636f6dfca3;p=gcc.git Accept SEQUENCE as well as PARALLEL blocks in FRAME_RELATED_EXPR notes. From-SVN: r35268 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 52399578e99..b82d67dc48a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-07-26 Nick Clifton + + * dwarf2out.c (dwarf2out_frame_debug_expr): Accept SEQUENCE as + well as PARALLEL blocks in FRAME_RELATED_EXPR notes. + 2000-07-26 Alexandre Oliva * c-decl.c (finish_enum): Convert enumerations that fit in an diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 880afb120c5..01911a03790 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -1228,7 +1228,8 @@ dwarf2out_frame_debug_expr (expr, label) are processed only if they are SETs and the RTX_FRAME_RELATED_P flag is set in them. */ - if (GET_CODE (expr) == PARALLEL) + if (GET_CODE (expr) == PARALLEL + || GET_CODE (expr) == SEQUENCE) { int par_index; int limit = XVECLEN (expr, 0);