ScoPDetection: Obtain a known free diagnostic ID
authorTobias Grosser <tobias@grosser.es>
Fri, 1 Apr 2016 07:15:19 +0000 (07:15 +0000)
committerTobias Grosser <tobias@grosser.es>
Fri, 1 Apr 2016 07:15:19 +0000 (07:15 +0000)
... instead of hardcoding something that has been free at some point. This fixes
a crash triggered by r265084, where the diagnostic IDs have been shifted in a
way that resulted our hardcode ID to not be assigned any implementation.  Our ID
was likely already wrong earlier on, but this time we really crashed nicely.

llvm-svn: 265114

polly/lib/Analysis/ScopDetection.cpp

index 7810b94..594d656 100644 (file)
@@ -216,7 +216,8 @@ public:
   }
 };
 
-int DiagnosticScopFound::PluginDiagnosticKind = 10;
+int DiagnosticScopFound::PluginDiagnosticKind =
+    getNextAvailablePluginDiagnosticKind();
 
 void DiagnosticScopFound::print(DiagnosticPrinter &DP) const {
   DP << "Polly detected an optimizable loop region (scop) in function '" << F