diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-03-30 18:49:37 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-03-30 18:49:37 +0000 |
commit | 57178e8822766d04a47eccf6cbe582e9ea2d3fbc (patch) | |
tree | ec48f58314447271f20c9236bf008c6f54fb5d1c /llvm/lib/Target/ARM/ARMAddressingModes.h | |
parent | 248fd2bc2443196dfab07f032ccbe1e43eaffe2e (diff) | |
download | bcm5719-llvm-57178e8822766d04a47eccf6cbe582e9ea2d3fbc.tar.gz bcm5719-llvm-57178e8822766d04a47eccf6cbe582e9ea2d3fbc.zip |
Fix comment to match function name.
llvm-svn: 68050
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAddressingModes.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAddressingModes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMAddressingModes.h b/llvm/lib/Target/ARM/ARMAddressingModes.h index 2378485cd4a..6d9b9ee8800 100644 --- a/llvm/lib/Target/ARM/ARMAddressingModes.h +++ b/llvm/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; |