From a18b5d986c46258e4290d86005195e89522a480d Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Thu, 5 Jan 1995 17:37:00 +0000 Subject: [PATCH] (get_condition): Use CONST0_RTX instead of const0_rtx. From-SVN: r8721 --- gcc/loop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2