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
a8d6055a
Commit
a8d6055a
authored
Jul 19, 2017
by
Gerald Pfeifer
Committed by
Gerald Pfeifer
Jul 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* math/powq.c (powq): Use uint32_t instead of u_int32_t.
From-SVN: r250367
parent
304a15ec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
libquadmath/ChangeLog
+4
-0
libquadmath/math/powq.c
+1
-1
No files found.
libquadmath/ChangeLog
View file @
a8d6055a
2017-07-19 Gerald Pfeifer <gerald@pfeifer.com>
* math/powq.c (powq): Use uint32_t instead of u_int32_t.
2017-07-19 Jakub Jelinek <jakub@redhat.com>
2017-07-19 Jakub Jelinek <jakub@redhat.com>
PR libquadmath/65757
PR libquadmath/65757
...
...
libquadmath/math/powq.c
View file @
a8d6055a
...
@@ -263,7 +263,7 @@ powq (__float128 x, __float128 y)
...
@@ -263,7 +263,7 @@ powq (__float128 x, __float128 y)
/* sgn (sign of result -ve**odd) = -1 else = 1 */
/* sgn (sign of result -ve**odd) = -1 else = 1 */
sgn
=
one
;
sgn
=
one
;
if
(((((
u
_
int32_t
)
hx
>>
31
)
-
1
)
|
(
yisint
-
1
))
==
0
)
if
(((((
uint32_t
)
hx
>>
31
)
-
1
)
|
(
yisint
-
1
))
==
0
)
sgn
=
-
one
;
/* (-ve)**(odd int) */
sgn
=
-
one
;
/* (-ve)**(odd int) */
/* |y| is huge.
/* |y| is huge.
...
...
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