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
7bf0a593
Commit
7bf0a593
authored
Feb 07, 2003
by
Andrey Petrov
Committed by
Richard Henderson
Feb 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* optabs.c (expand_float): Search wider integer modes first.
From-SVN: r62535
parent
01e4596e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ChangeLog
+4
-0
gcc/optabs.c
+4
-4
No files found.
gcc/ChangeLog
View file @
7bf0a593
2003
-
02
-
07
Andrey
Petrov
<
petrov
@netbsd
.
org
>
*
optabs
.
c
(
expand_float
)
:
Search
wider
integer
modes
first
.
2003
-
02
-
07
Bob
Wilson
<
bob
.
wilson
@acm
.
org
>
*
config
/
xtensa
/
xtensa
.
h
(
LIBGCC2_WORDS_BIG_ENDIAN
)
:
Set
this
...
...
gcc/optabs.c
View file @
7bf0a593
...
...
@@ -4807,10 +4807,10 @@ expand_float (to, from, unsignedp)
wider mode. If the integer mode is wider than the mode of FROM,
we can do the conversion signed even if the input is unsigned. */
for
(
imode
=
GET_MODE
(
from
);
i
mode
!=
VOIDmode
;
imode
=
GET_MODE_WIDER_MODE
(
i
mode
))
for
(
fmode
=
GET_MODE
(
to
);
f
mode
!=
VOIDmode
;
fmode
=
GET_MODE_WIDER_MODE
(
f
mode
))
for
(
fmode
=
GET_MODE
(
to
);
f
mode
!=
VOIDmode
;
fmode
=
GET_MODE_WIDER_MODE
(
f
mode
))
for
(
imode
=
GET_MODE
(
from
);
i
mode
!=
VOIDmode
;
imode
=
GET_MODE_WIDER_MODE
(
i
mode
))
{
int
doing_unsigned
=
unsignedp
;
...
...
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