[llvm] r222988 - Fix capitalization. NFC.

Akira Hatanaka ahatanaka at apple.com
Sun Nov 30 22:14:52 PST 2014


Author: ahatanak
Date: Mon Dec  1 00:14:52 2014
New Revision: 222988

URL: http://llvm.org/viewvc/llvm-project?rev=222988&view=rev
Log:
Fix capitalization. NFC.

Modified:
    llvm/trunk/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h

Modified: llvm/trunk/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h?rev=222988&r1=222987&r2=222988&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h (original)
+++ llvm/trunk/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h Mon Dec  1 00:14:52 2014
@@ -248,9 +248,9 @@ static inline bool processLogicalImmedia
   }
 
   // Encode in Immr the number of RORs it would take to get *from* 0^m 1^n
-  // to our target value, where i is the number of RORs to go the opposite
+  // to our target value, where I is the number of RORs to go the opposite
   // direction.
-  assert(Size > I && "I should be smaller than element Size");
+  assert(Size > I && "I should be smaller than element size");
   unsigned Immr = (Size - I) & (Size - 1);
 
   // If size has a 1 in the n'th bit, create a value that has zeroes in





More information about the llvm-commits mailing list