diff --git a/gdb-port/top-level-parse.py b/gdb-port/top-level-parse.py index fede6ce6d98a5fbf01a6275a6e2e76a918a1a40a..123156cdcc757303772b2bbacfd8ccfe1a6e997d 100644 --- a/gdb-port/top-level-parse.py +++ b/gdb-port/top-level-parse.py @@ -142,8 +142,8 @@ class TopLevelParse: # This is probably the slowest part of the code, or maybe the overhead adds up over many calls to h_arena_malloc_raw() if parser_obj is not None: # Caveat: parser_stack is assumed not to be None if we could get a parser_obj - if parser_obj.name == "ws": - print("breakpoint is adding", alloc_size, "bytes to ws") # DEBUG + #if parser_obj.name == "ws": + # print("breakpoint is adding", alloc_size, "bytes to ws") # DEBUG parser_obj.add_mem_use(int(parser_stack.arena), alloc_size) elif parser_stack is not None: #print("Allocation of " + str(alloc_size) + " bytes without a parser on the stack. (Happens before first call perform_lowlevel_parse to or after return from that call)")