diff options
author | Pengxuan Zheng <pzheng@codeaurora.org> | 2017-06-20 01:04:25 +0000 |
---|---|---|
committer | Pengxuan Zheng <pzheng@codeaurora.org> | 2017-06-20 01:04:25 +0000 |
commit | 4a99e37edc7df7dfac173cefa96571019d9a42ce (patch) | |
tree | 0347d2c75df82993c0332f123a4204a8983f2912 | |
parent | a8c4c016f89a9196ff4c2492d1ff1f49862f041a (diff) | |
download | bcm5719-llvm-4a99e37edc7df7dfac173cefa96571019d9a42ce.tar.gz bcm5719-llvm-4a99e37edc7df7dfac173cefa96571019d9a42ce.zip |
[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
-rwxr-xr-x | llvm/utils/release/test-release.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/llvm/utils/release/test-release.sh b/llvm/utils/release/test-release.sh index 560220cd53f..8ec3abb1755 100755 --- a/llvm/utils/release/test-release.sh +++ b/llvm/utils/release/test-release.sh @@ -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" ;; |