Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Support Expr head :simdloop
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTodd13 committed May 12, 2017
1 parent 1c3a2a2 commit 3bc16cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/alias-analysis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,8 @@ function from_expr_inner(state, ast::Expr, callback, cbdata)
# skip
elseif is(head, :static_parameter)
# skip
elseif is(head, :simdloop)
# skip
else
throw(string("from_expr: unknown Expr head :", head))
end
Expand Down
2 changes: 2 additions & 0 deletions src/liveness.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1199,6 +1199,8 @@ function from_expr_helper(ast::Expr,
# ISSUE: will this cause precision issue, or correctness issue? I guess it is precision?
elseif head == :llvmcall
# Intentionally do nothing.
elseif head == :simdloop
# Intentionally do nothing.
else
throw(string("from_expr: unknown Expr head :", head))
end
Expand Down

0 comments on commit 3bc16cf

Please sign in to comment.