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
1ca63357
Commit
1ca63357
authored
Jun 22, 2012
by
Alexandre Oliva
Committed by
Alexandre Oliva
Jun 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug.
From-SVN: r188867
parent
ce8fe26d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+4
-0
gcc/ddg.c
+9
-1
No files found.
gcc/ChangeLog
View file @
1ca63357
2012-06-21 Alexandre Oliva <aoliva@redhat.com>
* ddg.c (build_intra_loop_deps): Discard deps of nondebug on debug.
2012-06-21 Alexandre Oliva <aoliva@redhat.com>
PR debug/53682
* cselib.c (promote_debug_loc): Don't crash on NULL argument.
...
...
gcc/ddg.c
View file @
1ca63357
...
...
@@ -531,7 +531,15 @@ build_intra_loop_deps (ddg_ptr g)
FOR_EACH_DEP
(
dest_node
->
insn
,
SD_LIST_BACK
,
sd_it
,
dep
)
{
ddg_node_ptr
src_node
=
get_node_of_insn
(
g
,
DEP_PRO
(
dep
));
rtx
src_insn
=
DEP_PRO
(
dep
);
ddg_node_ptr
src_node
;
/* Don't add dependencies on debug insns to non-debug insns
to avoid codegen differences between -g and -g0. */
if
(
DEBUG_INSN_P
(
src_insn
)
&&
!
DEBUG_INSN_P
(
dest_node
->
insn
))
continue
;
src_node
=
get_node_of_insn
(
g
,
src_insn
);
if
(
!
src_node
)
continue
;
...
...
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