From 548149ef8d952e215354273e82bdce8351d80bc7 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Mon, 1 Jun 2009 23:13:42 +0000 Subject: [PATCH] Comment grammaro/clarification. llvm-svn: 72706 --- lib/Target/PIC16/PIC16ISelLowering.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/PIC16/PIC16ISelLowering.cpp b/lib/Target/PIC16/PIC16ISelLowering.cpp index c16b4adbe53..92fdcb2c0c1 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));