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
bb60ac63
Commit
bb60ac63
authored
Oct 22, 1996
by
Torbjorn Granlund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(do_store_flag): Don't check if target is 0 in code
emitting store flag as compare-branch. From-SVN: r12993
parent
ab6c58f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
gcc/expr.c
+1
-1
No files found.
gcc/expr.c
View file @
bb60ac63
...
@@ -11081,7 +11081,7 @@ do_store_flag (exp, target, mode, only_cheap)
...
@@ -11081,7 +11081,7 @@ do_store_flag (exp, target, mode, only_cheap)
}
}
/* If this failed, we have to do this with set/compare/jump/set code. */
/* If this failed, we have to do this with set/compare/jump/set code. */
if
(
target
==
0
||
GET_CODE
(
target
)
!=
REG
if
(
GET_CODE
(
target
)
!=
REG
||
reg_mentioned_p
(
target
,
op0
)
||
reg_mentioned_p
(
target
,
op1
))
||
reg_mentioned_p
(
target
,
op0
)
||
reg_mentioned_p
(
target
,
op1
))
target
=
gen_reg_rtx
(
GET_MODE
(
target
));
target
=
gen_reg_rtx
(
GET_MODE
(
target
));
...
...
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