From e276e9f324ee3baeef06c2df3a6bb38e1a94df30 Mon Sep 17 00:00:00 2001 From: Michael Kruse Date: Mon, 2 Oct 2017 11:41:06 +0000 Subject: [PATCH] [ForwardOpTree] Fix out-of-quota in assertion. llvm-svn: 314661 --- polly/lib/Transform/ForwardOpTree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polly/lib/Transform/ForwardOpTree.cpp b/polly/lib/Transform/ForwardOpTree.cpp index d178185e9b42..067d3f634298 100644 --- 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_true()); + assert(!ValInst.is_single_valued().is_false()); // { Domain[] } isl::union_set Domain = ValInst.domain();