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
9691f3a1
Commit
9691f3a1
authored
Feb 08, 1999
by
Donn Terry
Committed by
Richard Henderson
Feb 08, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* real.c (PUT_REAL) [XFmode]: Zero the balance of the structure.
From-SVN: r25081
parent
e6a3e2ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+4
-0
gcc/real.c
+6
-1
No files found.
gcc/ChangeLog
View file @
9691f3a1
Mon
Feb
8
11
:
43
:
07
1999
Donn
Terry
<
donn
@interix
.
com
>
*
real
.
c
(
PUT_REAL
)
[
XFmode
]
:
Zero
the
balance
of
the
structure
.
Mon
Feb
8
11
:
37
:
24
1999
Marc
Espie
(
espie
@cvs
.
openbsd
.
org
)
Mon
Feb
8
11
:
37
:
24
1999
Marc
Espie
(
espie
@cvs
.
openbsd
.
org
)
*
m88k
/
t
-
luna
-
gas
:
Remove
bash
dependency
.
*
m88k
/
t
-
luna
-
gas
:
Remove
bash
dependency
.
...
...
gcc/real.c
View file @
9691f3a1
...
@@ -248,7 +248,12 @@ unknown arithmetic type
...
@@ -248,7 +248,12 @@ unknown arithmetic type
#define MAXDECEXP 4932
#define MAXDECEXP 4932
#define MINDECEXP -4956
#define MINDECEXP -4956
#define GET_REAL(r,e) bcopy ((char *) r, (char *) e, 2*NE)
#define GET_REAL(r,e) bcopy ((char *) r, (char *) e, 2*NE)
#define PUT_REAL(e,r) bcopy ((char *) e, (char *) r, 2*NE)
#define PUT_REAL(e,r) \
do { \
if (2*NE < sizeof(*r)) \
bzero((char *)r, sizeof(*r)); \
bcopy ((char *) e, (char *) r, 2*NE); \
} while (0)
#else
/* no XFmode */
#else
/* no XFmode */
#if LONG_DOUBLE_TYPE_SIZE == 128
#if LONG_DOUBLE_TYPE_SIZE == 128
#define NE 10
#define NE 10
...
...
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