File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -291,10 +291,9 @@ struct Allocator {
291
291
292
292
atomic_uint8_t destructing;
293
293
atomic_uint8_t constructed;
294
- bool print_text;
295
294
296
295
// ------------------- Initialization ------------------------
297
- explicit Allocator (LinkerInitialized) : print_text(flags()->print_text) {
296
+ explicit Allocator (LinkerInitialized) {
298
297
atomic_store_relaxed (&destructing, 0 );
299
298
atomic_store_relaxed (&constructed, 1 );
300
299
}
@@ -350,13 +349,13 @@ struct Allocator {
350
349
}
351
350
352
351
void FinishAndWrite () {
353
- if (print_text && common_flags ()->print_module_map )
352
+ if (flags ()-> print_text && common_flags ()->print_module_map )
354
353
DumpProcessMap ();
355
354
356
355
allocator.ForceLock ();
357
356
358
357
InsertLiveBlocks ();
359
- if (print_text) {
358
+ if (flags ()-> print_text ) {
360
359
if (!flags ()->print_terse )
361
360
Printf (" Recorded MIBs (incl. live on exit):\n " );
362
361
MIBMap.ForEach (PrintCallback,
You can’t perform that action at this time.
0 commit comments