diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-28 10:49:30 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-28 10:49:30 +0100 |
| commit | 24fce21d9055ac4cd2124c0fe5396f430e99f24f (patch) | |
| tree | 86e9b95d03038af2a63d10d760afa34940be2eca /core/runtime | |
| parent | afe185ee227b8d4540e4dc11b382eae0671575d2 (diff) | |
Add "naked" calling convention (removes prologue and epilogue)
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index 0033aad9a..5f016579f 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -32,6 +32,7 @@ Calling_Convention :: enum u8 { Fast_Call = 5, None = 6, + Naked = 7, } Type_Info_Enum_Value :: distinct i64; |