diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-04-28 15:20:29 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-04-28 15:21:02 +0200 |
commit | fc07af2f6bd34ef666a6da9efe6ad14766f67387 (patch) | |
tree | 2432df11f6eff5cf4c09b5372bea049a5813ea39 | |
parent | 340ed32cc45e0ada8d57492beec6c857434cab3d (diff) |
test-thread-state-fp: Print mxcsr
-rw-r--r-- | tests/test-thread-state-fp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test-thread-state-fp.c b/tests/test-thread-state-fp.c index 1a7cbdaa..d0e6802a 100644 --- a/tests/test-thread-state-fp.c +++ b/tests/test-thread-state-fp.c @@ -185,6 +185,8 @@ static void thread_xfp_getset(void *arg) for (int j=0; j<16; j++) ASSERT(xfp->fp_xreg_word[3][j] == 0x33, "register xmm3 wasn't correctly retrieved from the getset thread"); + + printf("mxcsr (after get) %04x\n", xfp->fp_mxcsr); ASSERT(xfp->fp_mxcsr == 0x1f80, "mxcsr wasn't correctly retrieved from the getset thread"); memset(xfp->fp_xreg_word[7], 0x77, 16); |