Skip to content

Commit

Permalink
Fix aot crt test
Browse files Browse the repository at this point in the history
  • Loading branch information
electriclilies committed Nov 9, 2021
1 parent 4896a56 commit fddc231
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/relay/backend/aot_executor_codegen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -403,19 +403,15 @@ class AOTExecutorCodegen : public MixedModeVisitor {
CallLoweredProps call_lowered_props;
if (const auto* gvn = call_node->op.as<GlobalVarNode>()) { // Lowered extern function
ICHECK(!(call_node->attrs.defined())) << "Extern functions should have null attributes.";

for (const auto& arg : call_node->args) {
VisitExpr(arg);
}
call_lowered_props =
CallLoweredProps{std::move(GetRef<GlobalVar>(gvn)), std::move(call_node->args), {}};
call_lowered_props = CallLoweredProps{GetRef<GlobalVar>(gvn), call_node->args, {}};
} else {
ICHECK(call_node->op == CallLoweredOp()) << "Operators should be transformed away; Try "
"applying the fuse_ops transformation to the "
"expression.";

CallLoweredProps call_lowered_props = GetCallLoweredProps(call_node);

call_lowered_props = GetCallLoweredProps(call_node);
for (const auto& arg : call_lowered_props.arguments) {
VisitExpr(arg);
}
Expand Down

0 comments on commit fddc231

Please sign in to comment.