projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c8e759
)
[ForwardOpTree] Fix out-of-quota in assertion.
author
Michael Kruse
<llvm@meinersbur.de>
Mon, 2 Oct 2017 11:41:06 +0000
(11:41 +0000)
committer
Michael Kruse
<llvm@meinersbur.de>
Mon, 2 Oct 2017 11:41:06 +0000
(11:41 +0000)
llvm-svn: 314661
polly/lib/Transform/ForwardOpTree.cpp
patch
|
blob
|
history
diff --git
a/polly/lib/Transform/ForwardOpTree.cpp
b/polly/lib/Transform/ForwardOpTree.cpp
index
d178185
..
067d3f6
100644
(file)
--- a/
polly/lib/Transform/ForwardOpTree.cpp
+++ b/
polly/lib/Transform/ForwardOpTree.cpp
@@
-173,7
+173,7
@@
private:
/// For each statement instance, the array elements that contain the
/// same ValInst.
isl::union_map findSameContentElements(isl::union_map ValInst) {
- assert(
ValInst.is_single_valued().is_tru
e());
+ assert(
!ValInst.is_single_valued().is_fals
e());
// { Domain[] }
isl::union_set Domain = ValInst.domain();