Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit f701b96

Browse files
author
Sergey Andreenko
authored
fix format (#15064)
1 parent 4bc116b commit f701b96

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/jit/morph.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19535,11 +19535,11 @@ bool Compiler::fgMorphCombineSIMDFieldAssignments(BasicBlock* block, GenTreePtr
1953519535
#if !defined(FEATURE_CORECLR) && defined(_TARGET_AMD64_)
1953619536
GenTreeStmt* SkipNopStmts(GenTreeStmt* stmt)
1953719537
{
19538-
while ((stmt != nullptr) && !stmt->IsNothingNode())
19539-
{
19540-
stmt = stmt->gtNextStmt;
19541-
}
19542-
return stmt;
19538+
while ((stmt != nullptr) && !stmt->IsNothingNode())
19539+
{
19540+
stmt = stmt->gtNextStmt;
19541+
}
19542+
return stmt;
1954319543
}
1954419544

1954519545
#endif // !FEATURE_CORECLR && _TARGET_AMD64_
@@ -19576,7 +19576,7 @@ bool Compiler::fgCheckStmtAfterTailCall()
1957619576
//
1957719577
// See impIsTailCallILPattern() for details on tail call IL patterns
1957819578
// that are supported.
19579-
GenTree* callExpr = callStmt->gtStmtExpr;
19579+
GenTree* callExpr = callStmt->gtStmtExpr;
1958019580

1958119581
if (callExpr->gtOper != GT_RETURN)
1958219582
{

0 commit comments

Comments
 (0)