summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve MacLean, Qualcomm Datacenter Technologies, Inc <sdmaclea@qti.qualcomm.com>2017-03-30 16:53:55 +0000
committerSteve MacLean, Qualcomm Datacenter Technologies, Inc <sdmaclea@qti.qualcomm.com>2017-03-30 16:53:55 +0000
commit2972b196d391ec4f858fab30b4697ed28d1b8954 (patch)
tree21b1106175573b93a508f1813be6392e3def7077
parent03e9fd77c9ff5933b47e9e2bdce825eaa6e47eba (diff)
downloadcoreclr-2972b196d391ec4f858fab30b4697ed28d1b8954.tar.gz
coreclr-2972b196d391ec4f858fab30b4697ed28d1b8954.tar.bz2
coreclr-2972b196d391ec4f858fab30b4697ed28d1b8954.zip
Fix formatting
-rw-r--r--src/jit/assertionprop.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/jit/assertionprop.cpp b/src/jit/assertionprop.cpp
index 423a8a6470..4c18a284cf 100644
--- a/src/jit/assertionprop.cpp
+++ b/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<ssize_t>(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<ssize_t>(funcAttr.m_args[0]);
vn = funcAttr.m_args[1];