diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2021-04-26 20:50:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-26 20:50:43 +0100 |
| commit | 53c7e65c57ff0042a0851781712d8fc1e5cae8be (patch) | |
| tree | 1640bdc8740d0fa6fbdd8231b5cd0235727cdba5 /src/types.cpp | |
| parent | aa846d0ea5f40361cc4ada2213c4659fe1b59580 (diff) | |
| parent | a38586420cd2d8534a7be83851d8ca174cce1bcb (diff) | |
Merge pull request #914 from odin-lang/old-backend-removal
Removal of the Old Backend
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 { |