Merge pull request #2648 from Tilka/comment_fix

x64FPURoundMode: fix comments
This commit is contained in:
flacs 2015-06-23 20:03:11 +02:00
commit 2bc8993da5
1 changed files with 2 additions and 2 deletions

View File

@ -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];