From: Bob Wilson Date: Mon, 30 Mar 2009 18:49:37 +0000 (+0000) Subject: Fix comment to match function name. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d83712ad678ae453f3342762c78142f851d3a2d3;p=oota-llvm.git Fix comment to match function name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68050 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMAddressingModes.h b/lib/Target/ARM/ARMAddressingModes.h index 2378485cd4a..6d9b9ee8800 100644 --- a/lib/Target/ARM/ARMAddressingModes.h +++ b/lib/Target/ARM/ARMAddressingModes.h @@ -131,7 +131,7 @@ namespace ARM_AM { 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;