Skip to content

Commit

Permalink
Add MSVC macro
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Reinking <[email protected]>
  • Loading branch information
abadams and alexreinking authored Dec 23, 2024
1 parent 7eae9aa commit 7af53a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/correctness/saturating_casts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ void test_one_source() {

int main(int argc, char **argv) {

#ifdef __i386__
#if defined(__i386__) || defined(_M_IX86)
printf("[SKIP] Skipping test because it requires bit-exact int to float casts,\n"
"and on i386 without SSE it is hard to guarantee that the test binary won't use x87 instructions.\n");
return 0;
Expand Down

0 comments on commit 7af53a7

Please sign in to comment.