Commit 141b5810 by Alexandre Oliva Committed by Alexandre Oliva

gcse.c (compute_can_copy): Adjust if/else blocks from rth's patch from 2000-01-28.

* gcse.c (compute_can_copy): Adjust if/else blocks from rth's
patch from 2000-01-28.

From-SVN: r32375
parent 1c30539d
2000-03-06 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* gcse.c (compute_can_copy): Adjust if/else blocks from rth's
patch from 2000-01-28.
2000-03-06 Clinton Popetz <cpopetz@cygnus.com> 2000-03-06 Clinton Popetz <cpopetz@cygnus.com>
* config/sh/sh.c: (barrier_align): Handle a delay slot that is * config/sh/sh.c: (barrier_align): Handle a delay slot that is
......
...@@ -837,9 +837,9 @@ compute_can_copy () ...@@ -837,9 +837,9 @@ compute_can_copy ()
if (recog (PATTERN (insn), insn, NULL_PTR) >= 0) if (recog (PATTERN (insn), insn, NULL_PTR) >= 0)
can_copy_p[i] = 1; can_copy_p[i] = 1;
#endif #endif
else
can_copy_p[i] = 1;
} }
else
can_copy_p[i] = 1;
end_sequence (); end_sequence ();
......
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