From: Doug Evans Date: Thu, 5 Jan 1995 17:37:00 +0000 (+0000) Subject: (get_condition): Use CONST0_RTX instead of const0_rtx. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a18b5d986c46258e4290d86005195e89522a480d;p=gcc.git (get_condition): Use CONST0_RTX instead of const0_rtx. From-SVN: r8721 --- diff --git a/gcc/loop.c b/gcc/loop.c index 885a7f46a54..bb48a9ef1c4 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -6397,7 +6397,7 @@ get_condition (jump, earliest) the same tests as a function of STORE_FLAG_VALUE as find_comparison_args in cse.c */ - while (GET_RTX_CLASS (code) == '<' && op1 == const0_rtx) + while (GET_RTX_CLASS (code) == '<' && op1 == CONST0_RTX (GET_MODE (op0))) { /* Set non-zero when we find something of interest. */ rtx x = 0;