[PATCH] D15094: Remove non-debug printing of domain set
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 30 14:49:19 PST 2015
LGTM.
Feel free to commit (or ping me if this needs to be committed for you).
Tobias
On 11/30/2015 11:44 PM, Chris Jenneisch wrote:
> chrisj created this revision.
> chrisj added reviewers: jdoerfert, grosser.
> chrisj added subscribers: llvm-commits, pollydev.
> chrisj set the repository for this revision to rL LLVM.
> chrisj added a project: Polly.
>
> Remove an isl set print which might have been missed from an earlier commit.
>
> Repository:
> rL LLVM
>
> http://reviews.llvm.org/D15094
>
> Files:
> lib/CodeGen/IslNodeBuilder.cpp
>
> Index: lib/CodeGen/IslNodeBuilder.cpp
> ===================================================================
> --- lib/CodeGen/IslNodeBuilder.cpp
> +++ lib/CodeGen/IslNodeBuilder.cpp
> @@ -847,7 +847,6 @@
> IsDead = false;
> } else {
> auto *Domain = S.getDomainConditions(Inst->getParent());
> - isl_set_dump(Domain);
> IsDead = isl_set_is_empty(Domain);
> isl_set_free(Domain);
> }
>
>
More information about the llvm-commits
mailing list