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
7171b491
Commit
7171b491
authored
Aug 20, 2000
by
Richard Henderson
Committed by
Richard Henderson
Aug 20, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* flow.c (merge_blocks_nomove): Don't seek back past the bb note.
From-SVN: r35827
parent
8559f9bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+4
-0
gcc/flow.c
+3
-1
No files found.
gcc/ChangeLog
View file @
7171b491
2000-08-20 Richard Henderson <rth@cygnus.com>
* flow.c (merge_blocks_nomove): Don't seek back past the bb note.
2000-08-20 Zack Weinberg <zack@wolery.cumb.org>
* cppinit.c (cpp_init): Set global flag when called.
...
...
gcc/flow.c
View file @
7171b491
...
...
@@ -2209,7 +2209,9 @@ merge_blocks_nomove (a, b)
rtx
prev
;
for
(
prev
=
PREV_INSN
(
a_end
);
;
prev
=
PREV_INSN
(
prev
))
if
(
GET_CODE
(
prev
)
!=
NOTE
||
prev
==
a
->
head
)
if
(
GET_CODE
(
prev
)
!=
NOTE
||
NOTE_LINE_NUMBER
(
prev
)
==
NOTE_INSN_BASIC_BLOCK
||
prev
==
a
->
head
)
break
;
del_first
=
a_end
;
...
...
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