aboutsummaryrefslogtreecommitdiff
path: root/src/types.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-06-10 12:26:31 +0100
committergingerBill <bill@gingerbill.org>2020-06-10 12:26:31 +0100
commit6b3ee447f0e6783c414354088a41ad2f4926a45e (patch)
treeb1eb28160643ca5274530d9b6c8d9549847598b6 /src/types.cpp
parent9b1cc6e94f061629d55db9f0baad46229d4fb755 (diff)
Basic cross compilation support
Diffstat (limited to 'src/types.cpp')
-rw-r--r--src/types.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp
index 3a0613b2c..7fd363dd4 100644
--- a/src/types.cpp
+++ b/src/types.cpp
@@ -3526,6 +3526,9 @@ gbString write_type_to_string(gbString str, Type *type) {
case ProcCC_None:
str = gb_string_appendc(str, " \"none\" ");
break;
+ case ProcCC_Pure:
+ str = gb_string_appendc(str, " \"pure\" ");
+ break;
// case ProcCC_VectorCall:
// str = gb_string_appendc(str, " \"vectorcall\" ");
// break;