summaryrefslogtreecommitdiffstats
path: root/polly/lib/Analysis/Dependences.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'polly/lib/Analysis/Dependences.cpp')
-rw-r--r--polly/lib/Analysis/Dependences.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/polly/lib/Analysis/Dependences.cpp b/polly/lib/Analysis/Dependences.cpp
index 01c9027f0ba..ab720eb0f72 100644
--- a/polly/lib/Analysis/Dependences.cpp
+++ b/polly/lib/Analysis/Dependences.cpp
@@ -286,12 +286,10 @@ void Dependences::getAnalysisUsage(AnalysisUsage &AU) const {
char Dependences::ID = 0;
+Pass *polly::createDependencesPass() { return new Dependences(); }
+
INITIALIZE_PASS_BEGIN(Dependences, "polly-dependences",
- "Polly - Calculate dependences", false, false)
-INITIALIZE_PASS_DEPENDENCY(ScopInfo)
+ "Polly - Calculate dependences", false, false);
+INITIALIZE_PASS_DEPENDENCY(ScopInfo);
INITIALIZE_PASS_END(Dependences, "polly-dependences",
"Polly - Calculate dependences", false, false)
-
-Pass *polly::createDependencesPass() {
- return new Dependences();
-}
OpenPOWER on IntegriCloud