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
8f29e7f5
Commit
8f29e7f5
authored
Nov 23, 2015
by
Aditya Kumar
Committed by
Sebastian Pop
Nov 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
call update_ssa once
Co-Authored-By: Sebastian Pop <s.pop@samsung.com> From-SVN: r230770
parent
78275c8b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
13 deletions
+7
-13
gcc/ChangeLog
+7
-0
gcc/graphite-isl-ast-to-gimple.c
+0
-9
gcc/sese.c
+0
-4
No files found.
gcc/ChangeLog
View file @
8f29e7f5
2015
-
11
-
23
Aditya
Kumar
<
aditya
.
k7
@
samsung
.
com
>
Sebastian
Pop
<
s
.
pop
@
samsung
.
com
>
*
graphite
-
isl
-
ast
-
to
-
gimple
.
c
(
translate_isl_ast_node_user
):
Remove
call
to
update_ssa
.
*
sese
.
c
(
sese_insert_phis_for_liveouts
):
Same
.
2015
-
11
-
23
Marek
Polacek
<
polacek
@
redhat
.
com
>
PR
tree
-
optimization
/
68455
gcc/graphite-isl-ast-to-gimple.c
View file @
8f29e7f5
...
...
@@ -1023,15 +1023,6 @@ translate_isl_ast_node_user (__isl_keep isl_ast_node *node,
print_loops_bb
(
dump_file
,
next_e
->
src
,
0
,
3
);
}
mark_virtual_operands_for_renaming
(
cfun
);
update_ssa
(
TODO_update_ssa
);
if
(
dump_file
)
{
fprintf
(
dump_file
,
"
\n
[codegen] (after update SSA) new basic block
\n
"
);
print_loops_bb
(
dump_file
,
next_e
->
src
,
0
,
3
);
}
return
next_e
;
}
...
...
gcc/sese.c
View file @
8f29e7f5
...
...
@@ -301,8 +301,6 @@ sese_insert_phis_for_liveouts (sese_info_p region, basic_block bb,
bitmap_iterator
bi
;
bitmap
liveouts
=
BITMAP_ALLOC
(
NULL
);
update_ssa
(
TODO_update_ssa
);
sese_build_liveouts
(
region
,
liveouts
);
EXECUTE_IF_SET_IN_BITMAP
(
liveouts
,
0
,
i
,
bi
)
...
...
@@ -310,8 +308,6 @@ sese_insert_phis_for_liveouts (sese_info_p region, basic_block bb,
sese_add_exit_phis_edge
(
bb
,
ssa_name
(
i
),
false_e
,
true_e
);
BITMAP_FREE
(
liveouts
);
update_ssa
(
TODO_update_ssa
);
}
/* Returns the outermost loop in SCOP that contains BB. */
...
...
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