diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-04-27 00:06:30 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-04-27 00:06:30 +0200 |
| commit | 51b198aa569b4df3cf93716eaeb216348e60d5ba (patch) | |
| tree | a15361c1199f178f918219ec9b718b3459172433 /src/types.cpp | |
| parent | 87bfd3166482eaa3d89387bde03852f23c6f0629 (diff) | |
| parent | 94fd59e6f0e509f823edd3c90130841510cceb70 (diff) | |
Merge remote-tracking branch 'upstream/master' into prototype-fmt
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 { |