Skip to content

Commit d1b7597

Browse files
authored
Fix racing merge breakage (#5472)
1 parent 7ce4b09 commit d1b7597

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/passes/RemoveUnusedModuleElements.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,6 @@ struct Analyzer {
285285
}
286286
}
287287

288-
// We'll compute SubTypes if we need them.
289-
std::optional<SubTypes> subTypes;
290-
291288
// Process expressions in the expression queue while we have any, visiting
292289
// them (using their contents) and adding children. Returns whether we did any
293290
// work.
@@ -326,6 +323,7 @@ struct Analyzer {
326323
return worked;
327324
}
328325

326+
// We'll compute SubTypes if we need them.
329327
std::optional<SubTypes> subTypes;
330328

331329
void useCallRefType(HeapType type) {

0 commit comments

Comments
 (0)