mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
[S390] std.math: Use IBMZ_Any for SystemZ bindings
This commit is contained in:
parent
b5e9661a08
commit
16a447f584
1 changed files with 4 additions and 2 deletions
|
@ -156,8 +156,10 @@ version (MIPS32) version = MIPS_Any;
|
|||
version (MIPS64) version = MIPS_Any;
|
||||
version (AArch64) version = ARM_Any;
|
||||
version (ARM) version = ARM_Any;
|
||||
version (S390) version = IBMZ_Any;
|
||||
version (SPARC) version = SPARC_Any;
|
||||
version (SPARC64) version = SPARC_Any;
|
||||
version (SystemZ) version = IBMZ_Any;
|
||||
version (RISCV32) version = RISCV_Any;
|
||||
version (RISCV64) version = RISCV_Any;
|
||||
|
||||
|
@ -5128,7 +5130,7 @@ struct FloatingPointControl
|
|||
| inexactException,
|
||||
}
|
||||
}
|
||||
else version (SystemZ)
|
||||
else version (IBMZ_Any)
|
||||
{
|
||||
enum : ExceptionMask
|
||||
{
|
||||
|
@ -5266,7 +5268,7 @@ private:
|
|||
{
|
||||
alias ControlState = ulong;
|
||||
}
|
||||
else version (SystemZ)
|
||||
else version (IBMZ_Any)
|
||||
{
|
||||
alias ControlState = uint;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue