summaryrefslogtreecommitdiff
path: root/src/passes/Print.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2022-08-29 08:50:05 -0700
committerGitHub <noreply@github.com>2022-08-29 08:50:05 -0700
commit97fd63154cf8be9e12f1919c40eb6bc949c4c704 (patch)
tree0ab0503e6bb60aa80a3f8f04ead478bf571f172e /src/passes/Print.cpp
parent408a15ba4e76879a512ebaf80d93d44145a7a27f (diff)
downloadbinaryen-97fd63154cf8be9e12f1919c40eb6bc949c4c704.tar.gz
binaryen-97fd63154cf8be9e12f1919c40eb6bc949c4c704.tar.bz2
binaryen-97fd63154cf8be9e12f1919c40eb6bc949c4c704.zip
Remvoe extra space after rec beginning (#4981)
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r--src/passes/Print.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp
index 7385c18ea..5fb17af76 100644
--- a/src/passes/Print.cpp
+++ b/src/passes/Print.cpp
@@ -3253,7 +3253,7 @@ struct PrintSExpression : public UnifiedExpressionVisitor<PrintSExpression> {
nontrivialGroup = currGroup->size() > 1;
if (nontrivialGroup) {
doIndent(o, indent);
- o << "(rec ";
+ o << "(rec";
incIndent();
}
}