__fp_minNN
In this section:
Syntax
float __fp_min32(floatvalue1, floatvalue2);
double __fp_min64(doublevalue1, doublevalue2);
Description
Returns the smallest value of value1 and value2, using the instruction fmin.s (32-bit FPU) or fmin.d (64-bit FPU). A compatible FPU must be available.
Note
To use intrinsic functions in an application, you must include the header file(s) where they are declared, see Summary of intrinsic functions.