CodegenCleanup: Drop CFLAA pass from codegen cleanup sequence

Since r274197 -polly-position=before-vectorizer caused various LNT failures
for example in SingleSource/Benchmarks/Linpack. These failures seem to only
occur when the CFLAA pass is scheduled in our codegen-cleanup passes, which
suggests that the way we call this AA pass is somehow problematic.  As this pass
is not of high importance, we drop the pass for now to prevent these failures
from happening. At a later point, we might investigate more in-depth why this
specific usage scenario caused correctness issues.

llvm-svn: 274427
This commit is contained in:
Tobias Grosser 2016-07-02 07:58:13 +00:00
parent d573844a1f
commit 29a4dd92b7
1 changed files with 0 additions and 1 deletions

View File

@ -49,7 +49,6 @@ public:
// TODO: How to make parent passes discoverable?
// TODO: Should be sensitive to compiler options in PassManagerBuilder, to
// which wo do not have access here.
FPM->add(createCFLAAWrapperPass());
FPM->add(createScopedNoAliasAAWrapperPass());
FPM->add(createTypeBasedAAWrapperPass());
FPM->add(createAAResultsWrapperPass());