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
0c316b20
Commit
0c316b20
authored
Oct 31, 1993
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(do_store_flag): For equality test of a single bit, use
subtarget instead of target in calls. From-SVN: r5956
parent
c88aeaf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/expr.c
+3
-3
No files found.
gcc/expr.c
View file @
0c316b20
...
...
@@ -8941,18 +8941,18 @@ do_store_flag (exp, target, mode, only_cheap)
if
(
bitnum
!=
0
)
op0
=
expand_shift
(
RSHIFT_EXPR
,
GET_MODE
(
op0
),
op0
,
size_int
(
bitnum
),
target
,
ops_unsignedp
);
size_int
(
bitnum
),
sub
target
,
ops_unsignedp
);
if
(
GET_MODE
(
op0
)
!=
mode
)
op0
=
convert_to_mode
(
mode
,
op0
,
ops_unsignedp
);
if
((
code
==
EQ
&&
!
invert
)
||
(
code
==
NE
&&
invert
))
op0
=
expand_binop
(
mode
,
xor_optab
,
op0
,
const1_rtx
,
target
,
op0
=
expand_binop
(
mode
,
xor_optab
,
op0
,
const1_rtx
,
sub
target
,
ops_unsignedp
,
OPTAB_LIB_WIDEN
);
/* Put the AND last so it can combine with more things. */
if
(
bitnum
!=
TYPE_PRECISION
(
type
)
-
1
)
op0
=
expand_and
(
op0
,
const1_rtx
,
target
);
op0
=
expand_and
(
op0
,
const1_rtx
,
sub
target
);
return
op0
;
}
...
...
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