Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e140d617
Commit
e140d617
authored
Mar 09, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* real.c (real_nan): Remove neg.
From-SVN: r96169
parent
d300f6bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/real.c
+1
-2
No files found.
gcc/ChangeLog
View file @
e140d617
...
...
@@ -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
...
...
gcc/real.c
View file @
e140d617
...
...
@@ -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'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment