[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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305763 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Pengxuan Zheng 2017-06-20 01:04:25 +00:00
parent eaf57f3d1d
commit a4bbfa963d

View File

@ -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"
;;