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
bcc53e2a
Commit
bcc53e2a
authored
Apr 03, 2003
by
Jan Hubicka
Committed by
Jan Hubicka
Apr 03, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
From-SVN: r65214
parent
55a2af0c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/cfgrtl.c
+2
-1
No files found.
gcc/ChangeLog
View file @
bcc53e2a
Thu Apr 3 22:27:40 CEST 2003 Jan Hubicka <jh@suse.cz>
* cfgrtl.c (update_bb_for_insn): Do not set block for barriers.
2003-04-03 Eric Botcazou <ebotcazou@libertysurf.fr>
PR optimization/10157
...
...
gcc/cfgrtl.c
View file @
bcc53e2a
...
...
@@ -462,7 +462,8 @@ update_bb_for_insn (bb)
for
(
insn
=
bb
->
head
;
;
insn
=
NEXT_INSN
(
insn
))
{
set_block_for_insn
(
insn
,
bb
);
if
(
GET_CODE
(
insn
)
!=
BARRIER
)
set_block_for_insn
(
insn
,
bb
);
if
(
insn
==
bb
->
end
)
break
;
}
...
...
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