diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2021-12-02 01:42:07 +0100 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2021-12-02 01:46:55 +0100 |
commit | 1c5317d6214baec897120320423e6ad9f4980fdf (patch) | |
tree | 5453c88a9e734f627bb269fc154d7f69c0184ef4 /libphobos/src | |
parent | fa10faa72d8e9e97b6e564f8b0a7b602538d0da0 (diff) | |
download | gcc-1c5317d6214baec897120320423e6ad9f4980fdf.zip gcc-1c5317d6214baec897120320423e6ad9f4980fdf.tar.gz gcc-1c5317d6214baec897120320423e6ad9f4980fdf.tar.bz2 |
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.
Diffstat (limited to 'libphobos/src')
-rw-r--r-- | libphobos/src/std/math/hardware.d | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libphobos/src/std/math/hardware.d b/libphobos/src/std/math/hardware.d index 90bc96d..b768969 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); |