From: Max Kazantsev Date: Mon, 1 Mar 2021 05:14:03 +0000 (+0700) Subject: [NFC] Whitespace fix X-Git-Tag: llvmorg-14-init~13809 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdbad5e5acf44e870e607209fc464ee5689646d1;p=platform%2Fupstream%2Fllvm.git [NFC] Whitespace fix --- diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index b62c332..b935e23 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -3813,7 +3813,7 @@ bool AddressingModeMatcher::matchScaledValue(Value *ScaleReg, int64_t Scale, // to see if ScaleReg is actually X+C. If so, we can turn this into adding // X*Scale + C*Scale to addr mode. ConstantInt *CI = nullptr; Value *AddLHS = nullptr; - if (isa(ScaleReg) && // not a constant expr. + if (isa(ScaleReg) && // not a constant expr. match(ScaleReg, m_Add(m_Value(AddLHS), m_ConstantInt(CI))) && CI->getValue().isSignedIntN(64)) { TestAddrMode.InBounds = false;