Skip to content

Commit

Permalink
Fill in ARM FPSCR stub
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuclaw committed Sep 27, 2014
1 parent 91322bc commit dfca385
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion std/math.d
Expand Up @@ -3848,7 +3848,15 @@ private:
}
else version (ARM)
{
// TODO: Fill this in for VFP.
// ARM FPSCR is a 32bit register
enum : int
{
INEXACT_MASK = 0x1000,
UNDERFLOW_MASK = 0x0800,
OVERFLOW_MASK = 0x0400,
DIVBYZERO_MASK = 0x0200,
INVALID_MASK = 0x0100
}
}
else version(SPARC)
{
Expand Down

0 comments on commit dfca385

Please sign in to comment.