File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -103,8 +103,7 @@ struct ReachabilityAnalyzer : public PostWalker<ReachabilityAnalyzer> {
103
103
name = module ->tables .front ()->name ;
104
104
}
105
105
106
- if (reachable.count (
107
- ModuleElement (ModuleElementKind::Table, name)) == 0 ) {
106
+ if (reachable.count (ModuleElement (ModuleElementKind::Table, name)) == 0 ) {
108
107
queue.emplace_back (ModuleElementKind::Table, name);
109
108
}
110
109
}
Original file line number Diff line number Diff line change @@ -90,8 +90,7 @@ void BinaryInstWriter::visitCallIndirect(CallIndirect* curr) {
90
90
91
91
int8_t op =
92
92
curr->isReturn ? BinaryConsts::RetCallIndirect : BinaryConsts::CallIndirect;
93
- o << op << U32LEB (parent.getTypeIndex (curr->sig ))
94
- << U32LEB (tableIdx);
93
+ o << op << U32LEB (parent.getTypeIndex (curr->sig )) << U32LEB (tableIdx);
95
94
}
96
95
97
96
void BinaryInstWriter::visitLocalGet (LocalGet* curr) {
You can’t perform that action at this time.
0 commit comments