[ForwardOpTree] Fix out-of-quota in assertion.
authorMichael Kruse <llvm@meinersbur.de>
Mon, 2 Oct 2017 11:41:06 +0000 (11:41 +0000)
committerMichael Kruse <llvm@meinersbur.de>
Mon, 2 Oct 2017 11:41:06 +0000 (11:41 +0000)
llvm-svn: 314661

polly/lib/Transform/ForwardOpTree.cpp

index d178185..067d3f6 100644 (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();