CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/08/27 02:30:18
Modified files: lib/libm/arch/amd64: e_scalb.S s_significand.S s_significandf.S lib/libm/arch/i387: e_scalb.S s_significand.S s_significandf.S Log message: Use ENTRY_NB() instead of ENTRY() Since llvm 13, there are compiler warnings in libm on amd64 and i386 due to .weak overriding an earlier .globl. Use ENTRY_NB() instead of ENTRY() to avoid emitting the .globl. ok deraadt jca (for amd64) ok guenther