diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-09-14 20:35:46 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-09-14 20:35:46 +0000 |
commit | bc7eeaf233f4f3ee0e48245a0e5f031e0856be95 (patch) | |
tree | b45a9a7913f9446f9d2f4353d2df31abd20e4e64 /llvm/lib | |
parent | 34ac246538a859daf4fbeadda0491f5e1cf3983f (diff) | |
download | bcm5719-llvm-bc7eeaf233f4f3ee0e48245a0e5f031e0856be95.tar.gz bcm5719-llvm-bc7eeaf233f4f3ee0e48245a0e5f031e0856be95.zip |
Clarify comment
llvm-svn: 113846
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/Thumb2SizeReduction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp b/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp index 0c3962dd123..67768e5068e 100644 --- a/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp +++ b/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp @@ -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; |