ARM-software / acle

Arm C Language Extensions (ACLE)
Other
85 stars 54 forks source link

[proposal] New macro __ARM_ACLE_VERSION to use with the new __ARM_ACLE macro definition #297

Closed vhscampos closed 6 months ago

vhscampos commented 7 months ago

With the new proposed __ARM_ACLE macro definition, we should consider the creation of a new utility macro to use with it:

#define __ARM_ACLE_VERSION(year,quarter,patch) (year*100 + quarter*10 + patch)
#if __ARM_ACLE >= __ARM_ACLE_VERSION(2024, 1, 0 )
vhscampos commented 7 months ago

Related to #294

Suggested by @DanielKristofKiss