[Lldb-commits] [lldb] r132484 - /lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp

Johnny Chen johnny.chen at apple.com
Thu Jun 2 14:00:34 PDT 2011


Author: johnny
Date: Thu Jun  2 16:00:34 2011
New Revision: 132484

URL: http://llvm.org/viewvc/llvm-project?rev=132484&view=rev
Log:
EmulateShiftReg() also accepts shifter type of SRType_ROR.

Modified:
    lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp

Modified: lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp?rev=132484&r1=132483&r2=132484&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp (original)
+++ lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp Thu Jun  2 16:00:34 2011
@@ -3198,7 +3198,10 @@
 bool
 EmulateInstructionARM::EmulateShiftReg (const uint32_t opcode, const ARMEncoding encoding, ARM_ShifterType shift_type)
 {
-    assert(shift_type == SRType_ASR || shift_type == SRType_LSL || shift_type == SRType_LSR);
+    assert(shift_type == SRType_ASR
+           || shift_type == SRType_LSL
+           || shift_type == SRType_LSR
+           || shift_type == SRType_ROR);
 
     bool success = false;
 





More information about the lldb-commits mailing list