[Lldb-commits] [lldb] r124143 - /lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp

Johnny Chen johnny.chen at apple.com
Mon Jan 24 12:21:01 PST 2011


Author: johnny
Date: Mon Jan 24 14:21:01 2011
New Revision: 124143

URL: http://llvm.org/viewvc/llvm-project?rev=124143&view=rev
Log:
Fix typo in the instruction descriptions for Encoding T2 and T3 of PUSH.

Modified:
    lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp

Modified: lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp?rev=124143&r1=124142&r2=124143&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/EmulateInstructionARM.cpp Mon Jan 24 14:21:01 2011
@@ -180,9 +180,9 @@
 static ARMOpcode g_arm_opcodes[] =
 {
     { 0xffff0000, 0xe8ad0000, ARMv6T2|ARMv7, eEncodingT2, eSize32, EmulateARMPushEncoding,
-      "PUSH<c> <registers> ; <registers> contains more than one register" },
+      "PUSH<c>.W <registers> ; <registers> contains more than one register" },
     { 0xffff0fff, 0xf84d0d04, ARMv6T2|ARMv7, eEncodingT3, eSize32, EmulateARMPushEncoding,
-      "PUSH<c> <registers> ; <registers> contains one register, <Rt>" },
+      "PUSH<c>.W <registers> ; <registers> contains one register, <Rt>" },
     { 0x0fff0000, 0x092d0000, ARMvAll,       eEncodingA1, eSize32, EmulateARMPushEncoding,
       "PUSH<c> <registers> ; <registers> contains more than one register" },
     { 0x0fff0fff, 0x052d0004, ARMvAll,       eEncodingA2, eSize32, EmulateARMPushEncoding,





More information about the lldb-commits mailing list