Add "none" calling convention

This commit is contained in:
gingerBill
2019-02-23 14:42:44 +00:00
parent a07232ea63
commit 64bd884d94
4 changed files with 8 additions and 0 deletions

View File

@@ -2894,6 +2894,9 @@ gbString write_type_to_string(gbString str, Type *type) {
case ProcCC_FastCall:
str = gb_string_appendc(str, " \"fastcall\" ");
break;
case ProcCC_None:
str = gb_string_appendc(str, " \"none\" ");
break;
// case ProcCC_VectorCall:
// str = gb_string_appendc(str, " \"vectorcall\" ");
// break;