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
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/optabs.c
+2
-2
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
>
2003
-
02
-
07
Bob
Wilson
<
bob
.
wilson
@acm
.
org
>
*
config
/
xtensa
/
xtensa
.
h
(
LIBGCC2_WORDS_BIG_ENDIAN
)
:
Set
this
*
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)
...
@@ -4807,10 +4807,10 @@ expand_float (to, from, unsignedp)
wider mode. If the integer mode is wider than the mode of FROM,
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. */
we can do the conversion signed even if the input is unsigned. */
for
(
imode
=
GET_MODE
(
from
);
imode
!=
VOIDmode
;
imode
=
GET_MODE_WIDER_MODE
(
imode
))
for
(
fmode
=
GET_MODE
(
to
);
fmode
!=
VOIDmode
;
for
(
fmode
=
GET_MODE
(
to
);
fmode
!=
VOIDmode
;
fmode
=
GET_MODE_WIDER_MODE
(
fmode
))
fmode
=
GET_MODE_WIDER_MODE
(
fmode
))
for
(
imode
=
GET_MODE
(
from
);
imode
!=
VOIDmode
;
imode
=
GET_MODE_WIDER_MODE
(
imode
))
{
{
int
doing_unsigned
=
unsignedp
;
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