[ForwardOpTree] Fix out-of-quota in assertion.

llvm-svn: 314661
This commit is contained in:
Michael Kruse 2017-10-02 11:41:06 +00:00
parent 5c8e7596e6
commit e276e9f324
1 changed files with 1 additions and 1 deletions

View File

@ -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_true());
assert(!ValInst.is_single_valued().is_false());
// { Domain[] }
isl::union_set Domain = ValInst.domain();