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
987e845a
Commit
987e845a
authored
Mar 18, 1997
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(if_then_else_cond): Call copy_rtx to prevent sharing.
From-SVN: r13736
parent
f75487ff
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
gcc/combine.c
+8
-0
No files found.
gcc/combine.c
View file @
987e845a
...
...
@@ -6512,6 +6512,14 @@ if_then_else_cond (x, ptrue, pfalse)
if
((
cond0
!=
0
||
cond1
!=
0
)
&&
!
(
cond0
!=
0
&&
cond1
!=
0
&&
!
rtx_equal_p
(
cond0
,
cond1
)))
{
/* If if_then_else_cond returned zero, then true/false are the
same rtl. We must copy one of them to prevent invalid rtl
sharing. */
if
(
cond0
==
0
)
true0
=
copy_rtx
(
true0
);
else
if
(
cond1
==
0
)
true1
=
copy_rtx
(
true1
);
*
ptrue
=
gen_binary
(
code
,
mode
,
true0
,
true1
);
*
pfalse
=
gen_binary
(
code
,
mode
,
false0
,
false1
);
return
cond0
?
cond0
:
cond1
;
...
...
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