diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 3b072a469..4fa38442c 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -2891,6 +2891,10 @@ struct PrintSExpression : public UnifiedExpressionVisitor<PrintSExpression> { for (auto& neededDynlib : dylinkSection->neededDynlibs) { doIndent(o, indent) << ";; needed dynlib: " << neededDynlib << '\n'; } + if (dylinkSection->tail.size()) { + doIndent(o, indent) << ";; extra dylink data, size " + << dylinkSection->tail.size() << "\n"; + } } void visitModule(Module* curr) { currModule = curr; |