]> granicus.if.org Git - llvm/commitdiff
[test-release.sh] Enable Polly by default
authorPengxuan Zheng <pzheng@codeaurora.org>
Tue, 20 Jun 2017 01:04:25 +0000 (01:04 +0000)
committerPengxuan Zheng <pzheng@codeaurora.org>
Tue, 20 Jun 2017 01:04:25 +0000 (01:04 +0000)
Reviewers: grosser, hans, zinob, bollu

Reviewed By: grosser, hans

Subscribers: tstellar, llvm-commits

Differential Revision: https://reviews.llvm.org/D34306

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305763 91177308-0d34-0410-b5e6-96231b3b80d8

utils/release/test-release.sh

index 560220cd53f48fcdcacca628875374407ba551ef..8ec3abb17551e544fddf4afbdfef295f256e3a13 100755 (executable)
@@ -38,7 +38,7 @@ do_test_suite="yes"
 do_openmp="yes"
 do_lld="yes"
 do_lldb="no"
-do_polly="no"
+do_polly="yes"
 BuildDir="`pwd`"
 ExtraConfigureFlags=""
 ExportBranch=""
@@ -68,8 +68,7 @@ function usage() {
     echo " -no-lld              Disable check-out & build lld"
     echo " -lldb                Enable check-out & build lldb"
     echo " -no-lldb             Disable check-out & build lldb (default)"
-    echo " -polly               Enable check-out & build Polly"
-    echo " -no-polly            Disable check-out & build Polly (default)"
+    echo " -no-polly            Disable check-out & build Polly"
 }
 
 while [ $# -gt 0 ]; do
@@ -154,9 +153,6 @@ while [ $# -gt 0 ]; do
         -no-lldb )
             do_lldb="no"
             ;;
-        -polly )
-            do_polly="yes"
-            ;;
         -no-polly )
             do_polly="no"
             ;;