mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Use __FBSDID() instead of RCSID() in most .S files under lib/msun/i386,
and one under lib/msun/amd64. This avoids adding the identifiers to the .text section, and moves them to the .comment section instead. Suggested by: bde Approved by: rpaulo (mentor)
This commit is contained in:
parent
680a18f951
commit
b3b74eb4e1
21 changed files with 21 additions and 42 deletions
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(logbl)
|
||||
fldt 8(%rsp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
/* e^x = 2^(x * log2(e)) */
|
||||
ENTRY(exp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(fmod)
|
||||
fldl 12(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(log)
|
||||
fldln2
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(log10)
|
||||
fldlg2
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(remainder)
|
||||
fldl 12(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(sqrt)
|
||||
fldl 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(sqrtl)
|
||||
fldt 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(ceil)
|
||||
pushl %ebp
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(copysign)
|
||||
movl 16(%esp),%edx
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(cos)
|
||||
fldl 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(finite)
|
||||
movl 8(%esp),%eax
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(floor)
|
||||
pushl %ebp
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(logb)
|
||||
fldl 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(logbl)
|
||||
fldt 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(rint)
|
||||
fldl 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(rintl)
|
||||
fldt 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(scalbn)
|
||||
fildl 12(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(significand)
|
||||
fldl 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(sin)
|
||||
fldl 4(%esp)
|
||||
|
|
|
|||
|
|
@ -34,8 +34,7 @@
|
|||
*/
|
||||
|
||||
#include <machine/asm.h>
|
||||
|
||||
RCSID("$FreeBSD$")
|
||||
__FBSDID("$FreeBSD$")
|
||||
|
||||
ENTRY(tan)
|
||||
fldl 4(%esp)
|
||||
|
|
|
|||
Loading…
Reference in a new issue