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
7bfa4bc5
Commit
7bfa4bc5
authored
Mar 06, 2015
by
Jonathan Wakely
Committed by
Jonathan Wakely
Mar 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* real.c (real_from_string): Fix typo in assertion.
From-SVN: r221235
parent
1dfc8b24
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/real.c
+1
-1
No files found.
gcc/ChangeLog
View file @
7bfa4bc5
2015-03-06 Jonathan Wakely <jwakely@redhat.com>
* real.c (real_from_string): Fix typo in assertion.
2015-03-06 Alex Velenko <alex.velenko@arm.com>
2015-03-06 Alex Velenko <alex.velenko@arm.com>
* ChangeLog (2015-03-05): Reflect Richard Henderson as actual author of
* ChangeLog (2015-03-05): Reflect Richard Henderson as actual author of
...
...
gcc/real.c
View file @
7bfa4bc5
...
@@ -2075,7 +2075,7 @@ real_from_string (REAL_VALUE_TYPE *r, const char *str)
...
@@ -2075,7 +2075,7 @@ real_from_string (REAL_VALUE_TYPE *r, const char *str)
because the hex digits used in real_from_mpfr did not
because the hex digits used in real_from_mpfr did not
start with a digit 8 to f, but the exponent bounds above
start with a digit 8 to f, but the exponent bounds above
should have avoided underflow or overflow. */
should have avoided underflow or overflow. */
gcc_assert
(
r
->
cl
=
rvc_normal
);
gcc_assert
(
r
->
cl
=
=
rvc_normal
);
/* Set a sticky bit if mpfr_strtofr was inexact. */
/* Set a sticky bit if mpfr_strtofr was inexact. */
r
->
sig
[
0
]
|=
inexact
;
r
->
sig
[
0
]
|=
inexact
;
mpfr_clear
(
m
);
mpfr_clear
(
m
);
...
...
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