bolt/deps/llvm-18.1.8/libclc/generic/lib/integer/abs.inc

4 lines
158 B
PHP
Raw Normal View History

2025-02-14 19:21:04 +01:00
_CLC_OVERLOAD _CLC_DEF __CLC_U_GENTYPE abs(__CLC_GENTYPE x) {
return __builtin_astype((__CLC_GENTYPE)(x > (__CLC_GENTYPE)(0) ? x : -x), __CLC_U_GENTYPE);
}