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
e0fa93b3
Commit
e0fa93b3
authored
May 31, 2000
by
Richard Henderson
Committed by
Richard Henderson
May 31, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ifcvt.c (cond_exec_process_insns): Don't ever ignore clobbers.
From-SVN: r34316
parent
abb9a4c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+4
-0
gcc/ifcvt.c
+2
-4
No files found.
gcc/ChangeLog
View file @
e0fa93b3
2000-05-31 Richard Henderson <rth@cygnus.com>
2000-05-31 Richard Henderson <rth@cygnus.com>
* ifcvt.c (cond_exec_process_insns): Don't ever ignore clobbers.
2000-05-31 Richard Henderson <rth@cygnus.com>
* flow.c (merge_blocks_nomove): Remove a barrier not following
* flow.c (merge_blocks_nomove): Remove a barrier not following
a jump as well.
a jump as well.
...
...
gcc/ifcvt.c
View file @
e0fa93b3
...
@@ -216,10 +216,8 @@ cond_exec_process_insns (start, end, test, prob_val, mod_ok)
...
@@ -216,10 +216,8 @@ cond_exec_process_insns (start, end, test, prob_val, mod_ok)
if
(
GET_CODE
(
insn
)
!=
INSN
&&
GET_CODE
(
insn
)
!=
CALL_INSN
)
if
(
GET_CODE
(
insn
)
!=
INSN
&&
GET_CODE
(
insn
)
!=
CALL_INSN
)
abort
();
abort
();
/* Remove USE and CLOBBER insns that get in the way. */
/* Remove USE insns that get in the way. */
if
(
reload_completed
if
(
reload_completed
&&
GET_CODE
(
PATTERN
(
insn
))
==
USE
)
&&
(
GET_CODE
(
PATTERN
(
insn
))
==
USE
||
GET_CODE
(
PATTERN
(
insn
))
==
CLOBBER
))
{
{
/* ??? Ug. Actually unlinking the thing is problematic,
/* ??? Ug. Actually unlinking the thing is problematic,
given what we'd have to coordinate with our callers. */
given what we'd have to coordinate with our callers. */
...
...
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