Commit cf836bd3 by Nick Clifton Committed by Nick Clifton

rl78.c (rl78_calculate_death_notes): Look inside PARALLELs.

	* config/rl78/rl78.c (rl78_calculate_death_notes): Look inside
	PARALLELs.

From-SVN: r219929
parent cbf5d0e7
2015-01-21 Nick Clifton <nickc@redhat.com>
* config/rl78/rl78.c (rl78_calculate_death_notes): Look inside
PARALLELs.
2015-01-21 Richard Biener <rguenther@suse.de>
PR middle-end/64313
......
......@@ -3583,6 +3583,8 @@ rl78_calculate_death_notes (void)
{
case INSN:
p = PATTERN (insn);
if (GET_CODE (p) == PARALLEL)
p = XVECEXP (p, 0, 0);
switch (GET_CODE (p))
{
case SET:
......
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