diff --git a/gdb-port/parser.py b/gdb-port/parser.py
index 00b79cab35b462d492b886014088c360989de7f4..2d918407a4a483142ba8b832022e64a6e85f7cc3 100644
--- a/gdb-port/parser.py
+++ b/gdb-port/parser.py
@@ -302,7 +302,7 @@ class ParserStack:
 			# This assumes the value of self.arena and self.arena_int won't change while there are pending allocations, otherwise it might drop allocations belonging to the old arena
 			pop_allocs[current_event[2].address] = { self.arena_int : pop_allocs.get(self.arena_int, {}).get(current_event[2].address, 0) + current_frame_alloc }
 			parser_cache[current_event[2].address] = current_event[2]
-			current_event[2].add_mem_use(self.arena_int, current_frame_alloc)
+			#current_event[2].add_mem_use(self.arena_int, current_frame_alloc)
 			#profiler.disable() # DEBUG
 			return pop_allocs
 		#	return { current_event[2].address: current_frame_alloc }