diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-07 17:42:53 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-07 17:42:53 -0800 |
commit | fad93f9d6a9589d92d01c0399901ecec9f07f662 (patch) | |
tree | 27d89bb49c2da8462f4f83388ef29a22bf143dd1 /src | |
parent | c69ce72e2f1c256b99e2f5e293936825c6a6621c (diff) | |
download | binaryen-fad93f9d6a9589d92d01c0399901ecec9f07f662.tar.gz binaryen-fad93f9d6a9589d92d01c0399901ecec9f07f662.tar.bz2 binaryen-fad93f9d6a9589d92d01c0399901ecec9f07f662.zip |
remove old comment
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm2asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm2asm.h b/src/wasm2asm.h index 97fd2d84a..17e76e1c7 100644 --- a/src/wasm2asm.h +++ b/src/wasm2asm.h @@ -522,7 +522,7 @@ Ref Wasm2AsmBuilder::processFunctionBody(Expression* curr, IString result) { Ref ret = visit(curr, result); // if it's not already a statement, then it's an expression, and we need to assign it // (if it is a statement, it already assigns to the result var) - if (!isStatement(curr) && result != NO_RESULT) { // XXX also not EXPRESSION_RESULT? + if (!isStatement(curr) && result != NO_RESULT) { ret = ValueBuilder::makeStatement(ValueBuilder::makeAssign(ValueBuilder::makeName(result), ret)); } return ret; |