[Lldb-commits] [lldb] r125796 - /lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
Johnny Chen
johnny.chen at apple.com
Thu Feb 17 15:44:53 PST 2011
Author: johnny
Date: Thu Feb 17 17:44:53 2011
New Revision: 125796
URL: http://llvm.org/viewvc/llvm-project?rev=125796&view=rev
Log:
Removed redundant entry EmulateTBB() (there's an existing one EmulateTB()) and fixed some typos
in section headings.
Modified:
lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
Modified: lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h?rev=125796&r1=125795&r2=125796&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h (original)
+++ lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h Thu Feb 17 17:44:53 2011
@@ -693,23 +693,19 @@
bool
EmulateSXTH (ARMEncoding encoding);
- // A8.6.225 TBB, TBH - Encoding T1
- bool
- EmulateTBB (ARMEncoding encoding);
-
- // A8.6.226 TEQ (immediate) - Encoding A1
+ // A8.6.227 TEQ (immediate) - Encoding A1
bool
EmulateTEQImmediate (ARMEncoding encoding);
- // A8.6.227 TEQ (register) - Encoding A1
+ // A8.6.228 TEQ (register) - Encoding A1
bool
EmulateTEQRegister (ARMEncoding encoding);
- // A8.6.229 TST (immediate) - Encoding A1
+ // A8.6.230 TST (immediate) - Encoding A1
bool
EmulateTSTImmediate (ARMEncoding encoding);
- // A8.6.230 TST (register) - Encoding T1, A1
+ // A8.6.231 TST (register) - Encoding T1, A1
bool
EmulateTSTRegister (ARMEncoding encoding);
More information about the lldb-commits
mailing list