1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 15:46:05 +02:00

Added UseLLVM attribute

This commit is contained in:
Brian Fiete 2020-04-03 10:34:55 -07:00
parent b21cd0f197
commit ff33c7aca3
2 changed files with 12 additions and 0 deletions

View file

@ -140,6 +140,12 @@ namespace System
} }
[AttributeUsage(.Method | .Class | .Struct | .Enum)]
public struct UseLLVMAttribute : Attribute
{
}
[AttributeUsage(.Method /*2*/ | .StaticField)] [AttributeUsage(.Method /*2*/ | .StaticField)]
public struct CLinkAttribute : Attribute public struct CLinkAttribute : Attribute
{ {

View file

@ -134,6 +134,12 @@ namespace System
} }
[AttributeUsage(.Method | .Class | .Struct | .Enum)]
public struct UseLLVMAttribute : Attribute
{
}
[AttributeUsage(.Method | .Class | .Struct | .Enum)] [AttributeUsage(.Method | .Class | .Struct | .Enum)]
public struct OptimizeAttribute : Attribute public struct OptimizeAttribute : Attribute
{ {