diff options
author | Alon Zakai <azakai@google.com> | 2022-08-29 08:50:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 08:50:05 -0700 |
commit | 97fd63154cf8be9e12f1919c40eb6bc949c4c704 (patch) | |
tree | 0ab0503e6bb60aa80a3f8f04ead478bf571f172e /src/passes/Print.cpp | |
parent | 408a15ba4e76879a512ebaf80d93d44145a7a27f (diff) | |
download | binaryen-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.cpp | 2 |
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(); } } |