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
f6bcb591
Commit
f6bcb591
authored
Jun 11, 2010
by
Jan Hubicka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert accidental commit.
From-SVN: r160614
parent
cff90044
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
14 deletions
+0
-14
gcc/tree-cfgcleanup.c
+0
-14
No files found.
gcc/tree-cfgcleanup.c
View file @
f6bcb591
...
@@ -568,23 +568,9 @@ fixup_noreturn_call (gimple stmt)
...
@@ -568,23 +568,9 @@ fixup_noreturn_call (gimple stmt)
imm_use_iterator
iter
;
imm_use_iterator
iter
;
gimple
use_stmt
;
gimple
use_stmt
;
/* All statements using the OP are unreachable or PHI
statements where the edge correspoing to OP use is unreachable.
We need to remove all normal statements so fixup_cfg will not
try to update them and keep all PHIs but remove use of the SSA
name or verifier will complain. */
FOR_EACH_IMM_USE_STMT
(
use_stmt
,
iter
,
op
)
FOR_EACH_IMM_USE_STMT
(
use_stmt
,
iter
,
op
)
{
if
(
gimple_code
(
use_stmt
)
==
GIMPLE_PHI
)
FOR_EACH_IMM_USE_ON_STMT
(
use_p
,
iter
)
FOR_EACH_IMM_USE_ON_STMT
(
use_p
,
iter
)
SET_USE
(
use_p
,
error_mark_node
);
SET_USE
(
use_p
,
error_mark_node
);
else
{
gimple_stmt_iterator
gsi
=
gsi_for_stmt
(
use_stmt
);
gsi_remove
(
&
gsi
,
true
);
}
}
release_ssa_name
(
op
);
}
}
update_stmt
(
stmt
);
update_stmt
(
stmt
);
changed
=
true
;
changed
=
true
;
...
...
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