Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions std/experimental/allocator/building_blocks/region.d
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,7 @@ struct InSituRegion(size_t size, size_t minAlign = platformAlignment)
else version (X86_64) enum growDownwards = Yes.growDownwards;
else version (ARM) enum growDownwards = Yes.growDownwards;
else version (AArch64) enum growDownwards = Yes.growDownwards;
else version (HPPA) enum growDownwards = No.growDownwards;
else version (PPC) enum growDownwards = Yes.growDownwards;
else version (PPC64) enum growDownwards = Yes.growDownwards;
else version (MIPS32) enum growDownwards = Yes.growDownwards;
Expand Down
19 changes: 19 additions & 0 deletions std/math.d
Original file line number Diff line number Diff line change
Expand Up @@ -5951,6 +5951,21 @@ nothrow @nogc:
| inexactException,
}
}
else version (HPPA)
{
enum : ExceptionMask
{
inexactException = 0x01,
underflowException = 0x02,
overflowException = 0x04,
divByZeroException = 0x08,
invalidException = 0x10,
severeExceptions = overflowException | divByZeroException
| invalidException,
allExceptions = severeExceptions | underflowException
| inexactException,
}
}
else version (MIPS_Any)
{
enum : ExceptionMask
Expand Down Expand Up @@ -6100,6 +6115,10 @@ private:
{
alias ControlState = uint;
}
else version (HPPA)
{
alias ControlState = uint;
}
else version (PPC_Any)
{
alias ControlState = uint;
Expand Down