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 6dbd54e73..d4b86f93d 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -3370,7 +3370,7 @@ struct PrintSExpression : public UnifiedExpressionVisitor<PrintSExpression> { if (curr->dylinkSection) { printDylinkSection(curr->dylinkSection); } - for (auto& section : curr->userSections) { + for (auto& section : curr->customSections) { doIndent(o, indent); o << ";; custom section \"" << section.name << "\", size " << section.data.size(); |