diff options
author | Alon Zakai <azakai@google.com> | 2024-10-31 09:35:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 09:35:30 -0700 |
commit | 73279d36fe08e867ca3d9adb85d53b4c67dd16d6 (patch) | |
tree | f1e23ba4c10da0860accd06f32eaa073cf31882c | |
parent | 39bf87eb39543ca14198a16533f262a147816793 (diff) | |
download | binaryen-73279d36fe08e867ca3d9adb85d53b4c67dd16d6.tar.gz binaryen-73279d36fe08e867ca3d9adb85d53b4c67dd16d6.tar.bz2 binaryen-73279d36fe08e867ca3d9adb85d53b4c67dd16d6.zip |
[NFC] Fix copy-paste error in TryTable printing (#7044)
-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 106beac39..854ea0b5b 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -2818,7 +2818,7 @@ void PrintSExpression::visitTryTable(TryTable* curr) { maybePrintImplicitBlock(curr->body); decIndent(); if (full) { - o << " ;; end if"; + o << " ;; end try_table"; } controlFlowDepth--; } |