Remove unnecessary isl annotations

They where just left over from copy-pasting.

Reported-by:  Johannes Doerfert <jdoerfert@codeaurora.org>
llvm-svn: 212800
This commit is contained in:
Tobias Grosser 2014-07-11 09:02:41 +00:00
parent db298121e0
commit e8162928c8
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@ char DeadCodeElim::ID = 0;
// To compute the live outs, we first assume all must and may-writes are exposed
// and then subtract the set of statements that are definitely overwritten.
isl_union_set *DeadCodeElim::getLiveOut(Scop &S) {
__isl_take isl_union_map *Kills = S.getMustWrites();
__isl_take isl_union_map *Empty = isl_union_map_empty(S.getParamSpace());
isl_union_map *Kills = S.getMustWrites();
isl_union_map *Empty = isl_union_map_empty(S.getParamSpace());
isl_union_map *Covering;
isl_union_map *Writes = S.getWrites();