Fix issue #22796 - a typo: (__GNUC__ > 9) -> (__GNUC__ > 10) (#22807)

### Description
fix #22796 
Signed-off-by: liqunfu <liqun.fu@microsoft.com>
This commit is contained in:
liqun Fu 2024-11-12 18:56:35 -08:00 committed by GitHub
parent 69a36eb231
commit bc2b1b5e37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,7 +117,7 @@ accumulate_blklen64_r1c1blk1_avx2(
__m256 scale_b_8_ps = _mm256_broadcast_ss(scale_b);
acc0 = _mm256_fmadd_ps(sum_ps, _mm256_mul_ps(scale_a_8_ps, scale_b_8_ps), acc0);
#if !defined(__GNUC__) || (__GNUC__ > 9)
#if !defined(__GNUC__) || (__GNUC__ > 10)
}
#endif
}