[PATCH] D support for RISC-V

Andreas Schwab schwab@suse.de
Tue Apr 9 10:48:00 GMT 2019


On Apr 09 2019, David Abdurachmanov <david.abdurachmanov@gmail.com> wrote:

> diff --git a/libphobos/src/std/experimental/allocator/building_blocks/region.d b/libphobos/src/std/experimental/allocator/building_blocks/region.d
> index dfcecce72bd..cafe059a61f 100644
> --- a/libphobos/src/std/experimental/allocator/building_blocks/region.d
> +++ b/libphobos/src/std/experimental/allocator/building_blocks/region.d
> @@ -391,7 +391,8 @@ struct InSituRegion(size_t size, size_t minAlign = platformAlignment)
>      else version (PPC) enum growDownwards = Yes.growDownwards;
>      else version (PPC64) enum growDownwards = Yes.growDownwards;
>      else version (MIPS32) enum growDownwards = Yes.growDownwards;
> -    else version (MIPS64) enum growDownwards = Yes.growDownwards;
> +    else version (RISCV32) enum growDownwards = Yes.growDownwards;
> +    else version (RISCV64) enum growDownwards = Yes.growDownwards;

Why do you remove the MIPS64 case?

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."



More information about the Gcc-patches mailing list