Skip to content

Commit

Permalink
Make visible template<> void ExprNode<Mod>::accept(IRVisitor *v, cons…
Browse files Browse the repository at this point in the history
…t Expr &e)

This change is needed because of a unit test needs it:
http://ci.tvm.ai:8080/blue/organizations/jenkins/tvm/detail/PR-2445/33/pipeline
  • Loading branch information
Anthony-Mai committed Jan 25, 2019
1 parent a5c28ec commit bec3aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ir/IR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ template<> void ExprNode<Add>::accept(IRVisitor *v, const Expr &e) const { v->vi
template<> void ExprNode<Sub>::accept(IRVisitor *v, const Expr &e) const { v->visit((const Sub *)this, e); }
template<> void ExprNode<Mul>::accept(IRVisitor *v, const Expr &e) const { v->visit((const Mul *)this, e); }
template<> void ExprNode<Div>::accept(IRVisitor *v, const Expr &e) const { v->visit((const Div *)this, e); }
template<> void ExprNode<Mod>::accept(IRVisitor *v, const Expr &e) const { v->visit((const Mod *)this, e); }
template<> EXPORT void ExprNode<Mod>::accept(IRVisitor *v, const Expr &e) const { v->visit((const Mod *)this, e); }
template<> EXPORT void ExprNode<Min>::accept(IRVisitor *v, const Expr &e) const { v->visit((const Min *)this, e); }
template<> EXPORT void ExprNode<Max>::accept(IRVisitor *v, const Expr &e) const { v->visit((const Max *)this, e); }
template<> void ExprNode<EQ>::accept(IRVisitor *v, const Expr &e) const { v->visit((const EQ *)this, e); }
Expand Down

0 comments on commit bec3aff

Please sign in to comment.