predict.c: (expected_value_to_br_prob): Check for const_true_rtx instead of const1_rt...
authorToshiyasu Morita <toshiyasu.morita@hsa.hitachi.com>
Fri, 22 Jun 2001 22:08:51 +0000 (22:08 +0000)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 22 Jun 2001 22:08:51 +0000 (15:08 -0700)
        * predict.c: (expected_value_to_br_prob): Check for const_true_rtx
        instead of const1_rtx for true case.

From-SVN: r43517

gcc/ChangeLog
gcc/predict.c

index 1b6a6892ac1dbc8518bba43591bae751b17ed736..323b21bbc8c9c3ea6cb9850aff8650cf34dc695c 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-22  Toshiyasu Morita  (toshiyasu.morita@hsa.hitachi.com)
+
+       * predict.c: (expected_value_to_br_prob): Check for const_true_rtx
+       instead of const1_rtx for true case.
+
 2001-06-22  David Mosberger  <davidm@hpl.hp.com>
 
        * config/ia64/crtfastmath.c: New file.
index e51128264dbef9cd31aa0e3f6f8d05ee01a7fa12..4b29e592093d716e6acabdfe2fe1c841b97eb2de 100644 (file)
@@ -521,10 +521,10 @@ expected_value_to_br_prob ()
       cond = simplify_rtx (cond);
 
       /* Turn the condition into a scaled branch probability.  */
-      if (cond != const1_rtx && cond != const0_rtx)
+      if (cond != const_true_rtx && cond != const0_rtx)
        abort ();
       predict_insn_def (insn, PRED_BUILTIN_EXPECT,
-                       cond == const1_rtx ? TAKEN : NOT_TAKEN);
+                       cond == const_true_rtx ? TAKEN : NOT_TAKEN);
     }
 }
 \f