diff options
author | Nick Clifton <nickc@redhat.com> | 2015-01-21 09:34:38 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2015-01-21 09:34:38 +0000 |
commit | cf836bd3d6131ab09f30a04cfb2920d70af55a54 (patch) | |
tree | 22810ae9bfe01576844f0df080892153cd01118d /gcc | |
parent | cbf5d0e70c98103d28c869305043d9889bb36c8f (diff) | |
download | gcc-cf836bd3d6131ab09f30a04cfb2920d70af55a54.zip gcc-cf836bd3d6131ab09f30a04cfb2920d70af55a54.tar.gz gcc-cf836bd3d6131ab09f30a04cfb2920d70af55a54.tar.bz2 |
rl78.c (rl78_calculate_death_notes): Look inside PARALLELs.
* config/rl78/rl78.c (rl78_calculate_death_notes): Look inside
PARALLELs.
From-SVN: r219929
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rl78/rl78.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c6600d9..eda4b2d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +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 diff --git a/gcc/config/rl78/rl78.c b/gcc/config/rl78/rl78.c index 4cf271c..ebb25dd 100644 --- a/gcc/config/rl78/rl78.c +++ b/gcc/config/rl78/rl78.c @@ -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: |