aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2009-06-01 23:13:42 +0000
committerDale Johannesen <dalej@apple.com>2009-06-01 23:13:42 +0000
commit83138998513faed0c1d31e712ac6e6d5e6ee8d91 (patch)
tree545d134841f333f90bc47128d9da67bde2294225 /lib/Target
parent69bbb4cd39e8c6d391c8424fd70866b128df5d14 (diff)
downloadexternal_llvm-83138998513faed0c1d31e712ac6e6d5e6ee8d91.zip
external_llvm-83138998513faed0c1d31e712ac6e6d5e6ee8d91.tar.gz
external_llvm-83138998513faed0c1d31e712ac6e6d5e6ee8d91.tar.bz2
Comment grammaro/clarification.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72706 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/PIC16/PIC16ISelLowering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/PIC16/PIC16ISelLowering.cpp b/lib/Target/PIC16/PIC16ISelLowering.cpp
index c16b4ad..92fdcb2 100644
--- a/lib/Target/PIC16/PIC16ISelLowering.cpp
+++ b/lib/Target/PIC16/PIC16ISelLowering.cpp
@@ -1409,10 +1409,10 @@ SDValue PIC16TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) {
// Put one value on stack.
SDValue NewVal = ConvertToMemOperand (Op.getOperand(MemOp), DAG, dl);
- // ADDC and ADDE produces two results.
+ // ADDC and ADDE produce two results.
SDVTList Tys = DAG.getVTList(MVT::i8, MVT::Flag);
- // ADDE has three operands, the last one is a flag.
+ // ADDE has three operands, the last one is the carry bit.
if (Op.getOpcode() == ISD::ADDE)
return DAG.getNode(Op.getOpcode(), dl, Tys, Op.getOperand(MemOp ^ 1),
NewVal, Op.getOperand(2));