Clarify comment
authorJim Grosbach <grosbach@apple.com>
Tue, 14 Sep 2010 20:35:46 +0000 (20:35 +0000)
committerJim Grosbach <grosbach@apple.com>
Tue, 14 Sep 2010 20:35:46 +0000 (20:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113846 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/Thumb2SizeReduction.cpp

index 0c3962dd123d85963d08281e2dac41e65af25703..67768e5068e4e2e534d1de9888e69387f62099d1 100644 (file)
@@ -217,8 +217,8 @@ Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
     /// Old opcode has an optional def of CPSR.
     if (HasCC)
       return true;
-    // If both old opcode does not implicit CPSR def, then it's not ok since
-    // these new opcodes CPSR def is not meant to be thrown away. e.g. CMP.
+    // If old opcode does not implicitly define CPSR, then it's not ok since
+    // these new opcodes' CPSR def is not meant to be thrown away. e.g. CMP.
     if (!HasImplicitCPSRDef(MI->getDesc()))
       return false;
     HasCC = true;