Commit e140d617 by Kazu Hirata Committed by Kazu Hirata

* real.c (real_nan): Remove neg.

From-SVN: r96169
parent d300f6bb
......@@ -14,6 +14,8 @@
* loop-unroll.c (analyze_insns_in_loop): Remove preheader.
* real.c (real_nan): Remove neg.
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed
......
......@@ -2117,7 +2117,6 @@ real_nan (REAL_VALUE_TYPE *r, const char *str, int quiet,
else
{
int base = 10, d;
bool neg = false;
memset (r, 0, sizeof (*r));
r->cl = rvc_nan;
......@@ -2127,7 +2126,7 @@ real_nan (REAL_VALUE_TYPE *r, const char *str, int quiet,
while (ISSPACE (*str))
str++;
if (*str == '-')
str++, neg = true;
str++;
else if (*str == '+')
str++;
if (*str == '0')
......
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