Hello to verybody.
I'm using Concerto C28x.
I write this code:
float a,b;
a = (a<b)?(a):(b)
The code select the min between a and b and put the result in a
I expected the compiler use MAXF32 or MINF32 instruction,
but the compiler use COMPF32.
Is there a way the use MIN,MAX instruction or to tell the compiler to use this ?
Thankyou in advice ...