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

llvm-svn: 314661
diff --git a/polly/lib/Transform/ForwardOpTree.cpp b/polly/lib/Transform/ForwardOpTree.cpp
index d178185..067d3f6 100644
--- a/polly/lib/Transform/ForwardOpTree.cpp
+++ b/polly/lib/Transform/ForwardOpTree.cpp
@@ -173,7 +173,7 @@
   ///         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();