@@ -34,8 +34,8 @@ class DeallocPackCleanup : public Cleanup {
34
34
void dump (SILGenFunction &) const override {
35
35
#ifndef NDEBUG
36
36
llvm::errs () << " DeallocPackCleanup\n "
37
- << " State:" << getState () << " \n "
38
- << " Addr:" << Addr << " \n " ;
37
+ << " State: " << getState () << " \n "
38
+ << " Addr: " << Addr << " \n " ;
39
39
#endif
40
40
}
41
41
};
@@ -59,9 +59,8 @@ class DestroyPackCleanup : public Cleanup {
59
59
void dump (SILGenFunction &) const override {
60
60
#ifndef NDEBUG
61
61
llvm::errs () << " DestroyPackCleanup\n "
62
- << " State:" << getState () << " \n "
63
- << " Addr:" << Addr << " \n "
64
- << " FormalPackType:" << FormalPackType
62
+ << " State: " << getState () << " \n "
63
+ << " Addr: " << Addr << " FormalPackType: " << FormalPackType
65
64
<< " FirstComponentIndex:" << FirstComponentIndex << " \n " ;
66
65
#endif
67
66
}
@@ -93,10 +92,10 @@ class PartialDestroyPackCleanup : public Cleanup {
93
92
void dump (SILGenFunction &) const override {
94
93
#ifndef NDEBUG
95
94
llvm::errs () << " PartialDestroyPackCleanup\n "
96
- << " State:" << getState () << " \n "
97
- << " Addr:" << Addr << " FormalPackType:" << FormalPackType
95
+ << " State: " << getState () << " \n "
96
+ << " Addr: " << Addr << " FormalPackType: " << FormalPackType
98
97
<< " \n "
99
- << " ComponentIndex:" << PackComponentIndex << " \n "
98
+ << " ComponentIndex: " << PackComponentIndex << " \n "
100
99
<< " LimitWithinComponent: " ;
101
100
if (LimitWithinComponent)
102
101
llvm::errs () << LimitWithinComponent;
@@ -132,11 +131,11 @@ class PartialDestroyRemainingPackCleanup : public Cleanup {
132
131
void dump (SILGenFunction &) const override {
133
132
#ifndef NDEBUG
134
133
llvm::errs () << " PartialDestroyRemainingPackCleanup\n "
135
- << " State:" << getState () << " \n "
136
- << " Addr:" << Addr << " \n "
137
- << " FormalPackType: " << FormalPackType << " \n "
138
- << " ComponentIndex:" << ComponentIndex << " \n "
139
- << " CurrentIndexWithinComponent:"
134
+ << " State: " << getState () << " \n "
135
+ << " Addr: " << Addr << " FormalPackType: " << FormalPackType
136
+ << " \n "
137
+ << " ComponentIndex: " << ComponentIndex << " \n "
138
+ << " CurrentIndexWithinComponent: "
140
139
<< CurrentIndexWithinComponent << " \n " ;
141
140
#endif
142
141
}
@@ -167,11 +166,11 @@ class PartialDestroyTupleCleanup : public Cleanup {
167
166
void dump (SILGenFunction &) const override {
168
167
#ifndef NDEBUG
169
168
llvm::errs () << " PartialDestroyTupleCleanup\n "
170
- << " State:" << getState () << " \n "
171
- << " Addr:" << Addr << " \n "
172
- << " InducedPackType: " << InducedPackType << " \n "
173
- << " ComponentIndex:" << ComponentIndex << " \n "
174
- << " LimitWithinComponent:" << LimitWithinComponent << " \n " ;
169
+ << " State: " << getState () << " \n "
170
+ << " Addr: " << Addr << " InducedPackType: " << InducedPackType
171
+ << " \n "
172
+ << " ComponentIndex: " << ComponentIndex << ' \n '
173
+ << " LimitWithinComponent: " << LimitWithinComponent << ' \n ' ;
175
174
#endif
176
175
}
177
176
};
@@ -202,12 +201,12 @@ class PartialDestroyRemainingTupleCleanup : public Cleanup {
202
201
void dump (SILGenFunction &) const override {
203
202
#ifndef NDEBUG
204
203
llvm::errs () << " PartialDestroyRemainingTupleCleanup\n "
205
- << " State:" << getState () << " \n "
206
- << " Addr:" << Addr << " \n "
207
- << " InducedPackType: " << InducedPackType << " \n "
208
- << " ComponentIndex:" << ComponentIndex << " \n "
209
- << " CurrentIndexWithinComponent:"
210
- << CurrentIndexWithinComponent << " \n " ;
204
+ << " State: " << getState () << " \n "
205
+ << " Addr: " << Addr << " InducedPackType: " << InducedPackType
206
+ << " \n "
207
+ << " ComponentIndex: " << ComponentIndex << " \n "
208
+ << " CurrentIndexWithinComponent: "
209
+ << CurrentIndexWithinComponent;
211
210
#endif
212
211
}
213
212
};
@@ -234,10 +233,10 @@ class DestroyRemainingTupleElementsCleanup : public Cleanup {
234
233
void dump (SILGenFunction &) const override {
235
234
#ifndef NDEBUG
236
235
llvm::errs () << " DestroyRemainingTupleElementsCleanup\n "
237
- << " State:" << getState () << " \n "
238
- << " Addr:" << Addr << " \n "
239
- << " InducedPackType: " << InducedPackType << " \n "
240
- << " ComponentIndex:" << ComponentIndex << " \n " ;
236
+ << " State: " << getState () << " \n "
237
+ << " Addr: " << Addr << " InducedPackType: " << InducedPackType
238
+ << " \n "
239
+ << " ComponentIndex: " << ComponentIndex << " \n " ;
241
240
#endif
242
241
}
243
242
};
0 commit comments