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/JitInterface
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/JitInterface')
-rw-r--r--src/JitInterface/src/CorInfoImpl.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/JitInterface/src/CorInfoImpl.cs b/src/JitInterface/src/CorInfoImpl.cs
index fd1152694..6aacff974 100644
--- a/src/JitInterface/src/CorInfoImpl.cs
+++ b/src/JitInterface/src/CorInfoImpl.cs
@@ -1185,7 +1185,7 @@ namespace Internal.JitInterface
if (field.HasRva)
{
- throw new NotSupportedException();
+ throw new NotSupportedException("getFieldInfo for RVA mapped field");
}
fieldAccessor = CORINFO_FIELD_ACCESSOR.CORINFO_FIELD_STATIC_SHARED_STATIC_HELPER;