diff options
author | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2019-04-29 05:42:36 +0000 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2019-04-29 05:42:36 +0000 |
commit | be79ec008e8ef292fa1e770d2e87bcb40861f3ea (patch) | |
tree | 211d8da0953b3d67538aa84ac395a1a2fc3b9786 /libphobos/src/std/math.d | |
parent | 7d5010ee7af0d31dbb7c259ceae3d416e7fe38d0 (diff) | |
download | gcc-be79ec008e8ef292fa1e770d2e87bcb40861f3ea.zip gcc-be79ec008e8ef292fa1e770d2e87bcb40861f3ea.tar.gz gcc-be79ec008e8ef292fa1e770d2e87bcb40861f3ea.tar.bz2 |
libphobos: Backport minimal MinGW support patches.
Merges upstream druntime 1ca80e4e, phobos b5e9661a0.
Reviewed-on: https://github.com/dlang/druntime/pull/2587
https://github.com/dlang/phobos/pull/6981
From-SVN: r270638
Diffstat (limited to 'libphobos/src/std/math.d')
-rw-r--r-- | libphobos/src/std/math.d | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/libphobos/src/std/math.d b/libphobos/src/std/math.d index 6dec9ce..062b570 100644 --- a/libphobos/src/std/math.d +++ b/libphobos/src/std/math.d @@ -174,6 +174,12 @@ else version (D_InlineAsm_X86_64) version = InlineAsm_X86_Any; } +version (CRuntime_Microsoft) +{ + version (InlineAsm_X86_Any) + version = MSVC_InlineAsm; +} + version (X86_64) version = StaticallyHaveSSE; version (X86) version (OSX) version = StaticallyHaveSSE; @@ -3692,7 +3698,7 @@ real logb(real x) @trusted nothrow @nogc ret ; } } - else version (CRuntime_Microsoft) + else version (MSVC_InlineAsm) { asm pure nothrow @nogc { @@ -3979,7 +3985,7 @@ real ceil(real x) @trusted pure nothrow @nogc ret ; } } - else version (CRuntime_Microsoft) + else version (MSVC_InlineAsm) { short cw; asm pure nothrow @nogc @@ -4107,7 +4113,7 @@ real floor(real x) @trusted pure nothrow @nogc ret ; } } - else version (CRuntime_Microsoft) + else version (MSVC_InlineAsm) { short cw; asm pure nothrow @nogc @@ -4607,7 +4613,7 @@ real trunc(real x) @trusted nothrow @nogc ret ; } } - else version (CRuntime_Microsoft) + else version (MSVC_InlineAsm) { short cw; asm pure nothrow @nogc |