[PATCH] D15094: Remove non-debug printing of domain set
Chris Jenneisch via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 30 14:44:46 PST 2015
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);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15094.41437.patch
Type: text/x-patch
Size: 446 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151130/9f770571/attachment.bin>
More information about the llvm-commits
mailing list