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
13462862
Commit
13462862
authored
May 20, 2000
by
Alexandre Oliva
Committed by
Alexandre Oliva
May 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ifcvt.c (if_convert): Scan and kill dead code.
From-SVN: r34057
parent
242b0ce6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+2
-0
gcc/ifcvt.c
+4
-2
No files found.
gcc/ChangeLog
View file @
13462862
2000
-
05
-
20
Alexandre
Oliva
<
aoliva
@cygnus
.
com
>
2000
-
05
-
20
Alexandre
Oliva
<
aoliva
@cygnus
.
com
>
*
ifcvt
.
c
(
if_convert
)
:
Scan
and
kill
dead
code
.
*
emit
-
rtl
.
c
(
unshare_all_rtl
)
:
Store
the
copied
rtx
.
*
emit
-
rtl
.
c
(
unshare_all_rtl
)
:
Store
the
copied
rtx
.
2000
-
05
-
20
Zack
Weinberg
<
zack
@wolery
.
cumb
.
org
>
2000
-
05
-
20
Zack
Weinberg
<
zack
@wolery
.
cumb
.
org
>
gcc/ifcvt.c
View file @
13462862
...
@@ -2038,7 +2038,8 @@ if_convert (life_data_ok)
...
@@ -2038,7 +2038,8 @@ if_convert (life_data_ok)
count_or_remove_death_notes
(
update_life_blocks
,
1
);
count_or_remove_death_notes
(
update_life_blocks
,
1
);
update_life_info
(
update_life_blocks
,
UPDATE_LIFE_LOCAL
,
update_life_info
(
update_life_blocks
,
UPDATE_LIFE_LOCAL
,
PROP_DEATH_NOTES
);
PROP_DEATH_NOTES
|
PROP_SCAN_DEAD_CODE
|
PROP_KILL_DEAD_CODE
);
sbitmap_free
(
update_life_blocks
);
sbitmap_free
(
update_life_blocks
);
}
}
...
@@ -2058,6 +2059,7 @@ if_convert (life_data_ok)
...
@@ -2058,6 +2059,7 @@ if_convert (life_data_ok)
}
}
#ifdef ENABLE_CHECKING
#ifdef ENABLE_CHECKING
verify_flow_info
();
if
(
life_data_ok
)
verify_flow_info
();
#endif
#endif
}
}
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