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 84580c3 commit 5ae7da6Copy full SHA for 5ae7da6
src/relax/transform/expand_tuple_arguments.cc
@@ -79,12 +79,11 @@ Optional<Function> ExpandParams(Function func) {
79
80
class TupleExpander : public ExprMutator {
81
public:
82
- TupleExpander(PMap<GlobalVar, GlobalVar> callees) : replacements_(callees) {}
+ explicit TupleExpander(PMap<GlobalVar, GlobalVar> callees) : replacements_(callees) {}
83
84
using ExprMutator::VisitExpr_;
85
86
Expr VisitExpr_(const CallNode* op) override {
87
- // TODO: Recursive expansion
88
auto node = Downcast<Call>(ExprMutator::VisitExpr_(op));
89
90
if (auto gvar = node->op.as<GlobalVar>()) {
0 commit comments