@@ -438,7 +438,7 @@ void Compiler::fgPerStatementLocalVarLiveness(GenTreePtr startNode, GenTreePtr a
438
438
439
439
if ((tree->gtCall .IsUnmanaged () || (tree->gtCall .IsTailCall () && info.compCallUnmanaged )))
440
440
{
441
- assert (!opts.ShouldUsePInvokeHelpers () || info.compLvFrameListRoot == BAD_VAR_NUM);
441
+ assert (( !opts.ShouldUsePInvokeHelpers ()) || ( info.compLvFrameListRoot == BAD_VAR_NUM) );
442
442
if (!opts.ShouldUsePInvokeHelpers ())
443
443
{
444
444
/* Get the TCB local and mark it as used */
@@ -634,7 +634,7 @@ void Compiler::fgPerBlockLocalVarLiveness()
634
634
635
635
if (block->bbJumpKind == BBJ_RETURN && info.compCallUnmanaged )
636
636
{
637
- assert (!opts.ShouldUsePInvokeHelpers () || info.compLvFrameListRoot == BAD_VAR_NUM);
637
+ assert (( !opts.ShouldUsePInvokeHelpers ()) || ( info.compLvFrameListRoot == BAD_VAR_NUM) );
638
638
if (!opts.ShouldUsePInvokeHelpers ())
639
639
{
640
640
noway_assert (info.compLvFrameListRoot < lvaCount);
@@ -1749,7 +1749,7 @@ VARSET_VALRET_TP Compiler::fgComputeLife(VARSET_VALARG_TP lifeArg,
1749
1749
1750
1750
if (tree->gtCall .IsTailCall () && info.compCallUnmanaged )
1751
1751
{
1752
- assert (!opts.ShouldUsePInvokeHelpers () || info.compLvFrameListRoot == BAD_VAR_NUM);
1752
+ assert (( !opts.ShouldUsePInvokeHelpers ()) || ( info.compLvFrameListRoot == BAD_VAR_NUM) );
1753
1753
if (!opts.ShouldUsePInvokeHelpers ())
1754
1754
{
1755
1755
/* Get the TCB local and make it live */
@@ -1781,7 +1781,7 @@ VARSET_VALRET_TP Compiler::fgComputeLife(VARSET_VALARG_TP lifeArg,
1781
1781
if (tree->gtCall .IsUnmanaged ())
1782
1782
{
1783
1783
/* Get the TCB local and make it live */
1784
- assert (!opts.ShouldUsePInvokeHelpers () || info.compLvFrameListRoot == BAD_VAR_NUM);
1784
+ assert (( !opts.ShouldUsePInvokeHelpers ()) || ( info.compLvFrameListRoot == BAD_VAR_NUM) );
1785
1785
if (!opts.ShouldUsePInvokeHelpers ())
1786
1786
{
1787
1787
noway_assert (info.compLvFrameListRoot < lvaCount);
0 commit comments