aboutsummaryrefslogtreecommitdiff
path: root/polly/lib/CodeGen/CodeGeneration.cpp
diff options
context:
space:
mode:
authorMichael Kruse <llvm-project@meinersbur.de>2023-01-25 14:03:57 -0600
committerMichael Kruse <llvm-project@meinersbur.de>2023-03-08 17:33:04 -0600
commit19afbfe33156d211fa959dadeea46cd17b9c723c (patch)
treedb53498143b16127c6c0e22a671a8d11eece4152 /polly/lib/CodeGen/CodeGeneration.cpp
parent115c7beda74f3cfaf83b91d14bc97a39bff4cf19 (diff)
downloadllvm-19afbfe33156d211fa959dadeea46cd17b9c723c.zip
llvm-19afbfe33156d211fa959dadeea46cd17b9c723c.tar.gz
llvm-19afbfe33156d211fa959dadeea46cd17b9c723c.tar.bz2
[Polly] Remove Polly-ACC.
Polly-ACC is unmaintained and since it has never been ported to the NPM pipeline, since D136621 it is not even accessible anymore without manually specifying the passes on the `opt` command line. Since there is no plan to put it to a maintainable state, remove it from Polly. Reviewed By: grosser Differential Revision: https://reviews.llvm.org/D142580
Diffstat (limited to 'polly/lib/CodeGen/CodeGeneration.cpp')
-rw-r--r--polly/lib/CodeGen/CodeGeneration.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp
index f290be6..3792d99 100644
--- a/polly/lib/CodeGen/CodeGeneration.cpp
+++ b/polly/lib/CodeGen/CodeGeneration.cpp
@@ -323,10 +323,6 @@ public:
/// Generate LLVM-IR for the SCoP @p S.
bool runOnScop(Scop &S) override {
- // Skip SCoPs in case they're already code-generated by PPCGCodeGeneration.
- if (S.isToBeSkipped())
- return false;
-
AI = &getAnalysis<IslAstInfoWrapperPass>().getAI();
LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();