We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a0918f commit 6dc77b9Copy full SHA for 6dc77b9
src/libasr/codegen/wasm_to_x64.cpp
@@ -173,8 +173,8 @@ class X64Visitor : public WASMDecoder<X64Visitor>,
173
/*
174
From WebAssembly Docs:
175
The exact effect of branch depends on that control construct.
176
- In case of block or if it is a forward jump, resuming execution after the matching end.
177
- In case of loop it is a backward jump to the beginning of the loop.
+ In case of block or if, it is a forward jump, resuming execution after the matching end.
+ In case of loop, it is a backward jump to the beginning of the loop.
178
*/
179
case Block::LOOP: m_a.asm_jmp_label(".loop.head_" + label); break;
180
case Block::IF: m_a.asm_jmp_label(".else_" + label); break;
0 commit comments