Skip to content

Commit 9993252

Browse files
committed
PR feedback
1 parent bf539fd commit 9993252

2 files changed

Lines changed: 2 additions & 11 deletions

File tree

src/coreclr/inc/gc_unwind_x86.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@
2424
#define NOT_IN_NATIVEAOT_PRE_COMMA(a) ,a
2525
#endif
2626

27-
/*****************************************************************************
28-
<TODO>ToDo: Do we want to include JIT/IL/target.h? </TODO>
29-
*/
30-
3127
enum regNum
3228
{
3329
REGI_EAX, REGI_ECX, REGI_EDX, REGI_EBX,

src/coreclr/inc/gcinfo.h

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,6 @@
1313
/*****************************************************************************/
1414

1515
#include "daccess.h"
16-
#ifndef FEATURE_NATIVEAOT
17-
#include "windef.h" // For UINT32
18-
#else
19-
#define UINT32 uint32_t
20-
#endif
2116

2217
// Some declarations in this file are used on non-x86 platforms, but most are x86-specific.
2318

@@ -61,7 +56,7 @@ const unsigned this_OFFSET_FLAG = 0x2; // the offset is "this"
6156
struct GCInfoToken
6257
{
6358
PTR_VOID Info;
64-
UINT32 Version;
59+
uint32_t Version;
6560

6661
#ifdef FEATURE_NATIVEAOT
6762
GCInfoToken(PTR_VOID info)
@@ -71,7 +66,7 @@ struct GCInfoToken
7166
}
7267
#endif
7368

74-
static UINT32 ReadyToRunVersionToGcInfoVersion(UINT32 readyToRunMajorVersion)
69+
static uint32_t ReadyToRunVersionToGcInfoVersion(uint32_t readyToRunMajorVersion)
7570
{
7671
// GcInfo version is current from ReadyToRun version 2.0
7772
return GCINFO_VERSION;

0 commit comments

Comments
 (0)