diff options
Diffstat (limited to 'src')
-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 7ceb4393a..87e30c882 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -2846,7 +2846,7 @@ void PrintSExpression::visitImportedFunction(Function* curr) { lastPrintedLocation = {0, 0, 0}; o << '('; emitImportHeader(curr); - handleSignature(curr->getSig(), curr->name); + handleSignature(curr->type, curr->name); o << ')'; o << maybeNewLine; } |