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
d39985fa
Commit
d39985fa
authored
Oct 21, 1992
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(do_store_flag): Ensure we don't get confused when emit_store_flag
fails and an operand has a QUEUED. From-SVN: r2540
parent
1a94ca49
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
gcc/expr.c
+8
-2
No files found.
gcc/expr.c
View file @
d39985fa
...
...
@@ -7160,8 +7160,14 @@ do_store_flag (exp, target, mode, only_cheap)
if
(
target
==
0
)
target
=
gen_reg_rtx
(
mode
);
result
=
emit_store_flag
(
target
,
code
,
op0
,
op1
,
operand_mode
,
unsignedp
,
1
);
/* Pass copies of OP0 and OP1 in case they contain a QUEUED. This is safe
because, if the emit_store_flag does anything it will succeed and
OP0 and OP1 will not be used subsequently. */
result
=
emit_store_flag
(
target
,
code
,
queued_subexp_p
(
op0
)
?
copy_rtx
(
op0
)
:
op0
,
queued_subexp_p
(
op1
)
?
copy_rtx
(
op1
)
:
op1
,
operand_mode
,
unsignedp
,
1
);
if
(
result
)
{
...
...
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