Removed printf statements in code.

llvm-svn: 123455
This commit is contained in:
Greg Clayton
2011-01-14 19:21:25 +00:00
parent 15a42aefa4
commit 1629c43dd3

View File

@@ -788,12 +788,12 @@ AppleObjCTrampolineHandler::GetStepThroughDispatchPlan (Thread &thread, bool sto
if (sc.symbol != NULL)
impl_code_address = sc.symbol->GetValue();
lldb::addr_t addr = impl_code_address.GetLoadAddress (exe_ctx.target);
printf ("Getting address for our_utility_function: 0x%llx.\n", addr);
//lldb::addr_t addr = impl_code_address.GetLoadAddress (exe_ctx.target);
//printf ("Getting address for our_utility_function: 0x%llx.\n", addr);
}
else
{
printf ("Could not find implementation function address.\n");
//printf ("Could not find implementation function address.\n");
return ret_plan_sp;
}
}