aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2000-05-21 21:50:47 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2000-05-21 17:50:47 -0400
commitf85cf63648f6612b7638347f387ba2971ddaf820 (patch)
tree5e889c5a3e878d5049e298b4e6e19aae69855869 /gcc/combine.c
parentcf2e003bf103122cf68236dca04f20c958f189ef (diff)
downloadgcc-f85cf63648f6612b7638347f387ba2971ddaf820.zip
gcc-f85cf63648f6612b7638347f387ba2971ddaf820.tar.gz
gcc-f85cf63648f6612b7638347f387ba2971ddaf820.tar.bz2
combine.c (try_combine): Handle i3_subst_into_i2 case when I2 is not a PARALLEL.
* combine.c (try_combine): Handle i3_subst_into_i2 case when I2 is not a PARALLEL. From-SVN: r34068
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 5d0806d..78bfbd0 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -2512,7 +2512,7 @@ try_combine (i3, i2, i1, new_direct_jump_p)
actually came from I3, so that REG_UNUSED notes from I2 will be
properly handled. */
- if (i3_subst_into_i2)
+ if (i3_subst_into_i2 && GET_CODE (PATTERN (i2)) == PARALLEL)
{
if (GET_CODE (PATTERN (i2)) == PARALLEL)
{