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