Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Native/Runtime/ObjectLayout.h')
-rw-r--r--src/Native/Runtime/ObjectLayout.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Native/Runtime/ObjectLayout.h b/src/Native/Runtime/ObjectLayout.h
index a25b638c9..bde8fd3f7 100644
--- a/src/Native/Runtime/ObjectLayout.h
+++ b/src/Native/Runtime/ObjectLayout.h
@@ -18,9 +18,9 @@
class ObjHeader
{
private:
-#if defined(_WIN64)
+#if defined(BIT64)
UInt32 m_uAlignpad;
-#endif // _WIN64
+#endif // BIT64
UInt32 m_uSyncBlockValue;
public:
@@ -92,9 +92,9 @@ class Array : public Object
friend class AsmOffsets;
UInt32 m_Length;
-#if defined(_WIN64)
+#if defined(BIT64)
UInt32 m_uAlignpad;
-#endif // _WIN64
+#endif // BIT64
public:
UInt32 GetArrayLength();
void InitArrayLength(UInt32 length);
@@ -106,9 +106,9 @@ typedef DPTR(Array) PTR_Array;
class MDArray : public Object
{
UInt32 m_Length;
-#if defined(_WIN64)
+#if defined(BIT64)
UInt32 m_uAlignpad;
-#endif // _WIN64
+#endif // BIT64
UInt32 m_Dimensions[1];
public:
void InitMDArrayLength(UInt32 length);