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
fa3df32d
Commit
fa3df32d
authored
Jun 09, 2016
by
Eric Botcazou
Committed by
Eric Botcazou
Jun 09, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
From-SVN: r237279
parent
5f225ef4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/df-problems.c
+3
-3
No files found.
gcc/ChangeLog
View file @
fa3df32d
2016-06-09 Eric Botcazou <ebotcazou@adacore.com>
* df-problems.c (df_note_bb_compute): Guard use of DF_INSN_INFO_GET.
2016-06-09 Vladimir Makarov <vmakarov@redhat.com>
Jiong Wang <jiong.wang@arm.com>
...
...
gcc/df-problems.c
View file @
fa3df32d
...
...
@@ -3498,13 +3498,13 @@ df_note_bb_compute (unsigned int bb_index,
FOR_BB_INSNS_REVERSE
(
bb
,
insn
)
{
if
(
!
INSN_P
(
insn
))
continue
;
df_insn_info
*
insn_info
=
DF_INSN_INFO_GET
(
insn
);
df_mw_hardreg
*
mw
;
int
debug_insn
;
if
(
!
INSN_P
(
insn
))
continue
;
debug_insn
=
DEBUG_INSN_P
(
insn
);
bitmap_clear
(
do_not_gen
);
...
...
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