mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
x64FPURoundMode: fix comments
This commit is contained in:
parent
319394d63e
commit
de3c01dc2a
1 changed files with 2 additions and 2 deletions
|
@ -42,9 +42,9 @@ namespace FPURoundMode
|
||||||
static const u32 simd_rounding_table[] =
|
static const u32 simd_rounding_table[] =
|
||||||
{
|
{
|
||||||
(0 << 13) | EXCEPTION_MASK, // nearest
|
(0 << 13) | EXCEPTION_MASK, // nearest
|
||||||
(3 << 13) | EXCEPTION_MASK, // -inf
|
(3 << 13) | EXCEPTION_MASK, // zero
|
||||||
(2 << 13) | EXCEPTION_MASK, // +inf
|
(2 << 13) | EXCEPTION_MASK, // +inf
|
||||||
(1 << 13) | EXCEPTION_MASK, // zero
|
(1 << 13) | EXCEPTION_MASK, // -inf
|
||||||
};
|
};
|
||||||
u32 csr = simd_rounding_table[rounding_mode];
|
u32 csr = simd_rounding_table[rounding_mode];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue