diff options
Diffstat (limited to 'src/wasm/wasm-binary.cpp')
-rw-r--r-- | src/wasm/wasm-binary.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp index efbd82e8b..2df7f2e26 100644 --- a/src/wasm/wasm-binary.cpp +++ b/src/wasm/wasm-binary.cpp @@ -14,10 +14,11 @@ * limitations under the License. */ -#include "wasm-binary.h" - #include <fstream> + #include "support/bits.h" +#include "wasm-binary.h" +#include "ast/branch-utils.h" namespace wasm { @@ -544,7 +545,7 @@ void WasmBinaryWriter::recurse(Expression*& curr) { } static bool brokenTo(Block* block) { - return block->name.is() && BreakSeeker::has(block, block->name); + return block->name.is() && BranchUtils::BranchSeeker::has(block, block->name); } void WasmBinaryWriter::visitBlock(Block *curr) { |