aboutsummaryrefslogtreecommitdiff
path: root/src/check_type.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2019-07-27 10:20:11 +0100
committergingerBill <bill@gingerbill.org>2019-07-27 10:20:11 +0100
commitf3bffb98101e3a584c8a5e8a6389c608ffe64c40 (patch)
tree1de3f067a441934fc7d5ed5f69e6171cae7443d9 /src/check_type.cpp
parent540730c0bedb7f6e107d2ed01c804f897074419d (diff)
Improvement to the Odin calling conventions to pass certain things by "implicit reference" (`const &` in C++)
Diffstat (limited to 'src/check_type.cpp')
-rw-r--r--src/check_type.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/check_type.cpp b/src/check_type.cpp
index f4e5b49d0..5b20a48fc 100644
--- a/src/check_type.cpp
+++ b/src/check_type.cpp
@@ -2084,6 +2084,14 @@ void set_procedure_abi_types(CheckerContext *c, Type *type) {
Type *original_type = e->type;
Type *new_type = type_to_abi_compat_param_type(c->allocator, original_type, type->Proc.calling_convention);
type->Proc.abi_compat_params[i] = new_type;
+ switch (type->Proc.calling_convention) {
+ case ProcCC_Odin:
+ case ProcCC_Contextless:
+ if (is_type_pointer(new_type) & !is_type_pointer(e->type)) {
+ e->flags |= EntityFlag_ImplicitReference;
+ }
+ break;
+ }
}
}