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
fbf83349
Commit
fbf83349
authored
Jun 18, 2001
by
Jeffrey A Law
Committed by
Jeff Law
Jun 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dce.c (eliminate_dead_code): Fix formatting glitch.
From-SVN: r43447
parent
b2af8e32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
gcc/ChangeLog
+4
-0
gcc/dce.c
+6
-5
No files found.
gcc/ChangeLog
View file @
fbf83349
Mon
Jun
18
12
:
50
:
49
2001
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
dce
.
c
(
eliminate_dead_code
)
:
Fix
formatting
glitch
.
2001
-
06
-
18
Jason
Merrill
<
jason_merrill
@redhat
.
com
>
2001
-
06
-
18
Jason
Merrill
<
jason_merrill
@redhat
.
com
>
*
c
-
common
.
h
(
RETURN_NULLIFIED_P
)
:
New
macro
.
*
c
-
common
.
h
(
RETURN_NULLIFIED_P
)
:
New
macro
.
...
...
gcc/dce.c
View file @
fbf83349
...
@@ -544,11 +544,12 @@ eliminate_dead_code ()
...
@@ -544,11 +544,12 @@ eliminate_dead_code ()
(
cdbte
,
current_instruction
,
edge_number
,
(
cdbte
,
current_instruction
,
edge_number
,
{
{
rtx
jump_insn
=
(
INDEX_EDGE_PRED_BB
(
el
,
edge_number
))
->
end
;
rtx
jump_insn
=
(
INDEX_EDGE_PRED_BB
(
el
,
edge_number
))
->
end
;
if
(
GET_CODE
(
jump_insn
)
==
JUMP_INSN
&&
if
(
GET_CODE
(
jump_insn
)
==
JUMP_INSN
UNNECESSARY_P
(
jump_insn
))
{
&&
UNNECESSARY_P
(
jump_insn
))
RESURRECT_INSN
(
jump_insn
);
{
VARRAY_PUSH_RTX
(
unprocessed_instructions
,
jump_insn
);
RESURRECT_INSN
(
jump_insn
);
}
VARRAY_PUSH_RTX
(
unprocessed_instructions
,
jump_insn
);
}
});
});
/* Propagate through the operands. */
/* Propagate through the operands. */
...
...
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