Skip to content

Commit

Permalink
rm unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
rootjalex committed Aug 4, 2022
1 parent 880ad1d commit 898438f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IRMatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ class WithLanes : public IRMutator {

Expr visit(const Call *op) override {
if (op->is_intrinsic() && (op->type.lanes() != lanes)) {
auto [new_args, changed] = mutate_with_changes(op->args);
auto new_args = mutate_with_changes(op->args).first;
return Call::make(with_lanes(op->type), op->name, new_args, op->call_type,
op->func, op->value_index, op->image, op->param);
} else {
Expand Down

0 comments on commit 898438f

Please sign in to comment.