Skip to content

Commit 3045e22

Browse files
committed
disable memcmpne for EMU_AVX2
1 parent 7a3945d commit 3045e22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jsrc/je.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ extern D xdouble(X);
979979
extern void readlock(S*,S);
980980
extern void writelock(S*,S);
981981
#endif
982-
#if C_AVX2 || EMU_AVX2
982+
#if C_AVX2 //|| EMU_AVX2
983983
extern I memcmpne(void*, void*, I);
984984
#else
985985
#define memcmpne(s,t,l) (!!memcmp((s),(t),(l)))

jsrc/v1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
static B jtmatchsub(J,A,A,B* RESTRICT,I,I,I,I,I);
2222
static F2(jtmatchs);
2323

24-
#if !C_AVX2 && !EMU_AVX2
24+
#if !C_AVX2 //&& !EMU_AVX2
2525

2626
#define MCS(q,af,wf) ((((q>1)+(q>0))<<2)+(af?2:0)+(wf?1:0))
2727
// set *x++ to b1 if *u=*v, b0 otherwise

0 commit comments

Comments
 (0)