Excerpts from Yang Yujie's message of Dezember 1, 2023 8:46 am:
> libphobos/ChangeLog:
>
> * src/std/math/hardware.d: Implement FP control.
> ---
> libphobos/src/std/math/hardware.d | 53 +++++++
>
> diff --git a/libphobos/src/std/math/hardware.d
> b/libphobos/src/std/math/hardware.d
> index cb6cb87845c..8d11459a8ac 100644
> --- a/libphobos/src/std/math/hardware.d
> +++ b/libphobos/src/std/math/hardware.d
> @@ -177,6 +177,20 @@ private:
> return result;
> }
> }
> + else version (LoongArch_Any)
> + {
> + version (D_SoftFloat)
> + return 0;
Hi,
Changes to this module should go first to github.com/dlang/phobos.
I also notice that theses SoftFloat static conditions in all LoongArch
support code doesn't exist in upstream either. Can a pull request be
raised to sort out the discrepancy?
Thanks,
Iain.