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

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

Parameters:
a    an argument.
b    another argument.

Returns:  the larger of a and b.