[polly] r249420 - test: By default disable Polly's compile-time profitability heuristics

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 6 08:30:26 PDT 2015


Author: grosser
Date: Tue Oct  6 10:30:26 2015
New Revision: 249420

URL: http://llvm.org/viewvc/llvm-project?rev=249420&view=rev
Log:
test: By default disable Polly's compile-time profitability heuristics

Modified:
    polly/trunk/test/lit.site.cfg.in

Modified: polly/trunk/test/lit.site.cfg.in
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/lit.site.cfg.in?rev=249420&r1=249419&r2=249420&view=diff
==============================================================================
--- polly/trunk/test/lit.site.cfg.in (original)
+++ polly/trunk/test/lit.site.cfg.in Tue Oct  6 10:30:26 2015
@@ -35,9 +35,15 @@ if config.link_polly_into_tools == '' or
    config.link_polly_into_tools.lower() == 'notfound' or \
    config.link_polly_into_tools.lower() == 'link_polly_into_tools-notfound':
     config.substitutions.append(('%loadPolly', '-load '
-                                 + config.polly_lib_dir + '/LLVMPolly at LLVM_SHLIBEXT@'))
+                                 + config.polly_lib_dir + '/LLVMPolly at LLVM_SHLIBEXT@'
+                                 + ' -polly-detect-unprofitable '
+                                 + ' -polly-no-early-exit '
+                                 ))
 else:
-    config.substitutions.append(('%loadPolly', ''))
+    config.substitutions.append(('%loadPolly', ''
+                                 + ' -polly-detect-unprofitable '
+                                 + ' -polly-no-early-exit '
+                                 ))
 
 # Let the main config do the real work.
 lit_config.load_config(config, "@POLLY_SOURCE_DIR@/test/lit.cfg")




More information about the llvm-commits mailing list