diff options
| author | Jason Molenda <jmolenda@apple.com> | 2015-09-04 03:40:29 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2015-09-04 03:40:29 +0000 |
| commit | 125adcf0aa6da618ef9eccb417441199b6f734d3 (patch) | |
| tree | 49bab6b1ad82aa398f912e21277d78c2469fd54b /lldb/source/Commands/CommandObjectDisassemble.cpp | |
| parent | 332eeca1e4cff2de00a57892ad2d0134e7600f46 (diff) | |
| download | bcm5719-llvm-125adcf0aa6da618ef9eccb417441199b6f734d3.tar.gz bcm5719-llvm-125adcf0aa6da618ef9eccb417441199b6f734d3.zip | |
Change the (internal to this file only) enum names from gcc_ to
ehframe_ & from gdb_ to stabs_ for clarity.
Also document the fact that i386 eh_frame on Darwin has the register
numbers swapped for ebp/esp from the DWARF register numbers so no one
copies these defines for other i386 ABI plugins. This bug only ever
existed on Darwin.
No code changes, just renaming variables.
llvm-svn: 246834
Diffstat (limited to 'lldb/source/Commands/CommandObjectDisassemble.cpp')
| -rw-r--r-- | lldb/source/Commands/CommandObjectDisassemble.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectDisassemble.cpp b/lldb/source/Commands/CommandObjectDisassemble.cpp index 1e575fe963f..100d8692039 100644 --- a/lldb/source/Commands/CommandObjectDisassemble.cpp +++ b/lldb/source/Commands/CommandObjectDisassemble.cpp @@ -289,7 +289,7 @@ CommandObjectDisassemble::DoExecute (Args& command, CommandReturnObject &result) if (!m_options.arch.IsValid()) { - result.AppendError ("use the --arch option or set the target architecure to disassemble"); + result.AppendError ("use the --arch option or set the target architecture to disassemble"); result.SetStatus (eReturnStatusFailed); return false; } |

