mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 07:14:09 +02:00
Start of SIMD support
This commit is contained in:
parent
73e260c1d5
commit
64b62c09be
30 changed files with 5846 additions and 5096 deletions
|
@ -309,6 +309,15 @@ namespace System
|
|||
|
||||
}
|
||||
|
||||
[AttributeUsage(.Struct)]
|
||||
public struct UnderlyingArrayAttribute : Attribute
|
||||
{
|
||||
public this(Type t, int size, bool isVector)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
[AttributeUsage(.Field | .Method /*2*/)]
|
||||
public struct NoShowAttribute : Attribute
|
||||
{
|
||||
|
|
|
@ -323,9 +323,8 @@ namespace System
|
|||
struct Int64 : int64
|
||||
{
|
||||
public const int64 MaxValue = 0x7FFFFFFFFFFFFFFFL;
|
||||
//public const long MinValue = -0x8000000000000000L;
|
||||
public const int64 MinValue = -0x7FFFFFFFFFFFFFFFL; //TODO: Should be one lower!
|
||||
|
||||
public const int64 MinValue = -0x8000000000000000L;
|
||||
|
||||
public override void ToString(String strBuffer)
|
||||
{
|
||||
// Dumb, make better.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue