Skip to content

Commit a867507

Browse files
committed
fix: condition for early exit
1 parent 11b7197 commit a867507

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

fuel-vm/src/interpreter/memory.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -1145,10 +1145,7 @@ fn slices_equal_avx2(a: &[u8], b: &[u8]) -> bool {
11451145
_mm256_and_si256(cmp3, cmp4),
11461146
);
11471147

1148-
dbg!(combined);
1149-
dbg!(_mm256_testz_si256(combined, combined));
1150-
1151-
if _mm256_testz_si256(combined, combined) == 0 {
1148+
if _mm256_testz_si256(combined, combined) != 0 {
11521149
return false;
11531150
}
11541151

0 commit comments

Comments
 (0)