* simplify-rtx.c (simplify_relational_operation): Fix typo.

From-SVN: r79353
This commit is contained in:
Richard Henderson 2004-03-11 15:48:02 -08:00 committed by Richard Henderson
parent e5e10fb4a3
commit 55cf9d623f
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@
PR target/14539 PR target/14539
* config/alpha/alpha.h (STACK_BOUNDARY): Set to 128. * config/alpha/alpha.h (STACK_BOUNDARY): Set to 128.
* simplify-rtx.c (simplify_relational_operation): Fix typo.
2004-03-11 Richard Henderson <rth@redhat.com> 2004-03-11 Richard Henderson <rth@redhat.com>
PR middle-end/14477 PR middle-end/14477

View File

@ -2826,7 +2826,7 @@ simplify_relational_operation (enum rtx_code code,
{ {
if (tmp == const0_rtx) if (tmp == const0_rtx)
return CONST0_RTX (mode); 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); mode);
} }
#endif #endif