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
54c3cf4b
Commit
54c3cf4b
authored
Aug 27, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Aug 27, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* haifa-sched.c (sched_analyze_insn): Fix thinko in last change.
From-SVN: r22022
parent
ca107ded
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/ChangeLog
+4
-0
gcc/haifa-sched.c
+5
-5
No files found.
gcc/ChangeLog
View file @
54c3cf4b
Thu Aug 27 15:14:18 1998 Jeffrey A Law (law@cygnus.com)
* haifa-sched.c (sched_analyze_insn): Fix thinko in last change.
Thu Aug 27 16:34:51 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* loop.c (check_dbra_loop): Enable code for reversal
...
...
gcc/haifa-sched.c
View file @
54c3cf4b
...
...
@@ -3704,11 +3704,11 @@ sched_analyze_insn (x, insn, loop_notes)
link
=
loop_notes
;
while
(
XEXP
(
link
,
1
))
{
if
(
XINT
(
link
,
0
)
==
NOTE_INSN_LOOP_BEG
||
XINT
(
link
,
0
)
==
NOTE_INSN_LOOP_END
||
XINT
(
link
,
0
)
==
NOTE_INSN_EH_REGION_BEG
||
XINT
(
link
,
0
)
==
NOTE_INSN_EH_REGION_END
||
XINT
(
link
,
0
)
==
NOTE_INSN_SETJMP
)
if
(
INTVAL
(
XEXP
(
link
,
0
)
)
==
NOTE_INSN_LOOP_BEG
||
INTVAL
(
XEXP
(
link
,
0
)
)
==
NOTE_INSN_LOOP_END
||
INTVAL
(
XEXP
(
link
,
0
)
)
==
NOTE_INSN_EH_REGION_BEG
||
INTVAL
(
XEXP
(
link
,
0
)
)
==
NOTE_INSN_EH_REGION_END
||
INTVAL
(
XEXP
(
link
,
0
)
)
==
NOTE_INSN_SETJMP
)
schedule_barrier_found
=
1
;
link
=
XEXP
(
link
,
1
);
...
...
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