From 6eb60eb5c9c76ed62bb4dc58be8157c598c70944 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sat, 24 Jan 2015 10:57:25 +0000 Subject: [PATCH] [PM] Use a more appropriate name for the statistics variable in lower-expect, as we don't have 'if's in the IR and we use it for switches as well. llvm-svn: 226997 --- llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp b/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp index fa82d62..5d3bbbc 100644 --- a/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp +++ b/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp @@ -30,7 +30,8 @@ using namespace llvm; #define DEBUG_TYPE "lower-expect-intrinsic" -STATISTIC(IfHandled, "Number of 'expect' intrinsic instructions handled"); +STATISTIC(ExpectIntrinsicsHandled, + "Number of 'expect' intrinsic instructions handled"); static cl::opt LikelyBranchWeight("likely-branch-weight", cl::Hidden, cl::init(64), @@ -147,10 +148,10 @@ bool LowerExpectIntrinsic::runOnFunction(Function &F) { // Create "block_weights" metadata. if (BranchInst *BI = dyn_cast(BB.getTerminator())) { if (handleBranchExpect(*BI)) - IfHandled++; + ExpectIntrinsicsHandled++; } else if (SwitchInst *SI = dyn_cast(BB.getTerminator())) { if (handleSwitchExpect(*SI)) - IfHandled++; + ExpectIntrinsicsHandled++; } // remove llvm.expect intrinsics. -- 2.7.4