[llvm-commits] [llvm] r68050 - /llvm/trunk/lib/Target/ARM/ARMAddressingModes.h

Bob Wilson bob.wilson at apple.com
Mon Mar 30 11:49:37 PDT 2009


Author: bwilson
Date: Mon Mar 30 13:49:37 2009
New Revision: 68050

URL: http://llvm.org/viewvc/llvm-project?rev=68050&view=rev
Log:
Fix comment to match function name.

Modified:
    llvm/trunk/lib/Target/ARM/ARMAddressingModes.h

Modified: llvm/trunk/lib/Target/ARM/ARMAddressingModes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMAddressingModes.h?rev=68050&r1=68049&r2=68050&view=diff

==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMAddressingModes.h (original)
+++ llvm/trunk/lib/Target/ARM/ARMAddressingModes.h Mon Mar 30 13:49:37 2009
@@ -131,7 +131,7 @@
   static inline unsigned getSOImmValImm(unsigned Imm) {
     return Imm & 0xFF;
   }
-  /// getSOImmValRotate - Given an encoded imm field for the reg/imm form, return
+  /// getSOImmValRot - Given an encoded imm field for the reg/imm form, return
   /// the rotate amount.
   static inline unsigned getSOImmValRot(unsigned Imm) {
     return (Imm >> 8) * 2;





More information about the llvm-commits mailing list