haifa-sched.c (schedule_insns): Fix typo in freeing forward_dependency_cache.
authorVladimir Makarov <vmakarov@touchme.toronto.redhat.com>
Fri, 6 Oct 2000 21:01:06 +0000 (21:01 +0000)
committerVladimir Makarov <vmakarov@gcc.gnu.org>
Fri, 6 Oct 2000 21:01:06 +0000 (21:01 +0000)
2000-10-06  Vladimir Makarov  <vmakarov@touchme.toronto.redhat.com>

* haifa-sched.c (schedule_insns): Fix typo in freeing
forward_dependency_cache.

From-SVN: r36762

gcc/ChangeLog
gcc/haifa-sched.c

index c989372..8d3af12 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-06  Vladimir Makarov  <vmakarov@touchme.toronto.redhat.com>
+
+       * haifa-sched.c (schedule_insns): Fix typo in freeing
+       forward_dependency_cache.
+
 2000-10-06  Alexandre Oliva  <aoliva@redhat.com>
 
        * config/sh/sh.md (calli_pcrel, call_valuei_pcrel): Add
index 869cdc4..bf9db0d 100644 (file)
@@ -7155,7 +7155,7 @@ schedule_insns (dump_file)
       free (output_dependency_cache);
       output_dependency_cache = NULL;
 #ifdef ENABLE_CHECKING
-      free (output_dependency_cache);
+      free (forward_dependency_cache);
       forward_dependency_cache = NULL;
 #endif
     }