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.
This commit is contained in:
Iain Buclaw 2021-12-02 01:42:07 +01:00
parent fa10faa72d
commit 1c5317d621
1 changed files with 1 additions and 0 deletions

View File

@ -912,6 +912,7 @@ private:
}
else version (AArch64)
{
ControlState cont;
asm pure nothrow @nogc
{
"mrs %0, FPCR;" : "=r" (cont);