Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2016-02-02 21:41:43 +0300
committerHans Wennborg <hans@hanshq.net>2016-02-02 21:41:43 +0300
commit7a2f16d24d89be875b9255b79fa95b4e40d73d25 (patch)
tree544d71d03020641c3808cd9c7e7ab68dc7668c38
parent98ef14283fb00fae956c6c6aea66cfa4ae1fae1e (diff)
Merging r258318:llvmorg-3.8.0-rc2
------------------------------------------------------------------------ r258318 | sgundapa | 2016-01-20 07:41:30 -0800 (Wed, 20 Jan 2016) | 2 lines Fix the error in non-asserts Release mode build. NFC ------------------------------------------------------------------------ llvm-svn: 259541
-rw-r--r--polly/lib/Analysis/ScopInfo.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/polly/lib/Analysis/ScopInfo.cpp b/polly/lib/Analysis/ScopInfo.cpp
index ec1608870c98..3e0573bdcca7 100644
--- a/polly/lib/Analysis/ScopInfo.cpp
+++ b/polly/lib/Analysis/ScopInfo.cpp
@@ -3406,6 +3406,8 @@ mapToDimension(__isl_take isl_union_set *USet, int N) {
auto Res = isl_union_set_foreach_set(USet, &mapToDimension_AddSet, &Data);
+ (void)Res;
+
assert(Res == isl_stat_ok);
isl_union_set_free(USet);