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
d49256bb
Commit
d49256bb
authored
Nov 17, 1999
by
Richard Henderson
Committed by
Richard Henderson
Nov 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* jump.c (jump_optimize_1): Revert last change.
From-SVN: r30561
parent
1e25de97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
gcc/ChangeLog
+4
-0
gcc/jump.c
+2
-6
No files found.
gcc/ChangeLog
View file @
d49256bb
Wed
Nov
17
16
:
38
:
32
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
jump
.
c
(
jump_optimize_1
)
:
Revert
last
change
.
Wed
Nov
17
15
:
18
:
30
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
Wed
Nov
17
15
:
18
:
30
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
jump
.
c
(
jump_optimize_1
)
:
Don
'
t
try
to
duplicate
the
loop
exit
*
jump
.
c
(
jump_optimize_1
)
:
Don
'
t
try
to
duplicate
the
loop
exit
...
...
gcc/jump.c
View file @
d49256bb
...
@@ -319,12 +319,8 @@ jump_optimize_1 (f, cross_jump, noop_moves, after_regscan, mark_labels_only)
...
@@ -319,12 +319,8 @@ jump_optimize_1 (f, cross_jump, noop_moves, after_regscan, mark_labels_only)
/* See if this is a NOTE_INSN_LOOP_BEG followed by an unconditional
/* See if this is a NOTE_INSN_LOOP_BEG followed by an unconditional
jump. Try to optimize by duplicating the loop exit test if so.
jump. Try to optimize by duplicating the loop exit test if so.
This is only safe immediately after regscan, because it uses
This is only safe immediately after regscan, because it uses
the values of regno_first_uid and regno_last_uid. Don't do this
the values of regno_first_uid and regno_last_uid. */
if optimizing for size. */
if
(
after_regscan
&&
GET_CODE
(
insn
)
==
NOTE
if
(
!
optimize_size
&&
after_regscan
&&
GET_CODE
(
insn
)
==
NOTE
&&
NOTE_LINE_NUMBER
(
insn
)
==
NOTE_INSN_LOOP_BEG
&&
NOTE_LINE_NUMBER
(
insn
)
==
NOTE_INSN_LOOP_BEG
&&
(
temp1
=
next_nonnote_insn
(
insn
))
!=
0
&&
(
temp1
=
next_nonnote_insn
(
insn
))
!=
0
&&
simplejump_p
(
temp1
))
&&
simplejump_p
(
temp1
))
...
...
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