| H A D | builtin_functions.cpp | 5169 /* If the magnitude of the denominator exceeds some huge value, scale down 5179 * huge <= 1 / fmin 5180 * scale <= 1 / fmin / fmax (for |t| >= huge) 5187 ir_constant *huge = imm(1e18f, n); local in function:builtin_builder::_atan2 5189 body.emit(assign(scale, csel(gequal(abs(t), huge),
|