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
This commit is contained in:
Alexandre Oliva 2000-03-07 03:43:03 +00:00 committed by Alexandre Oliva
parent 1c30539d66
commit 141b581084
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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>
* config/sh/sh.c: (barrier_align): Handle a delay slot that is

View File

@ -837,9 +837,9 @@ compute_can_copy ()
if (recog (PATTERN (insn), insn, NULL_PTR) >= 0)
can_copy_p[i] = 1;
#endif
else
can_copy_p[i] = 1;
}
else
can_copy_p[i] = 1;
end_sequence ();