Remove the Stop Hooks / End Stop Hooks lines before/after running

the stop-hooks.  I've been living on lldb with some stop-hooks
defined for the past week and the five extra lines of output on
every stop is really detracting from the usefulness of this feature.

llvm-svn: 140358
This commit is contained in:
Jason Molenda
2011-09-23 00:42:55 +00:00
parent 7f85299c1b
commit 879cf77d12

View File

@@ -1651,7 +1651,6 @@ Target::RunStopHooks ()
{
if (!hooks_ran)
{
result.AppendMessage("\n** Stop Hooks **");
hooks_ran = true;
}
if (print_hook_header && !any_thread_matched)
@@ -1686,9 +1685,7 @@ Target::RunStopHooks ()
}
}
}
if (hooks_ran)
result.AppendMessage ("\n** End Stop Hooks **\n");
result.GetImmediateOutputStream()->Flush();
result.GetImmediateErrorStream()->Flush();
}