Hello!
I am using the ARM FuSa C library version 6.6.A and ARM compiler for Embedded FuSa 6.16.2.
I have a variable defined as float, that I am using with the isinf(x) macro defined in math.h. Compiler gives me this warning "warning: implicit conversion increases floating-point precision: 'float' to 'double' [-Wdouble-promotion]" with a note "note: expanded from macro 'isinf'". To my understanding the macro should check the size of the input and decide if it uses __ARM_isinf() or __ARM_isinff(). I check the size of the variable before and it is 4 like it should be for a float variable.
Why does it still give me that warning? How do I get rid of that warning without ignoring it?
RTL
Interesting that they made it this way.
Guess I could use __Arm_isinff(x) directly or write my own macro with it to avoid having to suppress this warning.
Thanks!