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 792d35457..23d03ec40 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -209,7 +209,7 @@ struct PrintSExpression : public Visitor<PrintSExpression> { printCallBody(curr); } void visitCallIndirect(CallIndirect *curr) { - printOpening(o, "call_indirect ") << curr->fullType->name; + printOpening(o, "call_indirect ") << curr->fullType; incIndent(); printFullLine(curr->target); for (auto operand : curr->operands) { |