diff options
author | Sean Callanan <scallanan@apple.com> | 2011-03-10 23:35:12 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-03-10 23:35:12 +0000 |
commit | b3396b226e8e61b325257e987531fc158d78ccc0 (patch) | |
tree | 346eb534f67282f501dfc39da87d1607094ad0f2 /lldb/source/Commands/CommandObjectDisassemble.cpp | |
parent | f93286f20c796d72e74e71d3baf2291412d3d4d7 (diff) | |
download | bcm5719-llvm-b3396b226e8e61b325257e987531fc158d78ccc0.tar.gz bcm5719-llvm-b3396b226e8e61b325257e987531fc158d78ccc0.zip |
Fixed the -r parameter to the disassemble command
so that it actually triggers raw output.
llvm-svn: 127433
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectDisassemble.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp index f949030479b..a4dd5ac3805 100644 --- a/lldb/source/Commands/CommandObjectDisassemble.cpp +++ b/lldb/source/Commands/CommandObjectDisassemble.cpp @@ -218,6 +218,7 @@ CommandObjectDisassemble::Execute NULL, // Module * m_options.show_mixed ? m_options.num_lines_context : 0, m_options.show_bytes, + m_options.raw, result.GetOutputStream())) { result.SetStatus (eReturnStatusSuccessFinishResult); @@ -276,6 +277,7 @@ CommandObjectDisassemble::Execute range, m_options.show_mixed ? m_options.num_lines_context : 0, m_options.show_bytes, + m_options.raw, result.GetOutputStream())) { result.SetStatus (eReturnStatusSuccessFinishResult); |