Add "naked" calling convention (removes prologue and epilogue)

This commit is contained in:
gingerBill
2021-04-28 10:49:30 +01:00
parent afe185ee22
commit 24fce21d90
7 changed files with 15 additions and 1 deletions

View File

@@ -3220,6 +3220,7 @@ ProcCallingConvention string_to_calling_convention(String s) {
if (s == "fastcall") return ProcCC_FastCall;
if (s == "fast") return ProcCC_FastCall;
if (s == "none") return ProcCC_None;
if (s == "naked") return ProcCC_Naked;
return ProcCC_Invalid;
}