diff options
| author | gingerBill <bill@gingerbill.org> | 2019-05-28 20:53:56 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-05-28 20:53:56 +0100 |
| commit | c40acd008e92f8385ac1535adcbb4d7a46ce0a0e (patch) | |
| tree | 7b2badcd7f10bc00a05ba69570ff3643ae1009c0 /src/check_expr.cpp | |
| parent | 3d2279fba0b322bd8d82bb43cb21f6f6f00515c5 (diff) | |
Add i128/u128 support for bit sets
Diffstat (limited to 'src/check_expr.cpp')
| -rw-r--r-- | src/check_expr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 1e7e7a965..be135ce68 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -86,8 +86,8 @@ 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); -Type *type_to_abi_compat_result_type(gbAllocator a, Type *original_type); +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(CheckerContext *c, Type *type); |