Binary transform for br and br_if.

This commit is contained in:
chriseth
2020-05-14 11:30:19 +02:00
parent 504b8d29c9
commit 6308ca4a22
10 changed files with 631 additions and 15 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ string TextTransform::operator()(wasm::Loop const& _loop)
string TextTransform::operator()(wasm::Break const& _break)
{
return "(break $" + _break.label.name + ")\n";
return "(br $" + _break.label.name + ")\n";
}
string TextTransform::operator()(wasm::BreakIf const& _break)