about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-01-28 19:09:06 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-01-28 19:09:06 +0100
commit821ab99bf7087a465b58302c8031e3401195c304 (patch)
tree3fe04e7b7a837a071a5ae9279e25cd95fba0a915 /src/tools
parent282e242f5e5ac86176b3957b932e8feed88b7506 (diff)
downloadbox64-821ab99bf7087a465b58302c8031e3401195c304.tar.gz
box64-821ab99bf7087a465b58302c8031e3401195c304.zip
Try to improve precision of SSE Rounding to int conversion ([DYNAREC] too, introducing BOX64_DYNAREC_FASTROUND to ignore that)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/rcfile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/rcfile.c b/src/tools/rcfile.c
index ab73940b..3b7f3c4a 100644
--- a/src/tools/rcfile.c
+++ b/src/tools/rcfile.c
@@ -106,6 +106,7 @@ ENTRYINT(BOX64_DYNAREC_BIGBLOCK, box64_dynarec_bigblock, 0, 3, 2)   \
 ENTRYINT(BOX64_DYNAREC_STRONGMEM, box64_dynarec_strongmem, 0, 2, 2) \
 ENTRYBOOL(BOX64_DYNAREC_X87DOUBLE, box64_dynarec_x87double)         \
 ENTRYBOOL(BOX64_DYNAREC_FASTNAN, box64_dynarec_fastnan)             \
+ENTRYBOOL(BOX64_DYNAREC_FASTROUND, box64_dynarec_fastround)         \
 ENTRYINT(BOX64_DYNAREC_SAFEFLAGS, box64_dynarec_safeflags, 0, 2, 2) \
 ENTRYBOOL(BOX64_DYNAREC_CALLRET, box64_dynarec_callret)             \
 ENTRYBOOL(BOX64_DYNAREC_BLEEDING_EDGE, box64_dynarec_bleeding_edge) \
@@ -121,6 +122,7 @@ IGNORE(BOX64_DYNAREC_BIGBLOCK)                                      \
 IGNORE(BOX64_DYNAREC_STRONGMEM)                                     \
 IGNORE(BOX64_DYNAREC_X87DOUBLE)                                     \
 IGNORE(BOX64_DYNAREC_FASTNAN)                                       \
+IGNORE(BOX64_DYNAREC_FASTROUND)                                     \
 IGNORE(BOX64_DYNAREC_SAFEFLAGS)                                     \
 IGNORE(BOX64_DYNAREC_CALLRET)                                       \
 IGNORE(BOX64_DYNAREC_BLEEDING_EDGE)                                 \