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/types.cpp | |
| parent | a25e796b0016dbf180492ef660d0abcc023f5d56 (diff) | |
Remove old procedure ABI code
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/types.cpp b/src/types.cpp index a5c5c2eb2..56081acc8 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -198,11 +198,8 @@ struct TypeProc { isize specialization_count; ProcCallingConvention calling_convention; i32 variadic_index; - Array<Type *> abi_compat_params; - Type * abi_compat_result_type; // TODO(bill): Make this a flag set rather than bools bool variadic; - bool abi_types_set; bool require_results; bool c_vararg; bool is_polymorphic; @@ -317,7 +314,6 @@ enum TypeFlag : u32 { TypeFlag_Polymorphic = 1<<1, TypeFlag_PolySpecialized = 1<<2, TypeFlag_InProcessOfCheckingPolymorphic = 1<<3, - TypeFlag_InProcessOfCheckingABI = 1<<4, }; struct Type { |