This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ class LclVarDsc
322
322
#endif // FEATURE_SIMD
323
323
unsigned char lvRegStruct : 1 ; // This is a reg-sized non-field-addressed struct.
324
324
325
- unsigned char lvClassIsExact : 1 ; // lvClassHandle is the exact type
325
+ unsigned char lvClassIsExact : 1 ; // lvClassHandle is the exact type
326
326
327
327
union {
328
328
unsigned lvFieldLclStart; // The index of the local var representing the first field in the promoted struct
Original file line number Diff line number Diff line change @@ -12621,7 +12621,7 @@ void Compiler::impImportBlockCode(BasicBlock* block)
12621
12621
lclNum = lvaGrabTemp(true DEBUGARG("NewObj constructor temp"));
12622
12622
12623
12623
// Note the class handle...
12624
- lvaTable[lclNum].lvClassHnd = resolvedToken.hClass;
12624
+ lvaTable[lclNum].lvClassHnd = resolvedToken.hClass;
12625
12625
lvaTable[lclNum].lvClassIsExact = 1;
12626
12626
12627
12627
// In the value class case we only need clsHnd for size calcs.
@@ -18500,7 +18500,7 @@ void Compiler::impDevirtualizeCall(GenTreeCall* call,
18500
18500
const unsigned objLcl = obj->AsLclVar()->GetLclNum();
18501
18501
18502
18502
objClass = lvaTable[objLcl].lvClassHnd;
18503
- isExact = lvaTable[objLcl].lvClassIsExact;
18503
+ isExact = lvaTable[objLcl].lvClassIsExact;
18504
18504
break;
18505
18505
}
18506
18506
You can’t perform that action at this time.
0 commit comments