compiler:simdhelp wanted
Description
Inspired by https://github.com/JuliaLang/julia/pull/15356#issuecomment-192931987 and the discussion there, it would be lovely if the following worked:
@simd for (IA, IB) in zip(eachindex(A), eachindex(B))
@inbounds s += A[IA] * B[IB]
end