Skip to content

Commit 6dc77b9

Browse files
committed
Refactor: WASM_X64: Minor comment improvement
1 parent 9a0918f commit 6dc77b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libasr/codegen/wasm_to_x64.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ class X64Visitor : public WASMDecoder<X64Visitor>,
173173
/*
174174
From WebAssembly Docs:
175175
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.
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.
178178
*/
179179
case Block::LOOP: m_a.asm_jmp_label(".loop.head_" + label); break;
180180
case Block::IF: m_a.asm_jmp_label(".else_" + label); break;

0 commit comments

Comments
 (0)