* haifa-sched.c: (get_block_head_tail) Remove unneeded initialization.

From-SVN: r15815
This commit is contained in:
Thomas Koenig 1997-10-01 05:08:31 +00:00 committed by Jeff Law
parent e9d0757e5c
commit 55d8971965
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Tue Sep 30 23:09:40 1997 Thomas Koenig <ig25@mvmap66.ciw.uni-karlsruhe.de>
* haifa-sched.c: (get_block_head_tail) Remove unneeded initialization.
Tue Sep 30 23:06:43 1997 Richard Henderson <rth@cygnus.com>
* alpha.md (beq): For registers and ints 0-255, use cmpeq+bne, since

View File

@ -4812,8 +4812,8 @@ get_block_head_tail (bb, headp, tailp)
rtx *tailp;
{
rtx head = *headp;
rtx tail = *tailp;
rtx head;
rtx tail;
int b;
b = BB_TO_BLOCK (bb);