Skip to content

Commit ef50399

Browse files
More fixes
1 parent 7637c24 commit ef50399

File tree

2 files changed

+191
-125
lines changed

2 files changed

+191
-125
lines changed

src/passes/DeadStoreElimination.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ struct GCLogic : public ComparingLogic {
653653
// TODO: the optimizations can perhaps share more things between them
654654
struct LocalDeadStoreElimination
655655
: public WalkerPass<PostWalker<LocalDeadStoreElimination>> {
656-
bool isFunctionParallel() { return true; }
656+
bool isFunctionParallel() override { return true; }
657657

658658
std::unique_ptr<Pass> create() override {
659659
return std::make_unique<LocalDeadStoreElimination>();

0 commit comments

Comments
 (0)