We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8efd26b commit 0ef644fCopy full SHA for 0ef644f
test/miscellaneous.jl
@@ -1139,5 +1139,16 @@ if Base.libllvm_version ≥ v"8" || LoopVectorization.VectorizationBase.SIMD_NAT
1139
end
1140
1141
1142
+
1143
+@test_throws LoadError @macroexpand begin # pull #172
1144
+ @avx for i in eachindex(xs)
1145
+ if i in axes(ys,1)
1146
+ xs[i] = ys[i]
1147
+ else
1148
+ xs[i] = zero(eltype(ys))
1149
+ end
1150
1151
+end
1152
1153
1154
0 commit comments