* Adhemerval Zanella: > - bool overflow = check_mul_overflow_size_t (element_size, count, &size); > + bool overflow = INT_MULTIPLY_WRAPV (element_size, count, &size); What's the reason for not using the compiler built-in?