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 d03201f1a..f35f0d626 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -66,7 +66,7 @@ struct SExprType { static std::ostream& operator<<(std::ostream& o, const SExprType& localType) { Type type = localType.type; - if (type.isMulti()) { + if (type.isTuple()) { o << '('; auto sep = ""; for (const auto& t : type) { |