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
81722fa9
Commit
81722fa9
authored
Sep 09, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_store_flag, expand_divmod): Use convert_modes.
From-SVN: r5295
parent
b0bfa186
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
gcc/expmed.c
+5
-5
No files found.
gcc/expmed.c
View file @
81722fa9
...
...
@@ -2369,9 +2369,9 @@ expand_divmod (rem_flag, code, mode, op0, op1, target, unsignedp)
something. */
if
(
compute_mode
!=
mode
)
{
adjusted_op0
=
op0
=
convert_
to_mode
(
compute_
mode
,
op0
,
unsignedp
);
adjusted_op0
=
op0
=
convert_
modes
(
compute_mode
,
mode
,
op0
,
unsignedp
);
can_clobber_op0
=
1
;
op1
=
convert_
to_mode
(
compute_
mode
,
op1
,
unsignedp
);
op1
=
convert_
modes
(
compute_mode
,
mode
,
op1
,
unsignedp
);
}
/* If we are computing the remainder and one of the operands is a volatile
...
...
@@ -2887,7 +2887,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
if
(
GET_MODE_SIZE
(
target_mode
)
>
GET_MODE_SIZE
(
mode
))
{
op0
=
protect_from_queue
(
op0
,
0
);
op0
=
convert_
to_mode
(
target_
mode
,
op0
,
0
);
op0
=
convert_
modes
(
target_mode
,
mode
,
op0
,
0
);
mode
=
target_mode
;
}
...
...
@@ -3127,9 +3127,9 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
tem
=
expand_unop
(
mode
,
ffs_optab
,
op0
,
subtarget
,
1
);
else
if
(
GET_MODE_SIZE
(
mode
)
<
UNITS_PER_WORD
)
{
mode
=
word_mode
;
op0
=
protect_from_queue
(
op0
,
0
);
tem
=
convert_to_mode
(
mode
,
op0
,
1
);
tem
=
convert_to_mode
(
word_mode
,
mode
,
op0
,
1
);
mode
=
word_mode
;
}
if
(
tem
!=
0
)
...
...
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