summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/passes/Print.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp
index ef78bf582..41e800352 100644
--- a/src/passes/Print.cpp
+++ b/src/passes/Print.cpp
@@ -2351,6 +2351,9 @@ struct PrintSExpression : public UnifiedExpressionVisitor<PrintSExpression> {
//
// Emit a block with drops of the children.
o << "(block";
+ if (!minify) {
+ o << " ;; (replaces something unreachable we can't emit)";
+ }
incIndent();
for (auto* child : ChildIterator(curr)) {
Drop drop;