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
90251a62
Commit
90251a62
authored
Nov 26, 2012
by
Eric Botcazou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* reorg.c (redundant_insn): Do not handle DEBUG_INSNs.
From-SVN: r193829
parent
d8405cc1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
gcc/ChangeLog
+5
-2
gcc/reorg.c
+2
-2
No files found.
gcc/ChangeLog
View file @
90251a62
2012
-
11
-
26
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
*
reorg
.
c
(
redundant_insn
)
:
Do
not
handle
DEBUG_INSNs
.
2012
-
11
-
26
Vladimir
Makarov
<
vmakarov
@redhat
.
com
>
2012
-
11
-
26
Vladimir
Makarov
<
vmakarov
@redhat
.
com
>
PR
target
/
55277
PR
target
/
55277
...
@@ -44,8 +48,7 @@
...
@@ -44,8 +48,7 @@
2012
-
11
-
26
Marek
Polacek
<
polacek
@redhat
.
com
>
2012
-
11
-
26
Marek
Polacek
<
polacek
@redhat
.
com
>
*
cprop
.
c
(
hash_set
)
:
Remove
variable
.
Use
regno
*
cprop
.
c
(
hash_set
)
:
Remove
variable
.
Use
regno
variable
directly
.
variable
directly
.
2012
-
11
-
26
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
2012
-
11
-
26
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
gcc/reorg.c
View file @
90251a62
...
@@ -1628,7 +1628,7 @@ redundant_insn (rtx insn, rtx target, rtx delay_list)
...
@@ -1628,7 +1628,7 @@ redundant_insn (rtx insn, rtx target, rtx delay_list)
if
(
LABEL_P
(
trial
))
if
(
LABEL_P
(
trial
))
return
0
;
return
0
;
if
(
!
NONDEBUG_
INSN_P
(
trial
))
if
(
!
INSN_P
(
trial
))
continue
;
continue
;
--
insns_to_search
;
--
insns_to_search
;
...
@@ -1731,7 +1731,7 @@ redundant_insn (rtx insn, rtx target, rtx delay_list)
...
@@ -1731,7 +1731,7 @@ redundant_insn (rtx insn, rtx target, rtx delay_list)
trial
&&
!
LABEL_P
(
trial
)
&&
insns_to_search
>
0
;
trial
&&
!
LABEL_P
(
trial
)
&&
insns_to_search
>
0
;
trial
=
PREV_INSN
(
trial
))
trial
=
PREV_INSN
(
trial
))
{
{
if
(
!
NONDEBUG_
INSN_P
(
trial
))
if
(
!
INSN_P
(
trial
))
continue
;
continue
;
--
insns_to_search
;
--
insns_to_search
;
...
...
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