Commit f85cf636 by Richard Kenner Committed by Richard Kenner

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
parent cf2e003b
Sun May 21 16:42:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* combine.c (try_combine): Handle i3_subst_into_i2 case when I2 is
not a PARALLEL.
2000-05-20 Alexandre Oliva <aoliva@cygnus.com>
* config/mn10300/mn10300.md (movdi, movdf): 64-bit clean-up.
......@@ -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)
{
......
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