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
c375a3a4
Commit
c375a3a4
authored
May 23, 2011
by
David Li
Committed by
Xinliang David Li
May 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix pr48988
From-SVN: r174077
parent
86d822aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+6
-0
gcc/tree-ssa-uninit.c
+2
-0
No files found.
gcc/ChangeLog
View file @
c375a3a4
2011-05-23 David Li <davidxl@google.com>
PR tree-optimization/48988
* tree-ssa-uninit.c (convert_control_dep_chain_into_preds):
Initialize has_valid_pred for each pred chain.
2011-05-23 Richard Guenther <rguenther@suse.de>
* gimple.c (gimple_types_compatible_p_1): Always compare type names.
...
...
gcc/tree-ssa-uninit.c
View file @
c375a3a4
...
...
@@ -358,6 +358,8 @@ convert_control_dep_chain_into_preds (VEC(edge, heap) **dep_chains,
for
(
i
=
0
;
i
<
num_chains
;
i
++
)
{
VEC
(
edge
,
heap
)
*
one_cd_chain
=
dep_chains
[
i
];
has_valid_pred
=
false
;
for
(
j
=
0
;
j
<
VEC_length
(
edge
,
one_cd_chain
);
j
++
)
{
gimple
cond_stmt
;
...
...
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