Accept SEQUENCE as well as PARALLEL blocks in FRAME_RELATED_EXPR notes.

From-SVN: r35268
This commit is contained in:
Nick Clifton 2000-07-26 20:59:32 +00:00 committed by Nick Clifton
parent 28861379fe
commit 79d1334242
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-07-26 Nick Clifton <nickc@cygnus.com>
* dwarf2out.c (dwarf2out_frame_debug_expr): Accept SEQUENCE as
well as PARALLEL blocks in FRAME_RELATED_EXPR notes.
2000-07-26 Alexandre Oliva <aoliva@redhat.com>
* c-decl.c (finish_enum): Convert enumerations that fit in an

View File

@ -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);