From 55cf9d623fd339cb4d8c07c09bb1b3442d4caca1 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 11 Mar 2004 15:48:02 -0800 Subject: [PATCH] * simplify-rtx.c (simplify_relational_operation): Fix typo. From-SVN: r79353 --- gcc/ChangeLog | 2 ++ gcc/simplify-rtx.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2f0a247dc43..6c254ec8727 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -3,6 +3,8 @@ PR target/14539 * config/alpha/alpha.h (STACK_BOUNDARY): Set to 128. + * simplify-rtx.c (simplify_relational_operation): Fix typo. + 2004-03-11 Richard Henderson PR middle-end/14477 diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 2846bb7a80d..ffb05d503d2 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -2826,7 +2826,7 @@ simplify_relational_operation (enum rtx_code code, { if (tmp == const0_rtx) return CONST0_RTX (mode); - return CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALE (mode), + return CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALUE (mode), mode); } #endif -- 2.30.2