Commit 55cf9d62 by Richard Henderson Committed by Richard Henderson

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

From-SVN: r79353
parent e5e10fb4
...@@ -3,6 +3,8 @@ ...@@ -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
......
...@@ -2826,7 +2826,7 @@ simplify_relational_operation (enum rtx_code code, ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment