aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-04-28 10:49:30 +0100
committergingerBill <bill@gingerbill.org>2021-04-28 10:49:30 +0100
commit24fce21d9055ac4cd2124c0fe5396f430e99f24f (patch)
tree86e9b95d03038af2a63d10d760afa34940be2eca /src/parser.hpp
parentafe185ee227b8d4540e4dc11b382eae0671575d2 (diff)
Add "naked" calling convention (removes prologue and epilogue)
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index 8c2eadb46..93c0363ab 100644
--- a/src/parser.hpp
+++ b/src/parser.hpp
@@ -215,8 +215,9 @@ enum ProcCallingConvention {
ProcCC_FastCall = 5,
ProcCC_None = 6,
+ ProcCC_Naked = 7,
- ProcCC_InlineAsm = 7,
+ ProcCC_InlineAsm = 8,
ProcCC_MAX,