aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2019-02-23 14:42:44 +0000
committergingerBill <bill@gingerbill.org>2019-02-23 14:42:44 +0000
commit64bd884d94fc45600eaed9566585d455b875a87a (patch)
tree7eb8becaf379c2caa4c539243b5b2dad1e64a703 /src/parser.cpp
parenta07232ea6367337d785ef07a1de659c7555357bf (diff)
Add "none" calling convention
Diffstat (limited to 'src/parser.cpp')
-rw-r--r--src/parser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.cpp b/src/parser.cpp
index a62bac233..e38c34a0a 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -2700,6 +2700,7 @@ ProcCallingConvention string_to_calling_convention(String s) {
if (s == "std") return ProcCC_StdCall;
if (s == "fastcall") return ProcCC_FastCall;
if (s == "fast") return ProcCC_FastCall;
+ if (s == "none") return ProcCC_None;
return ProcCC_Invalid;
}