sel-sched-ir.c (invalidate_av_set): Remove the assert.
authorDmitry Melnik <dm@ispras.ru>
Thu, 11 Aug 2011 11:49:16 +0000 (11:49 +0000)
committerAlexander Monakov <amonakov@gcc.gnu.org>
Thu, 11 Aug 2011 11:49:16 +0000 (15:49 +0400)
2011-08-11  Dmitry Melnik  <dm@ispras.ru>

* sel-sched-ir.c (invalidate_av_set): Remove the assert.

From-SVN: r177655

gcc/ChangeLog
gcc/sel-sched-ir.c

index 69c655ee6d9de6888adc4dfc09ce072c28ae38b5..322e85e6bc7814ffa03b27fc531073788b10baf5 100644 (file)
@@ -1,3 +1,7 @@
+2011-08-11  Dmitry Melnik  <dm@ispras.ru>
+
+       * sel-sched-ir.c (invalidate_av_set): Remove the assert.
+
 2011-08-11  Sergey Grechanik  <mouseentity@ispras.ru>
 
        * sel-sched-ir.h (register_unavailable_p): Declare.
index 58aec1190f6e1307828278f266eecf239abe0b15..4fa283732cb184eb068d8da8698825e94de98d89 100644 (file)
@@ -4284,14 +4284,13 @@ free_lv_sets (void)
       free_lv_set (bb);
 }
 
-/* Initialize an invalid AV_SET for BB.
-   This set will be updated next time compute_av () process BB.  */
+/* Mark AV_SET for BB as invalid, so this set will be updated the next time
+   compute_av() processes BB.  This function is called when creating new basic
+   blocks, as well as for blocks (either new or existing) where new jumps are
+   created when the control flow is being updated.  */
 static void
 invalidate_av_set (basic_block bb)
 {
-  gcc_assert (BB_AV_LEVEL (bb) <= 0
-             && BB_AV_SET (bb) == NULL);
-
   BB_AV_LEVEL (bb) = -1;
 }