https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244169

Dimitry Andric <d...@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |d...@freebsd.org

--- Comment #1 from Dimitry Andric <d...@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.
_______________________________________________
freebsd-toolchain@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-toolchain
To unsubscribe, send any mail to "freebsd-toolchain-unsubscr...@freebsd.org"

Reply via email to