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
67bb451d
Commit
67bb451d
authored
7 years ago
by
Bin Cheng
Committed by
Bin Cheng
7 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-predcom.c (determine_roots_comp): Skip trivial components.
From-SVN: r250665
parent
6c35e5b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+4
-0
gcc/tree-predcom.c
+4
-1
No files found.
gcc/ChangeLog
View file @
67bb451d
2017
-
07
-
28
Bin
Cheng
<
bin
.
cheng
@
arm
.
com
>
*
tree
-
predcom
.
c
(
determine_roots_comp
):
Skip
trivial
components
.
2017
-
07
-
28
Richard
Biener
<
rguenther
@
suse
.
de
>
*
match
.
pd
:
Remove
superfluous
:
c
.
...
...
This diff is collapsed.
Click to expand it.
gcc/tree-predcom.c
View file @
67bb451d
...
...
@@ -1227,8 +1227,11 @@ determine_roots_comp (struct loop *loop,
return
;
}
comp
->
refs
.
qsort
(
order_drefs
);
/* Trivial component. */
if
(
comp
->
refs
.
length
()
<=
1
)
return
;
comp
->
refs
.
qsort
(
order_drefs
);
FOR_EACH_VEC_ELT
(
comp
->
refs
,
i
,
a
)
{
if
(
!
chain
||
DR_IS_WRITE
(
a
->
ref
)
...
...
This diff is collapsed.
Click to expand it.
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