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
c4361cd7
Commit
c4361cd7
authored
Oct 29, 2003
by
Hans-Peter Nilsson
Committed by
Hans-Peter Nilsson
Oct 29, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* real.c (do_divide): Initialize result with a 0.
From-SVN: r73066
parent
a207b594
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
gcc/ChangeLog
+2
-0
gcc/real.c
+2
-0
No files found.
gcc/ChangeLog
View file @
c4361cd7
2003-10-29 Hans-Peter Nilsson <hp@axis.com>
2003-10-29 Hans-Peter Nilsson <hp@axis.com>
* real.c (do_divide): Initialize result with a 0.
* configure.in <enable-checking for valgrind>: Look for
* configure.in <enable-checking for valgrind>: Look for
<valgrind/memcheck.h> first. AC_DEFINE HAVE_VALGRIND_MEMCHECK_H
<valgrind/memcheck.h> first. AC_DEFINE HAVE_VALGRIND_MEMCHECK_H
if it exists.
if it exists.
...
...
gcc/real.c
View file @
c4361cd7
...
@@ -858,6 +858,8 @@ do_divide (REAL_VALUE_TYPE *r, const REAL_VALUE_TYPE *a,
...
@@ -858,6 +858,8 @@ do_divide (REAL_VALUE_TYPE *r, const REAL_VALUE_TYPE *a,
else
else
rr
=
r
;
rr
=
r
;
/* Make sure all fields in the result are initialized. */
get_zero
(
rr
,
0
);
rr
->
class
=
rvc_normal
;
rr
->
class
=
rvc_normal
;
rr
->
sign
=
sign
;
rr
->
sign
=
sign
;
...
...
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