This commit is contained in:
MrLetsplay 2024-03-21 13:27:58 +01:00
parent e4c158875e
commit 47b3c3b2c0
Signed by: mr
SSH Key Fingerprint: SHA256:0zWNiRisbQ4dq/CCQAaMLoF3UfkF5wKPXO7DcjfFBEU

View File

@ -356,7 +356,7 @@ func compileFunctionWAT(function ParsedFunction) (string, error) {
funcWAT += wat
return funcWAT + ") (export \"" + function.Name + "\" (func $" + function.Name + "))", nil
return funcWAT + ") (export \"" + function.Name + "\" (func $" + function.Name + "))\n", nil
}
func backendWAT(file ParsedFile) (string, error) {