diff options
| author | Tobias Grosser <tobias@grosser.es> | 2014-07-11 09:02:41 +0000 |
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2014-07-11 09:02:41 +0000 |
| commit | e8162928c8164e8ff408169fd1a4b418e7389679 (patch) | |
| tree | 71c6ad33174bf65795342ade8ee718c43e8e8c39 | |
| parent | db298121e0b47a8fc4fa8fc7716a25dbb6046c1f (diff) | |
| download | bcm5719-llvm-e8162928c8164e8ff408169fd1a4b418e7389679.tar.gz bcm5719-llvm-e8162928c8164e8ff408169fd1a4b418e7389679.zip | |
Remove unnecessary isl annotations
They where just left over from copy-pasting.
Reported-by: Johannes Doerfert <jdoerfert@codeaurora.org>
llvm-svn: 212800
| -rw-r--r-- | polly/lib/Transform/DeadCodeElimination.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Transform/DeadCodeElimination.cpp b/polly/lib/Transform/DeadCodeElimination.cpp index 2662dc9c0dc..45e5a61adee 100644 --- a/polly/lib/Transform/DeadCodeElimination.cpp +++ b/polly/lib/Transform/DeadCodeElimination.cpp @@ -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(); |

