Skip to content

Commit

Permalink
Quick change to fix #30
Browse files Browse the repository at this point in the history
This is a quick fixup which was tested on latest 0.6 and master. Before merging tests on other versions are appropriate.
  • Loading branch information
getzdan committed May 27, 2017
1 parent 0eb0443 commit 7e6366d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auxiliary/meta.jl
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function _stridedloops(N::Int, dims::Symbol, args...)
forex = Expr(:(=), gensym(), rangeex)
ex = Expr(:for, forex, ex)
if d==1
ex = Expr(:macrocall, Symbol("@simd"), ex)
ex = Expr(:macrocall, Symbol("@simd"), LineNumberNode(@__LINE__), ex)
end
end
pre = [Expr(:(=),Symbol(args[i],N),args[i+1]) for i in argiter]
Expand Down

0 comments on commit 7e6366d

Please sign in to comment.