diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 99c86cec4..02eaea21c 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -3088,6 +3088,9 @@ void PrintSExpression::printTableHeader(Table* curr) { o << '('; printMedium(o, "table") << ' '; curr->name.print(o) << ' '; + if (curr->is64()) { + o << "i64 "; + } o << curr->initial; if (curr->hasMax()) { o << ' ' << curr->max; |