[polly] r374497 - [Stats] Fix polly build due to change in llvm::Statistic constructor in r374490.

Volodymyr Sapsai via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 10 18:43:37 PDT 2019


Author: vsapsai
Date: Thu Oct 10 18:43:36 2019
New Revision: 374497

URL: http://llvm.org/viewvc/llvm-project?rev=374497&view=rev
Log:
[Stats] Fix polly build due to change in llvm::Statistic constructor in r374490.

Modified:
    polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp

Modified: polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp?rev=374497&r1=374496&r2=374497&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetectionDiagnostic.cpp Thu Oct 10 18:43:36 2019
@@ -46,9 +46,7 @@ using namespace llvm;
 
 #define SCOP_STAT(NAME, DESC)                                                  \
   {                                                                            \
-    "polly-detect", "NAME", "Number of rejected regions: " DESC, {0}, {        \
-      false                                                                    \
-    }                                                                          \
+    "polly-detect", "NAME", "Number of rejected regions: " DESC                \
   }
 
 Statistic RejectStatistics[] = {




More information about the llvm-commits mailing list