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:
authorJan Kotas <jkotas@microsoft.com>2016-06-06 10:30:43 +0300
committerJan Kotas <jkotas@microsoft.com>2016-06-06 10:30:43 +0300
commit74297069ba61578cd05b5004aff309c71de8c349 (patch)
tree85947520671e05c803336dd2bfa29a20e8f382ff /src/Native/Runtime/ObjectLayout.cpp
parentf8479a95f8b2f0092475ae58bd03a48a42c60a38 (diff)
Update RyuJIT package to latest version (#1370)
- Pick up the package from the official feeds - Delete vararg RhNewMDArray helper
Diffstat (limited to 'src/Native/Runtime/ObjectLayout.cpp')
-rw-r--r--src/Native/Runtime/ObjectLayout.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Native/Runtime/ObjectLayout.cpp b/src/Native/Runtime/ObjectLayout.cpp
index 3fa13312f..164f8c4d1 100644
--- a/src/Native/Runtime/ObjectLayout.cpp
+++ b/src/Native/Runtime/ObjectLayout.cpp
@@ -44,18 +44,6 @@ void Array::InitArrayLength(UInt32 length)
m_Length = length;
}
-void MDArray::InitMDArrayLength(UInt32 length)
-{
- ASSERT(NULL == m_Length);
- m_Length = length;
-}
-
-void MDArray::InitMDArrayDimension(UInt32 dimension, UInt32 value)
-{
- ASSERT(m_Dimensions[dimension] == NULL);
- m_Dimensions[dimension] = value;
-}
-
void ObjHeader::SetBit(UInt32 uBit)
{
PalInterlockedOr(&m_uSyncBlockValue, uBit);