Skip to content

Commit

Permalink
whitespace and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdageek committed Aug 14, 2024
1 parent fe58509 commit ebdeb59
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/coreclr/vm/appdomain.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,6 @@ class AppDomain : public BaseDomain
TieredCompilationManager m_tieredCompilationManager;

#endif

}; // class AppDomain

// Just a ref holder
Expand Down
1 change: 1 addition & 0 deletions src/coreclr/vm/ceeload.h
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,7 @@ class ModuleBase
// string helper
void InitializeStringData(DWORD token, EEStringData *pstrData, CQuickBytes *pqb);
#endif

};

// A code:Module represents a DLL or EXE file loaded from the disk. A module live in a code:Assembly
Expand Down
2 changes: 0 additions & 2 deletions src/coreclr/vm/codeman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1207,7 +1207,6 @@ PTR_VOID GetUnwindDataBlob(TADDR moduleBase, PTR_RUNTIME_FUNCTION pRuntimeFuncti

EEJitManager::EEJitManager()
:
IJitManager (),
// CRST_DEBUGGER_THREAD - We take this lock on debugger thread during EnC add method, among other things
// CRST_TAKEN_DURING_SHUTDOWN - We take this lock during shutdown if ETW is on (to do rundown)
m_CodeHeapCritSec( CrstSingleUseLock,
Expand Down Expand Up @@ -5485,7 +5484,6 @@ int HotColdMappingLookupTable::LookupMappingForMethod(ReadyToRunInfo* pInfo, ULO
#ifndef DACCESS_COMPILE

ReadyToRunJitManager::ReadyToRunJitManager()
: IJitManager()
{
WRAPPER_NO_CONTRACT;
}
Expand Down
2 changes: 0 additions & 2 deletions src/coreclr/vm/codeman.h
Original file line number Diff line number Diff line change
Expand Up @@ -1464,8 +1464,6 @@ struct cdac_data<RangeSectionMap>
};
};



struct RangeSectionMapData
{
BYTE Data[sizeof(RangeSectionMap)];
Expand Down
8 changes: 4 additions & 4 deletions src/coreclr/vm/precode.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#if defined(TARGET_AMD64)

#define OFFSETOF_PRECODE_TYPE 0
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5 // FIXME: unused
#define OFFSETOF_PRECODE_TYPE_MOV_R10 10 // FIXME: unused
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5
#define OFFSETOF_PRECODE_TYPE_MOV_R10 10

#define SIZEOF_PRECODE_BASE 16

Expand All @@ -24,8 +24,8 @@
EXTERN_C VOID STDCALL PrecodeRemotingThunk();

#define OFFSETOF_PRECODE_TYPE 0
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5 // FIXME: unuxed
#define OFFSETOF_PRECODE_TYPE_MOV_RM_R 6 // FIXME: unused
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5
#define OFFSETOF_PRECODE_TYPE_MOV_RM_R 6

#define SIZEOF_PRECODE_BASE 8

Expand Down

0 comments on commit ebdeb59

Please sign in to comment.