diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-25 19:56:46 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-25 19:56:46 +0100 |
| commit | 6383714bffb05a34a5320a757e08dd73bf9a2b0c (patch) | |
| tree | b2b06c06315d939a95ba4b93355e8d2495e800cd /src/check_expr.cpp | |
| parent | a25e796b0016dbf180492ef660d0abcc023f5d56 (diff) | |
Remove old procedure ABI code
Diffstat (limited to 'src/check_expr.cpp')
| -rw-r--r-- | src/check_expr.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 885a2eaa3..61cdf7822 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -103,10 +103,6 @@ CallArgumentData check_call_arguments (CheckerContext *c, Operand *operand, Ty Type * check_init_variable (CheckerContext *c, Entity *e, Operand *operand, String context_name); -Type *type_to_abi_compat_param_type(gbAllocator a, Type *original_type, ProcCallingConvention cc); -Type *type_to_abi_compat_result_type(gbAllocator a, Type *original_type, ProcCallingConvention cc); -bool abi_compat_return_by_pointer(gbAllocator a, ProcCallingConvention cc, Type *abi_return_type); -void set_procedure_abi_types(Type *type); void check_assignment_error_suggestion(CheckerContext *c, Operand *o, Type *type); void add_map_key_type_dependencies(CheckerContext *ctx, Type *key); @@ -1088,10 +1084,6 @@ bool is_polymorphic_type_assignable(CheckerContext *c, Type *poly, Type *source, if (!ok) return false; } - if (modify_type) { - set_procedure_abi_types(source); - } - return true; #endif } |