aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-03-30 18:49:37 +0000
committerBob Wilson <bob.wilson@apple.com>2009-03-30 18:49:37 +0000
commitd83712ad678ae453f3342762c78142f851d3a2d3 (patch)
tree822ea40c1956f3b9441759fd1405dd9c3c546fac
parent6d9a2df4ecd7977588ac5e5ad080e22cce2f1c23 (diff)
downloadexternal_llvm-d83712ad678ae453f3342762c78142f851d3a2d3.zip
external_llvm-d83712ad678ae453f3342762c78142f851d3a2d3.tar.gz
external_llvm-d83712ad678ae453f3342762c78142f851d3a2d3.tar.bz2
Fix comment to match function name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68050 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMAddressingModes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMAddressingModes.h b/lib/Target/ARM/ARMAddressingModes.h
index 2378485..6d9b9ee 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;