[test-release.sh] Enable Polly by default

Reviewers: grosser, hans, zinob, bollu

Reviewed By: grosser, hans

Subscribers: tstellar, llvm-commits

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

llvm-svn: 305763
This commit is contained in:
Pengxuan Zheng 2017-06-20 01:04:25 +00:00
parent a8c4c016f8
commit 4a99e37edc
1 changed files with 2 additions and 6 deletions

View File

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