Commit 79d13342 by Nick Clifton Committed by Nick Clifton

Accept SEQUENCE as well as PARALLEL blocks in FRAME_RELATED_EXPR notes.

From-SVN: r35268
parent 28861379
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment