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 {
291291
292292 atomic_uint8_t destructing;
293293 atomic_uint8_t constructed;
294- bool print_text;
295294
296295 // ------------------- Initialization ------------------------
297- explicit Allocator (LinkerInitialized) : print_text(flags()->print_text) {
296+ explicit Allocator (LinkerInitialized) {
298297 atomic_store_relaxed (&destructing, 0 );
299298 atomic_store_relaxed (&constructed, 1 );
300299 }
@@ -350,13 +349,13 @@ struct Allocator {
350349 }
351350
352351 void FinishAndWrite () {
353- if (print_text && common_flags ()->print_module_map )
352+ if (flags ()-> print_text && common_flags ()->print_module_map )
354353 DumpProcessMap ();
355354
356355 allocator.ForceLock ();
357356
358357 InsertLiveBlocks ();
359- if (print_text) {
358+ if (flags ()-> print_text ) {
360359 if (!flags ()->print_terse )
361360 Printf (" Recorded MIBs (incl. live on exit):\n " );
362361 MIBMap.ForEach (PrintCallback,
You can’t perform that action at this time.
0 commit comments