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
1199470c
Commit
1199470c
authored
Oct 30, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Oct 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* real.c (encode_ieee_extended): Back out previous patch.
From-SVN: r73105
parent
f56228e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
gcc/ChangeLog
+4
-0
gcc/real.c
+0
-5
No files found.
gcc/ChangeLog
View file @
1199470c
2003-10-30 Jan Hubicka <jh@suse.cz>
2003-10-30 Jan Hubicka <jh@suse.cz>
* real.c (encode_ieee_extended): Back out previous patch.
2003-10-30 Jan Hubicka <jh@suse.cz>
* real.c (encode_ieee_extended): Initialize whole array.
* real.c (encode_ieee_extended): Initialize whole array.
* reg-stack.c (move_for_stack_reg0: Use always XFmode.
* reg-stack.c (move_for_stack_reg0: Use always XFmode.
* i386-modes.def: Change definitions of TFmode and XFmode.
* i386-modes.def: Change definitions of TFmode and XFmode.
...
...
gcc/real.c
View file @
1199470c
...
@@ -3032,11 +3032,6 @@ encode_ieee_extended (const struct real_format *fmt, long *buf,
...
@@ -3032,11 +3032,6 @@ encode_ieee_extended (const struct real_format *fmt, long *buf,
buf
[
0
]
=
image_hi
<<
16
,
buf
[
1
]
=
sig_hi
,
buf
[
2
]
=
sig_lo
;
buf
[
0
]
=
image_hi
<<
16
,
buf
[
1
]
=
sig_hi
,
buf
[
2
]
=
sig_lo
;
else
else
buf
[
0
]
=
sig_lo
,
buf
[
1
]
=
sig_hi
,
buf
[
2
]
=
image_hi
;
buf
[
0
]
=
sig_lo
,
buf
[
1
]
=
sig_hi
,
buf
[
2
]
=
image_hi
;
/* Avoid uninitialized data to be output by compiler when XFmode is extended
to 128 bits. */
if
(
GET_MODE_SIZE
(
XFmode
)
==
16
)
buf
[
3
]
=
0
;
}
}
static
void
static
void
...
...
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