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:
authorMichal Strehovský <michals@microsoft.com>2015-11-24 07:43:34 +0300
committerMichal Strehovský <michals@microsoft.com>2015-11-24 07:43:34 +0300
commit17b3754dfa7aaa38a6682ac2361e218adb537606 (patch)
tree7f73b7a50f4da46fee9e6152bfdf31a946a42249 /src/Native/Runtime/ObjectLayout.cpp
parent6777eed82be4184bb91831b08af627ae17d1becd (diff)
Fix random things
* The assert that dimensions are less than 32 is pointless. We should either enforce it in the compiler if we want to, or stop enforcing it completely. * RhCollect is an assembly helper.
Diffstat (limited to 'src/Native/Runtime/ObjectLayout.cpp')
-rw-r--r--src/Native/Runtime/ObjectLayout.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Native/Runtime/ObjectLayout.cpp b/src/Native/Runtime/ObjectLayout.cpp
index 9c7d14a9c..bce2eaa19 100644
--- a/src/Native/Runtime/ObjectLayout.cpp
+++ b/src/Native/Runtime/ObjectLayout.cpp
@@ -53,7 +53,6 @@ void MDArray::InitMDArrayLength(UInt32 length)
void MDArray::InitMDArrayDimension(UInt32 dimension, UInt32 value)
{
- ASSERT(dimension < 32);
ASSERT(m_Dimensions[dimension] == NULL);
m_Dimensions[dimension] = value;
}