diff options
author | Caroline Tice <ctice@apple.com> | 2011-02-04 22:59:41 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2011-02-04 22:59:41 +0000 |
commit | 79042b3e93c5eabbaccfec4af3c3bbbe3667ea1e (patch) | |
tree | 39fbdb66e6dcbbfbcc6d461f90cb6479cb4afbab /lldb/source/Commands/CommandObjectBreakpoint.cpp | |
parent | 116a9d7c38b0a9c488a2ff85dacacb962a72b713 (diff) | |
download | bcm5719-llvm-79042b3e93c5eabbaccfec4af3c3bbbe3667ea1e.tar.gz bcm5719-llvm-79042b3e93c5eabbaccfec4af3c3bbbe3667ea1e.zip |
Change "breakpoint list" command to default to brief output rather than full output.
Modify test cases in test suite to either expect brief output or to pass -f for full
output as appropriate.
llvm-svn: 124905
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.cpp b/lldb/source/Commands/CommandObjectBreakpoint.cpp index 35d8cfd14f9..4dff1420c4e 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.cpp +++ b/lldb/source/Commands/CommandObjectBreakpoint.cpp @@ -641,7 +641,7 @@ CommandObjectMultiwordBreakpoint::VerifyBreakpointIDs (Args &args, Target *targe CommandObjectBreakpointList::CommandOptions::CommandOptions() : Options (), - m_level (lldb::eDescriptionLevelFull) // Breakpoint List defaults to brief descriptions + m_level (lldb::eDescriptionLevelBrief) // Breakpoint List defaults to brief descriptions { } @@ -708,7 +708,7 @@ CommandObjectBreakpointList::CommandOptions::ResetOptionValues () { Options::ResetOptionValues(); - m_level = lldb::eDescriptionLevelFull; + m_level = lldb::eDescriptionLevelBrief; m_internal = false; } |