diff options
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 4f2c17d40..e5487d58e 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -726,7 +726,7 @@ struct PrintSExpression : public Visitor<PrintSExpression> { visitGlobal(child.get()); o << maybeNewLine; } - if (curr->table.segments.size() > 0 || curr->table.initial > 0 || curr->table.max != Table::kMaxSize) { + if (curr->table.exists) { visitTable(&curr->table); o << maybeNewLine; } |