@@ -461,7 +461,7 @@ void InterpCompiler::LinkBBs(InterpBasicBlock *from, InterpBasicBlock *to)
461461 if (newCapacity > prevCapacity)
462462 {
463463 InterpBasicBlock **newa = (InterpBasicBlock**)AllocMemPool (newCapacity * sizeof (InterpBasicBlock*));
464- if (from->outCount != 0 )
464+ if (from->outCount != 0 )
465465 {
466466 memcpy (newa, from->ppOutBBs , from->outCount * sizeof (InterpBasicBlock*));
467467 }
@@ -1878,8 +1878,8 @@ int32_t InterpCompiler::GetInterpTypeStackSize(CORINFO_CLASS_HANDLE clsHnd, Inte
18781878 if (align < INTERP_STACK_SLOT_SIZE)
18791879 align = INTERP_STACK_SLOT_SIZE;
18801880
1881- // We do not align beyond the stack alignment
1882- // (This is relevant for structs with very high alignment requirements,
1881+ // We do not align beyond the stack alignment
1882+ // (This is relevant for structs with very high alignment requirements,
18831883 // where we align within struct layout, but the structs are not actually
18841884 // aligned on the stack)
18851885 if (align > INTERP_STACK_ALIGNMENT)
@@ -4886,7 +4886,7 @@ class InterpILOpcodePeeps
48864886 OpcodePeep peepTypeValueType = { peepTypeValueTypeOpcodes, &InterpCompiler::IsTypeValueTypePeep, &InterpCompiler::ApplyTypeValueTypePeep, " TypeValueType" };
48874887
48884888public:
4889- OpcodePeep* Peeps[10 ] = {
4889+ OpcodePeep* Peeps[10 ] = {
48904890 &peepTypeEqualityCheck,
48914891 &peepStoreLoad,
48924892 &peepStoreLoad1,
@@ -4901,7 +4901,7 @@ class InterpILOpcodePeeps
49014901 bool FindAndApplyPeep (InterpCompiler* compiler)
49024902 {
49034903 const uint8_t * ip = compiler->m_ip ;
4904-
4904+
49054905 for (int i = 0 ; Peeps[i] != NULL ; i++)
49064906 {
49074907 OpcodePeep *peep = Peeps[i];
@@ -5027,7 +5027,7 @@ bool InterpCompiler::IsTypeEqualityCheckPeep(const uint8_t* ip, OpcodePeepElemen
50275027 *ppComputedInfo = (void *)(size_t )((ni == NI_System_Type_op_Equality) ? 0 : 1 );
50285028 return true ;
50295029 }
5030- else
5030+ else
50315031 {
50325032 assert (compareResult == TypeCompareState::Must);
50335033 // The types are definitely equal, so we can optimize this to a constant result
@@ -5612,7 +5612,7 @@ void InterpCompiler::GenerateCode(CORINFO_METHOD_INFO* methodInfo)
56125612#endif
56135613
56145614 // Check for IL opcode peephole optimizations
5615-
5615+
56165616 if (ILOpcodePeeps.FindAndApplyPeep (this ))
56175617 continue ;
56185618
@@ -8254,7 +8254,7 @@ void InterpCompiler::GenerateCode(CORINFO_METHOD_INFO* methodInfo)
82548254 m_compHnd->embedGenericHandle (&resolvedToken, false , m_methodInfo->ftn , &embedInfo);
82558255 m_pStackPointer--;
82568256 DeclarePointerIsClass ((CORINFO_CLASS_HANDLE)embedInfo.compileTimeHandle );
8257- EmitPushHelperCall_2 (castingHelper, embedInfo, m_pStackPointer[0 ].var , g_stackTypeFromInterpType[*m_ip == CEE_CASTCLASS ? InterpTypeO : InterpTypeI ], NULL );
8257+ EmitPushHelperCall_2 (castingHelper, embedInfo, m_pStackPointer[0 ].var , g_stackTypeFromInterpType[InterpTypeO], NULL );
82588258 m_ip += 5 ;
82598259 break ;
82608260 }
0 commit comments