diff options
-rw-r--r-- | polly/lib/CodeGen/CodeGeneration.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/polly/lib/CodeGen/CodeGeneration.cpp b/polly/lib/CodeGen/CodeGeneration.cpp index 53aac25a3db..23ee445900e 100644 --- a/polly/lib/CodeGen/CodeGeneration.cpp +++ b/polly/lib/CodeGen/CodeGeneration.cpp @@ -60,9 +60,6 @@ public: RegionInfo *RI; ///} - /// @brief The loop annotator to generate llvm.loop metadata. - ScopAnnotator Annotator; - /// @brief Build the runtime condition. /// /// Build the condition that evaluates at run-time to true iff all @@ -125,6 +122,7 @@ public: Region *R = &S.getRegion(); assert(!R->isTopLevelRegion() && "Top level regions are not supported"); + ScopAnnotator Annotator; Annotator.buildAliasScopes(S); simplifyRegion(R, DT, LI, RI); |