summaryrefslogtreecommitdiffstats
path: root/polly/lib/Analysis/ScopBuilder.cpp
diff options
context:
space:
mode:
authorJohannes Doerfert <doerfert@cs.uni-saarland.de>2016-11-18 14:37:08 +0000
committerJohannes Doerfert <doerfert@cs.uni-saarland.de>2016-11-18 14:37:08 +0000
commit81aa6e882f7c913f4ff2460202fa0f28af7a0fc2 (patch)
treeebb039867f1461e7d7209888bdac2e76e5a0afbb /polly/lib/Analysis/ScopBuilder.cpp
parentff23d3e741ee9d7f7f1bd4a5cb0ff43b8b76389b (diff)
downloadbcm5719-llvm-81aa6e882f7c913f4ff2460202fa0f28af7a0fc2.tar.gz
bcm5719-llvm-81aa6e882f7c913f4ff2460202fa0f28af7a0fc2.zip
[NFC] Adjust naming scheme of statistic variables
Suggested-by: Tobias Grosser <tobias@grosser.es> llvm-svn: 287347
Diffstat (limited to 'polly/lib/Analysis/ScopBuilder.cpp')
-rw-r--r--polly/lib/Analysis/ScopBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/lib/Analysis/ScopBuilder.cpp b/polly/lib/Analysis/ScopBuilder.cpp
index 4f428a12986..4e76d5de133 100644
--- a/polly/lib/Analysis/ScopBuilder.cpp
+++ b/polly/lib/Analysis/ScopBuilder.cpp
@@ -28,7 +28,7 @@ using namespace polly;
STATISTIC(ScopFound, "Number of valid Scops");
STATISTIC(RichScopFound, "Number of Scops containing a loop");
-STATISTIC(INFEASIBLE_SCOPS,
+STATISTIC(InfeasibleScops,
"Number of SCoPs with statically infeasible context.");
// If the loop is nonaffine/boxed, return the first non-boxed surrounding loop
@@ -689,7 +689,7 @@ ScopBuilder::ScopBuilder(Region *R, AssumptionCache &AC, AliasAnalysis &AA,
DEBUG(scop->print(dbgs()));
if (!scop->hasFeasibleRuntimeContext()) {
- INFEASIBLE_SCOPS++;
+ InfeasibleScops++;
Msg = "SCoP ends here but was dismissed.";
scop.reset();
} else {
OpenPOWER on IntegriCloud