diff options
author | Jason Molenda <jmolenda@apple.com> | 2015-09-01 05:17:01 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2015-09-01 05:17:01 +0000 |
commit | bf67a30bddf40aca95bc0bd2e72f550ba659efb1 (patch) | |
tree | 61449498e5389957fbc3f90c7d07d7e49f2bf598 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | ee188ba20e3ff8eac8df9217ceb7aa93a51858b0 (diff) | |
download | bcm5719-llvm-bf67a30bddf40aca95bc0bd2e72f550ba659efb1.tar.gz bcm5719-llvm-bf67a30bddf40aca95bc0bd2e72f550ba659efb1.zip |
A few small comment fixups with terminology "gcc" -> "eh_frame", "gdb" -> "stabs".
Just noticed these while reading through some code.
llvm-svn: 246530
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index dbbdd2b7b1c..2cca86926d4 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -585,12 +585,12 @@ ProcessGDBRemote::BuildDynamicRegisterInfo (bool force) 0, // byte size reg_offset, // offset eEncodingUint, // encoding - eFormatHex, // formate + eFormatHex, // format { - LLDB_INVALID_REGNUM, // GCC reg num + LLDB_INVALID_REGNUM, // eh_frame reg num LLDB_INVALID_REGNUM, // DWARF reg num LLDB_INVALID_REGNUM, // generic reg num - reg_num, // GDB reg num + reg_num, // stabs reg num reg_num // native register number }, NULL, @@ -4279,12 +4279,12 @@ ParseRegisters (XMLNode feature_node, GdbServerTargetInfo &target_info, GDBRemot 0, // byte size reg_offset, // offset eEncodingUint, // encoding - eFormatHex, // formate + eFormatHex, // format { - LLDB_INVALID_REGNUM, // GCC reg num + LLDB_INVALID_REGNUM, // eh_frame reg num LLDB_INVALID_REGNUM, // DWARF reg num LLDB_INVALID_REGNUM, // generic reg num - prev_reg_num, // GDB reg num + prev_reg_num, // stabs reg num prev_reg_num // native register number }, NULL, |