diff options
| author | Michael Kruse <llvm@meinersbur.de> | 2017-10-02 11:41:06 +0000 |
|---|---|---|
| committer | Michael Kruse <llvm@meinersbur.de> | 2017-10-02 11:41:06 +0000 |
| commit | e276e9f324ee3baeef06c2df3a6bb38e1a94df30 (patch) | |
| tree | b1d368afc84436d7b7780acedf825a0aa72c14d8 | |
| parent | 5c8e7596e6e886544cf99a9e9ee62d9bf0fc9ba3 (diff) | |
| download | bcm5719-llvm-e276e9f324ee3baeef06c2df3a6bb38e1a94df30.tar.gz bcm5719-llvm-e276e9f324ee3baeef06c2df3a6bb38e1a94df30.zip | |
[ForwardOpTree] Fix out-of-quota in assertion.
llvm-svn: 314661
| -rw-r--r-- | polly/lib/Transform/ForwardOpTree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Transform/ForwardOpTree.cpp b/polly/lib/Transform/ForwardOpTree.cpp index d178185e9b4..067d3f63429 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(); |

