cfgrtl.c (rtl_verify_flow_info_1): Use JUMP_P instead of INSN_P.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 3 Dec 2004 07:43:39 +0000 (07:43 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 3 Dec 2004 07:43:39 +0000 (07:43 +0000)
* cfgrtl.c (rtl_verify_flow_info_1): Use JUMP_P instead of
INSN_P.

From-SVN: r91677

gcc/ChangeLog
gcc/cfgrtl.c

index 6298db471221b03b439d61c5cf6e1a9baa6cf9f2..e0557159d620abfe4f11417920f676225af66f4a 100644 (file)
@@ -3,6 +3,9 @@
        * tree-ssa-dom.c (record_equivalences_from_phis): Remove an
        "if" whose condition is always true.
 
+       * cfgrtl.c (rtl_verify_flow_info_1): Use JUMP_P instead of
+       INSN_P.
+
 2004-12-02  Stan Shebs  <shebs@apple.com>
 
        * config/rs6000/rs6000.c (rs6000_override_options): Make 64-bit
index ec92966fb87666690c741970ef3d35442ce75eee..90bd95f845cfce02d203ed19269e9ded6c37005a 100644 (file)
@@ -1973,7 +1973,7 @@ rtl_verify_flow_info_1 (void)
       rtx note;
       edge_iterator ei;
 
-      if (INSN_P (BB_END (bb))
+      if (JUMP_P (BB_END (bb))
          && (note = find_reg_note (BB_END (bb), REG_BR_PROB, NULL_RTX))
          && EDGE_COUNT (bb->succs) >= 2
          && any_condjump_p (BB_END (bb)))