From 4039dbea77fda46c1a45b65a3e70b72e561e5752 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 8 Feb 2018 14:24:26 +0000 Subject: Fix unused variable warning. llvm-svn: 324605 --- llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp') diff --git a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp index 9fd65001d14..e751c64caae 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp @@ -138,7 +138,7 @@ static bool IsMultiple(const APInt &C1, const APInt &C2, APInt &Quotient, static Constant *getLogBase2(Type *Ty, Constant *C) { const APInt *IVal; if (const auto *CI = dyn_cast(C)) - if (match(C, m_APInt(IVal)) && IVal->isPowerOf2()) + if (match(CI, m_APInt(IVal)) && IVal->isPowerOf2()) return ConstantInt::get(Ty, IVal->logBase2()); if (!Ty->isVectorTy()) -- cgit v1.2.3