Skip to content

Commit 798bef9

Browse files
Fix formatting
1 parent b82c87f commit 798bef9

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

src/coreclr/jit/fgopt.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3445,7 +3445,7 @@ bool Compiler::fgBlockEndFavorsTailDuplication(BasicBlock* block, unsigned lclNu
34453445
while (count < limit)
34463446
{
34473447
count++;
3448-
unsigned storeLclNum;
3448+
unsigned storeLclNum;
34493449
GenTree* const tree = stmt->GetRootNode();
34503450
if (tree->OperIsStoreLcl(&storeLclNum) && (storeLclNum == lclNum) && !tree->OperIsBlkOp())
34513451
{
@@ -3606,7 +3606,7 @@ bool Compiler::fgBlockIsGoodTailDuplicationCandidate(BasicBlock* target, unsigne
36063606
// Otherwise check the first stmt.
36073607
// Verify the branch is just a simple local compare.
36083608
//
3609-
unsigned storeLclNum;
3609+
unsigned storeLclNum;
36103610
GenTree* const firstTree = firstStmt->GetRootNode();
36113611
if (!firstTree->OperIsStoreLclVar(&storeLclNum))
36123612
{

src/coreclr/jit/gentree.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5240,7 +5240,7 @@ unsigned Compiler::gtSetEvalOrder(GenTree* tree)
52405240
break;
52415241

52425242
case GT_LCL_FLD:
5243-
level = 1;
5243+
level = 1;
52445244
gtGetLclFldNodeCost(tree->AsLclFld(), &costEx, &costSz);
52455245
break;
52465246

@@ -5597,8 +5597,8 @@ unsigned Compiler::gtSetEvalOrder(GenTree* tree)
55975597
costSz += 3;
55985598
}
55995599
#endif
5600-
level = gtSetEvalOrder(op1);
5601-
unsigned lvl2 = gtSetEvalOrder(op2);
5600+
level = gtSetEvalOrder(op1);
5601+
unsigned lvl2 = gtSetEvalOrder(op2);
56025602

56035603
switch (oper)
56045604
{

src/coreclr/jit/helperexpansion.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,7 @@ bool Compiler::fgExpandThreadLocalAccessForCall(BasicBlock** pBlock, Statement*
593593
// Cache the threadStaticBlock value
594594
unsigned threadStaticBlockBaseLclNum = lvaGrabTemp(true DEBUGARG("ThreadStaticBlockBase access"));
595595
lvaTable[threadStaticBlockBaseLclNum].lvType = TYP_I_IMPL;
596-
GenTree* threadStaticBlockBaseDef =
597-
gtNewStoreLclVarNode(threadStaticBlockBaseLclNum, typeThreadStaticBlockValue);
596+
GenTree* threadStaticBlockBaseDef = gtNewStoreLclVarNode(threadStaticBlockBaseLclNum, typeThreadStaticBlockValue);
598597
GenTree* threadStaticBlockBaseLclValueUse = gtNewLclVarNode(threadStaticBlockBaseLclNum);
599598

600599
// Create tree for "if (threadStaticBlockValue != nullptr)"

src/coreclr/jit/morphblock.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1552,7 +1552,7 @@ GenTree* MorphCopyBlockHelper::CopyFieldByField()
15521552

15531553
if (addrSpillStore != nullptr)
15541554
{
1555-
result = m_comp->gtNewOperNode(GT_COMMA, TYP_VOID, addrSpillStore, storeOneFld);
1555+
result = m_comp->gtNewOperNode(GT_COMMA, TYP_VOID, addrSpillStore, storeOneFld);
15561556
addrSpillStore = nullptr;
15571557
}
15581558
else if (result != nullptr)

0 commit comments

Comments
 (0)