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:
authorManu <manu-silicon@users.noreply.github.com>2015-12-04 03:43:07 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-12-04 04:55:34 +0300
commit6fb4eecd513d3b3e1ae7584a22ece46107e98069 (patch)
treee019a14b92568c6bf2ee915bed5e222491e85570 /src/Native/Runtime/ObjectLayout.h
parentefe3fca48cf76b8857fc9cc68f6a5a962d25c17e (diff)
Replaced _WIN64 by OS agnostic BIT64
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);