[Bug 244169] [clang] __builtin_mul_overflow() with 64-bit values requires __muloti4 which is missing on 32-bit architectures
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Sat May 23 11:06:46 UTC 2020
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244169
Dimitry Andric <dim at FreeBSD.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dim at FreeBSD.org
--- Comment #1 from Dimitry Andric <dim at FreeBSD.org> ---
We do compile contrib/llvm-project/compiler-rt/lib/builtins/muloti4.c as part
of libcompiler_rt, but the file starts with:
#include "int_lib.h"
#ifdef CRT_HAS_128BIT
// Returns: a * b
// Effects: sets *overflow to 1 if a * b overflows
COMPILER_RT_ABI ti_int __muloti4(ti_int a, ti_int b, int *overflow) {
Obviously, CRT_HAS_128BIT is false on 32-bit platforms; it is defined in
int_lib.h as:
#if defined(__LP64__) || defined(__wasm__) || defined(__mips64) ||
\
defined(__riscv) || defined(_WIN64)
#define CRT_HAS_128BIT
#endif
So I'm not really sure what we can do about this...
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-toolchain
mailing list