Skip to content

Commit

Permalink
Actually remove the old call
Browse files Browse the repository at this point in the history
  • Loading branch information
vksnk committed Jun 29, 2023
1 parent 27eb618 commit 7531293
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/XtensaOptimize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2382,15 +2382,9 @@ Stmt match_xtensa_patterns(const Stmt &stmt, const Target &target) {

s = DualQuadMulMutator().mutate(s);

{
LiftAllocations lift_stack_allocations;
s = lift_stack_allocations.mutate(s);
lift_stack_allocations.switch_to_second_pass();
s = lift_stack_allocations.mutate(s);
}

s = common_subexpression_elimination(s);
s = lift_stack_allocations(s);
s = common_subexpression_elimination(s);

return s;
}

Expand Down

0 comments on commit 7531293

Please sign in to comment.