From: Richard Henderson Date: Thu, 11 Mar 2004 23:48:02 +0000 (-0800) Subject: * simplify-rtx.c (simplify_relational_operation): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=55cf9d623fd339cb4d8c07c09bb1b3442d4caca1;p=gcc.git * simplify-rtx.c (simplify_relational_operation): Fix typo. From-SVN: r79353 --- 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