Accept SEQUENCE as well as PARALLEL blocks in FRAME_RELATED_EXPR notes.
From-SVN: r35268
This commit is contained in:
parent
28861379fe
commit
79d1334242
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue