On 21/02/2024 18:26, Evgeny Karpov wrote: > +/* Available call ABIs. */ +enum calling_abi +{ + AARCH64_EABI = 0, + MS_ABI = 1 +}; +
The convention in this file seems to be that all enum types to start with aarch64. Also, the enumeration values should start with the name of the enumeration type in upper case, so: enum aarch64_calling_abi { AARCH64_CALLING_ABI_EABI, AARCH64_CALLING_ABI_MS }; or something very much like that. R.