Date: Sun, 4 Apr 2021 19:33:48 GMT From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: d218c6f6af33 - main - amd64 fabs.S: use '.section .rodata' instead of '.rodata' Message-ID: <202104041933.134JXmHh067270@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=d218c6f6af336135ea88342d472b0e66c21239c9 commit d218c6f6af336135ea88342d472b0e66c21239c9 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2021-04-04 19:25:43 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2021-04-04 19:33:22 +0000 amd64 fabs.S: use '.section .rodata' instead of '.rodata' Seems to be an issue with older gnu as Reported by: rscheff Sponsored by: The FreeBSD Foundation MFC after: 6 days --- lib/libc/amd64/gen/fabs.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/amd64/gen/fabs.S b/lib/libc/amd64/gen/fabs.S index 1da21d03f506..38e67ab03873 100644 --- a/lib/libc/amd64/gen/fabs.S +++ b/lib/libc/amd64/gen/fabs.S @@ -39,7 +39,7 @@ ENTRY(fabs) ret END(fabs) - .rodata + .section .rodata .p2align 3 signbit: .quad 0x8000000000000000
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104041933.134JXmHh067270>