Remove old procedure ABI code

This commit is contained in:
gingerBill
2021-04-25 19:56:46 +01:00
parent a25e796b00
commit 6383714bff
5 changed files with 8 additions and 645 deletions
-4
View File
@@ -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 {