diff options
author | Michael Kruse <llvm@meinersbur.de> | 2015-09-10 15:25:24 +0000 |
---|---|---|
committer | Michael Kruse <llvm@meinersbur.de> | 2015-09-10 15:25:24 +0000 |
commit | d868b5d50925c7c24f4219b2fc2a9cdd1d9cd4bf (patch) | |
tree | 8f804fb8e40e077834455cb94ab2078d29a8ba3a /polly/lib/Support | |
parent | 59661459f16dd40df2b5345fbce787a54c04add8 (diff) | |
download | bcm5719-llvm-d868b5d50925c7c24f4219b2fc2a9cdd1d9cd4bf.tar.gz bcm5719-llvm-d868b5d50925c7c24f4219b2fc2a9cdd1d9cd4bf.zip |
Merge TempScopInfo into ScopInfo
The TempScopInfo (-polly-analyze-ir) pass is removed and its work taken
over by ScopInfo (-polly-scops). Several tests depend on
-polly-analyze-ir and use -polly-scops instead which for the moment
prints the output of both passes. This again is not expected by some
other tests, especially those with negative searches, which have been
adapted.
Differential Version: http://reviews.llvm.org/D12694
llvm-svn: 247288
Diffstat (limited to 'polly/lib/Support')
-rw-r--r-- | polly/lib/Support/RegisterPasses.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/polly/lib/Support/RegisterPasses.cpp b/polly/lib/Support/RegisterPasses.cpp index a27943c7aec..34105585c2e 100644 --- a/polly/lib/Support/RegisterPasses.cpp +++ b/polly/lib/Support/RegisterPasses.cpp @@ -154,7 +154,6 @@ void initializePollyPasses(PassRegistry &Registry) { initializePollyCanonicalizePass(Registry); initializeScopDetectionPass(Registry); initializeScopInfoPass(Registry); - initializeTempScopInfoPass(Registry); } /// @brief Register Polly passes such that they form a polyhedral optimizer. |