]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* haifa-sched.c: (get_block_head_tail) Remove unneeded initialization.
authorThomas Koenig <ig25@mvmap66.ciw.uni-karlsruhe.de>
Wed, 1 Oct 1997 05:08:31 +0000 (05:08 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 1 Oct 1997 05:08:31 +0000 (23:08 -0600)
From-SVN: r15815

gcc/ChangeLog
gcc/haifa-sched.c

index 0d6a891072242e53b0e2e13e0a7d2fa7a6bd8905..21740abbf44d7fe2d1031ac82519d2d40a84842c 100644 (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
index 38e2892aacf0e90aa893ef9886745616829927dc..36f3c92225d4bc7b28d544784dc9cc856a894c18 100644 (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);