diff options
| author | Eugen Wissner <belka@caraus.de> | 2018-05-08 17:45:51 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2018-05-08 18:07:42 +0200 |
| commit | 2ec750ca05a87ebc20e358e73cb375a2c844ad59 (patch) | |
| tree | f04a291d242fccf82da47612caa3658917f905ca /arch/x64/linux/math/abs.S | |
| parent | 6ed299286223654f1a89635c93c06d4b57062f9a (diff) | |
| download | tanya-2ec750ca05a87ebc20e358e73cb375a2c844ad59.tar.gz | |
Fix math.nbtheory linkage to asm
Don't use extern for templated functions. If the function argument is
const, it gets a different mangling. So define a private function for
each floatint point length and call it from template.
Diffstat (limited to 'arch/x64/linux/math/abs.S')
| -rw-r--r-- | arch/x64/linux/math/abs.S | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/arch/x64/linux/math/abs.S b/arch/x64/linux/math/abs.S index edf8ac9..6635273 100644 --- a/arch/x64/linux/math/abs.S +++ b/arch/x64/linux/math/abs.S @@ -2,10 +2,10 @@ // fabsf. - .globl _D5tanya4math8nbtheory10__T3absTfZ3absFNaNbNiNffZf - .type _D5tanya4math8nbtheory10__T3absTfZ3absFNaNbNiNffZf, @function + .globl _D5tanya4math8nbtheory4fabsFNaNbNiNffZf + .type _D5tanya4math8nbtheory4fabsFNaNbNiNffZf, @function -_D5tanya4math8nbtheory10__T3absTfZ3absFNaNbNiNffZf: +_D5tanya4math8nbtheory4fabsFNaNbNiNffZf: mov $0x7fffffff, %eax movq %rax, %xmm1 andpd %xmm1, %xmm0 @@ -13,10 +13,10 @@ _D5tanya4math8nbtheory10__T3absTfZ3absFNaNbNiNffZf: // fabs. - .globl _D5tanya4math8nbtheory10__T3absTdZ3absFNaNbNiNfdZd - .type _D5tanya4math8nbtheory10__T3absTdZ3absFNaNbNiNfdZd, @function + .globl _D5tanya4math8nbtheory4fabsFNaNbNiNfdZd + .type _D5tanya4math8nbtheory4fabsFNaNbNiNfdZd, @function -_D5tanya4math8nbtheory10__T3absTdZ3absFNaNbNiNfdZd: +_D5tanya4math8nbtheory4fabsFNaNbNiNfdZd: mov $0x7fffffffffffffff, %rax movq %rax, %xmm1 andpd %xmm1, %xmm0 @@ -24,12 +24,12 @@ _D5tanya4math8nbtheory10__T3absTdZ3absFNaNbNiNfdZd: // fabsl. - .globl _D5tanya4math8nbtheory10__T3absTeZ3absFNaNbNiNfeZe - .type _D5tanya4math8nbtheory10__T3absTeZ3absFNaNbNiNfeZe, @function + .globl _D5tanya4math8nbtheory4fabsFNaNbNiNfeZe + .type _D5tanya4math8nbtheory4fabsFNaNbNiNfeZe, @function // Load the parameter from the stack onto FP stack, execute 'fabs' instruction // The result is returned in ST0. -_D5tanya4math8nbtheory10__T3absTeZ3absFNaNbNiNfeZe: +_D5tanya4math8nbtheory4fabsFNaNbNiNfeZe: fldt 0x8(%rsp) fabs ret |
