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

Commit 25112a4

Browse files
committed
format
1 parent 5dde62b commit 25112a4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/jit/compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ class LclVarDsc
322322
#endif // FEATURE_SIMD
323323
unsigned char lvRegStruct : 1; // This is a reg-sized non-field-addressed struct.
324324

325-
unsigned char lvClassIsExact : 1; // lvClassHandle is the exact type
325+
unsigned char lvClassIsExact : 1; // lvClassHandle is the exact type
326326

327327
union {
328328
unsigned lvFieldLclStart; // The index of the local var representing the first field in the promoted struct

src/jit/importer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12621,7 +12621,7 @@ void Compiler::impImportBlockCode(BasicBlock* block)
1262112621
lclNum = lvaGrabTemp(true DEBUGARG("NewObj constructor temp"));
1262212622

1262312623
// Note the class handle...
12624-
lvaTable[lclNum].lvClassHnd = resolvedToken.hClass;
12624+
lvaTable[lclNum].lvClassHnd = resolvedToken.hClass;
1262512625
lvaTable[lclNum].lvClassIsExact = 1;
1262612626

1262712627
// In the value class case we only need clsHnd for size calcs.
@@ -18500,7 +18500,7 @@ void Compiler::impDevirtualizeCall(GenTreeCall* call,
1850018500
const unsigned objLcl = obj->AsLclVar()->GetLclNum();
1850118501

1850218502
objClass = lvaTable[objLcl].lvClassHnd;
18503-
isExact = lvaTable[objLcl].lvClassIsExact;
18503+
isExact = lvaTable[objLcl].lvClassIsExact;
1850418504
break;
1850518505
}
1850618506

0 commit comments

Comments
 (0)