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

Johnny Chen johnny.chen at apple.com
Thu Feb 10 11:40:42 PST 2011


Author: johnny
Date: Thu Feb 10 13:40:42 2011
New Revision: 125302

URL: http://llvm.org/viewvc/llvm-project?rev=125302&view=rev
Log:
Add some comment markers.

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=125302&r1=125301&r2=125302&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp (original)
+++ lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp Thu Feb 10 13:40:42 2011
@@ -25,6 +25,12 @@
     return alignment * (val / alignment);
 }
 
+//----------------------------------------------------------------------
+//
+// ITSession implementation
+//
+//----------------------------------------------------------------------
+
 // A8.6.50
 // Valid return values are {1, 2, 3, 4}, with 0 signifying an error condition.
 static unsigned short CountITSize(unsigned ITMask) {
@@ -119,6 +125,12 @@
 #define ARMV5_ABOVE   (ARMv5T|ARMv5TE|ARMv5TEJ|ARMv6|ARMv6K|ARMv6T2|ARMv7|ARMv8)
 #define ARMV6T2_ABOVE (ARMv6T2|ARMv7|ARMv8)
 
+//----------------------------------------------------------------------
+//
+// EmulateInstructionARM implementation
+//
+//----------------------------------------------------------------------
+
 void
 EmulateInstructionARM::Initialize ()
 {





More information about the lldb-commits mailing list