Skip to content

Commit ebdeb59

Browse files
committed
whitespace and comments
1 parent fe58509 commit ebdeb59

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

src/coreclr/vm/appdomain.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1834,7 +1834,6 @@ class AppDomain : public BaseDomain
18341834
TieredCompilationManager m_tieredCompilationManager;
18351835

18361836
#endif
1837-
18381837
}; // class AppDomain
18391838

18401839
// Just a ref holder

src/coreclr/vm/ceeload.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,7 @@ class ModuleBase
585585
// string helper
586586
void InitializeStringData(DWORD token, EEStringData *pstrData, CQuickBytes *pqb);
587587
#endif
588+
588589
};
589590

590591
// A code:Module represents a DLL or EXE file loaded from the disk. A module live in a code:Assembly

src/coreclr/vm/codeman.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,6 @@ PTR_VOID GetUnwindDataBlob(TADDR moduleBase, PTR_RUNTIME_FUNCTION pRuntimeFuncti
12071207

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

54875486
ReadyToRunJitManager::ReadyToRunJitManager()
5488-
: IJitManager()
54895487
{
54905488
WRAPPER_NO_CONTRACT;
54915489
}

src/coreclr/vm/codeman.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1464,8 +1464,6 @@ struct cdac_data<RangeSectionMap>
14641464
};
14651465
};
14661466

1467-
1468-
14691467
struct RangeSectionMapData
14701468
{
14711469
BYTE Data[sizeof(RangeSectionMap)];

src/coreclr/vm/precode.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
#if defined(TARGET_AMD64)
1515

1616
#define OFFSETOF_PRECODE_TYPE 0
17-
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5 // FIXME: unused
18-
#define OFFSETOF_PRECODE_TYPE_MOV_R10 10 // FIXME: unused
17+
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5
18+
#define OFFSETOF_PRECODE_TYPE_MOV_R10 10
1919

2020
#define SIZEOF_PRECODE_BASE 16
2121

@@ -24,8 +24,8 @@
2424
EXTERN_C VOID STDCALL PrecodeRemotingThunk();
2525

2626
#define OFFSETOF_PRECODE_TYPE 0
27-
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5 // FIXME: unuxed
28-
#define OFFSETOF_PRECODE_TYPE_MOV_RM_R 6 // FIXME: unused
27+
#define OFFSETOF_PRECODE_TYPE_CALL_OR_JMP 5
28+
#define OFFSETOF_PRECODE_TYPE_MOV_RM_R 6
2929

3030
#define SIZEOF_PRECODE_BASE 8
3131

0 commit comments

Comments
 (0)