Skip to content

Commit

Permalink
Merge pull request #6982 from ibuclaw/s390-multilib
Browse files Browse the repository at this point in the history
[S390] std.math: Use IBMZ_Any for SystemZ bindings
merged-on-behalf-of: Nicholas Wilson <thewilsonator@users.noreply.github.com>
  • Loading branch information
dlang-bot committed Apr 28, 2019
2 parents daf0e4f + 03ce27d commit 269749d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions std/math.d
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,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;

Expand Down Expand Up @@ -6009,7 +6011,7 @@ nothrow @nogc:
| inexactException,
}
}
else version (SystemZ)
else version (IBMZ_Any)
{
enum : ExceptionMask
{
Expand Down Expand Up @@ -6159,7 +6161,7 @@ private:
{
alias ControlState = ulong;
}
else version (SystemZ)
else version (IBMZ_Any)
{
alias ControlState = uint;
}
Expand Down

0 comments on commit 269749d

Please sign in to comment.