summaryrefslogtreecommitdiff
path: root/src/passes/Print.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r--src/passes/Print.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp
index 31a6ccaae..b4b4ef70f 100644
--- a/src/passes/Print.cpp
+++ b/src/passes/Print.cpp
@@ -2803,12 +2803,11 @@ struct PrintSExpression : public UnifiedExpressionVisitor<PrintSExpression> {
printName(segment.name, o);
o << ' ';
}
- if (segment.isPassive) {
- printMedium(o, "passive");
- } else {
+ if (!segment.isPassive) {
visit(segment.offset);
+ o << ' ';
}
- o << " \"";
+ o << "\"";
for (size_t i = 0; i < segment.data.size(); i++) {
unsigned char c = segment.data[i];
switch (c) {