From 0021bd2fe31cb93e3c4f1468eb5bbbbaa39a32e0 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Fri, 11 May 2012 21:57:50 +0000 Subject: [PATCH] Remove comments and an extra print statement. llvm-svn: 156651 --- lldb/examples/darwin/heap_find/heap.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lldb/examples/darwin/heap_find/heap.py b/lldb/examples/darwin/heap_find/heap.py index e6d2b1f073b0..85ad63d2e7bd 100644 --- a/lldb/examples/darwin/heap_find/heap.py +++ b/lldb/examples/darwin/heap_find/heap.py @@ -126,12 +126,10 @@ def dump_stack_history_entry(stack_history_entry, idx): def dump_stack_history_entries(addr, history): # malloc_stack_entry *get_stack_history_for_address (const void * addr) expr = 'get_stack_history_for_address((void *)0x%x, %u)' % (addr, history) - print 'expr = "%s"' % (expr) expr_sbvalue = lldb.frame.EvaluateExpression (expr) if expr_sbvalue.error.Success(): if expr_sbvalue.unsigned: expr_value = lldb.value(expr_sbvalue) - #print 'expr_value = ', expr_value idx = 0; stack_history_entry = expr_value[idx] while int(stack_history_entry.address) != 0: