Skip to content

Commit be536f3

Browse files
committed
win32: do not use fast asm in port_win.c on i686 MinGW
1 parent 5b878d7 commit be536f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/platform/win/port_win.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#include "native_client/src/include/portability.h"
1414

15-
#if ( DO_NOT_USE_FAST_ASSEMBLER_VERSION_FOR_FFS || defined(_WIN64) )
15+
#if ( DO_NOT_USE_FAST_ASSEMBLER_VERSION_FOR_FFS || defined(_WIN64) || !defined(_MSC_VER) )
1616
int ffs(int x) {
1717
int r = 1;
1818

0 commit comments

Comments
 (0)