?? s_copysignl.s
字號(hào):
/* * Written by J.T. Conklin <jtc@netbsd.org>. * Changes for long double by Ulrich Drepper <drepper@cygnus.com>. * Adopted for x86-64 by Andreas Jaeger <aj@suse.de>. * Public domain. */#include <machine/asm.h>RCSID("$NetBSD: $")ENTRY(__copysignl) movl 32(%rsp),%edx movl 16(%rsp),%eax andl $0x8000,%edx andl $0x7fff,%eax orl %edx,%eax movl %eax,16(%rsp) fldt 8(%rsp) retEND (__copysignl)weak_alias (__copysignl, copysignl)
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -