From: Steve MacLean, Qualcomm Datacenter Technologies, Inc Date: Thu, 30 Mar 2017 16:53:55 +0000 (+0000) Subject: Fix formatting X-Git-Tag: submit/tizen/20210909.063632~11030^2~7488^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bae1303d22c4f3aa2ee63f9e86f0b1be900e2805;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix formatting Commit migrated from https://github.com/dotnet/coreclr/commit/2972b196d391ec4f858fab30b4697ed28d1b8954 --- diff --git a/src/coreclr/src/jit/assertionprop.cpp b/src/coreclr/src/jit/assertionprop.cpp index 423a8a6..4c18a28 100644 --- a/src/coreclr/src/jit/assertionprop.cpp +++ b/src/coreclr/src/jit/assertionprop.cpp @@ -947,12 +947,14 @@ AssertionIndex Compiler::optCreateAssertion(GenTreePtr op1, while (vnStore->GetVNFunc(vn, &funcAttr) && (funcAttr.m_func == (VNFunc)GT_ADD) && (vnStore->TypeOfVN(vn) == TYP_BYREF)) { - if (vnStore->IsVNConstant(funcAttr.m_args[1]) && varTypeIsIntegral(vnStore->TypeOfVN(funcAttr.m_args[1]))) + if (vnStore->IsVNConstant(funcAttr.m_args[1]) && + varTypeIsIntegral(vnStore->TypeOfVN(funcAttr.m_args[1]))) { offset += vnStore->CoercedConstantValue(funcAttr.m_args[1]); vn = funcAttr.m_args[0]; } - else if (vnStore->IsVNConstant(funcAttr.m_args[0]) && varTypeIsIntegral(vnStore->TypeOfVN(funcAttr.m_args[0]))) + else if (vnStore->IsVNConstant(funcAttr.m_args[0]) && + varTypeIsIntegral(vnStore->TypeOfVN(funcAttr.m_args[0]))) { offset += vnStore->CoercedConstantValue(funcAttr.m_args[0]); vn = funcAttr.m_args[1];