diff --git a/test/lit.site.cfg.in b/test/lit.site.cfg.in
index b45da3b..fad2592 100644
--- a/test/lit.site.cfg.in
+++ b/test/lit.site.cfg.in
@@ -20,6 +20,7 @@ except KeyError,e:
config.substitutions.append(('%loadPolly', '-load '
+ config.llvm_libs_dir + '/LLVMPolly.so '))
config.substitutions.append(('%defaultOpts', ' -basicaa -scev-aa '))
+config.substitutions.append(('%polybenchOpts', ' -O3 -loop-simplify
-indvars -polly-prepare '))
# Let the main config do the real work.
lit.load_config(config, "@POLLY_SOURCE_DIR@/test/lit.cfg")
--
1.7.3.3
i am going to push this out, too.
best regards
ether
Why are you planning to use -O3 for this? I think it is better, if we do
not run any other optimizations before Polly, but just store
preoptimized LLVM-IR. Like this the test cases do only depend on the
behaviour of Polly and only test Polly itself. If we really want to test
the transformations and canonicalization passes in -O3 we should add the
required test cases to those passes itself.
Cheers
Tobi
Hey ether,
can you give your opinion on this?
Cheers
Tobi
>>
>> Why are you planning to use -O3 for this? I think it is better, if we do
Just because i see some have -O3 and some have -mem2reg and unified them to O3.
>> not run any other optimizations before Polly, but just store
>> preoptimized LLVM-IR. Like this the test cases do only depend on the
>> behaviour of Polly and only test Polly itself. If we really want to test
>> the transformations and canonicalization passes in -O3 we should add the
>> required test cases to those passes itself.
Yes you are right, i am going to change it to mem2reg.
>
> Hey ether,
>
> can you give your opinion on this?
hum, the original mail not appear in my box ...
>
> Cheers
> Tobi
>
>> Hey ether,
>>
>> can you give your opinion on this?
> hum, the original mail not appear in my box ...
Sorry. I think I did not CC you directly.
Cheers
Tobi
> At best we remove them completely and the LLVM-IR is already the
> preoptimized version.
This sounds good, i will try to figure this out.
> I think I did not CC you directly.
I just fixed my setting about the list.
best regards
ether
Nice.
Thanks
Tobi