Whitespace fixes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60818 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-12-10 00:28:22 +00:00
parent f55a2101e3
commit 2ce4e5cadd

View File

@ -2968,7 +2968,7 @@ SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) {
return 0;
}
// implVisitAluOverflow - Lower an overflow instrinsics
// implVisitAluOverflow - Lower arithmetic overflow instrinsics.
const char *
SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
SDValue Op1 = getValue(I.getOperand(1));
@ -2977,13 +2977,11 @@ SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) {
MVT ValueVTs[] = { Op1.getValueType(), MVT::i1 };
SDValue Ops[] = { Op1, Op2 };
SDValue Result =
DAG.getNode(Op,
DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
SDValue Result = DAG.getNode(Op, DAG.getVTList(&ValueVTs[0], 2), &Ops[0], 2);
setValue(&I, Result);
return 0;
}
}
/// visitExp - Lower an exp intrinsic. Handles the special sequences for
/// limited-precision mode.