diff options
author | Dale Johannesen <dalej@apple.com> | 2009-06-01 23:13:42 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2009-06-01 23:13:42 +0000 |
commit | ff10450680222a2178385cc8d3e2593bfdeb7b7c (patch) | |
tree | 9b55403740774b85b54089aad5ba1ccea4580847 | |
parent | 67f472feed36301c4feefdf4c83ae26b81d55ad3 (diff) | |
download | bcm5719-llvm-ff10450680222a2178385cc8d3e2593bfdeb7b7c.tar.gz bcm5719-llvm-ff10450680222a2178385cc8d3e2593bfdeb7b7c.zip |
Comment grammaro/clarification.
llvm-svn: 72706
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16ISelLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16ISelLowering.cpp b/llvm/lib/Target/PIC16/PIC16ISelLowering.cpp index c16b4adbe53..92fdcb2c0c1 100644 --- a/llvm/lib/Target/PIC16/PIC16ISelLowering.cpp +++ b/llvm/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)); |