64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
21 lines
431 B
C#
21 lines
431 B
C#
|
|
namespace System.Runtime.CompilerServices {
|
|
|
|
internal static class JitHelpers
|
|
{
|
|
static internal T UnsafeCast<T>(Object o) where T : class
|
|
{
|
|
return Array.UnsafeMov<object, T> (o);
|
|
}
|
|
|
|
static internal int UnsafeEnumCast<T>(T val) where T : struct
|
|
{
|
|
return Array.UnsafeMov<T, int> (val);
|
|
}
|
|
|
|
static internal long UnsafeEnumCastLong<T>(T val) where T : struct
|
|
{
|
|
return Array.UnsafeMov<T, long> (val);
|
|
}
|
|
}
|
|
} |