Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken committed Jun 13, 2024
1 parent a9193c4 commit 3b48004
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ir/module-utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -575,9 +575,8 @@ InsertOrderedSet<HeapType> getPublicTypeSet(Module& wasm) {
// TODO: Consider Tags as well, but they should store HeapTypes instead of
// Signatures first.
std::unordered_set<Table*> publicTables;
ModuleUtils::iterImportedTables(wasm, [&](Table* table) {
publicTables.insert(table);
});
ModuleUtils::iterImportedTables(
wasm, [&](Table* table) { publicTables.insert(table); });
ModuleUtils::iterImportedGlobals(wasm, [&](Global* global) {
if (global->type.isRef()) {
notePublic(global->type.getHeapType());
Expand Down

0 comments on commit 3b48004

Please sign in to comment.