@HotSpotIntrinsicCandidate
public static int min (int a, int b)

Returns the smaller of two int values. That is, the result the argument closer to the value of Integer.MIN_VALUE. If the arguments have the same value, the result is that same value.

Parameters:
a    an argument.
b    another argument.

Returns:  the smaller of a and b.