From: Iain Buclaw Date: Thu, 2 Dec 2021 00:42:07 +0000 (+0100) Subject: libphobos: Add missing ControlState variable for AArch64 X-Git-Tag: basepoints/gcc-13~2608 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c5317d6214baec897120320423e6ad9f4980fdf;p=thirdparty%2Fgcc.git libphobos: Add missing ControlState variable for AArch64 Fixes a typo that occurred during the splitting of the std.math module into a package. libphobos/ChangeLog: * src/std/math/hardware.d (FloatingPointControl.getControlState): Add missing ControlState variable for AArch64. --- diff --git a/libphobos/src/std/math/hardware.d b/libphobos/src/std/math/hardware.d index 90bc96df1483..b768969d4cf5 100644 --- a/libphobos/src/std/math/hardware.d +++ b/libphobos/src/std/math/hardware.d @@ -912,6 +912,7 @@ private: } else version (AArch64) { + ControlState cont; asm pure nothrow @nogc { "mrs %0, FPCR;" : "=r" (cont);