Whitespace changes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60826 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2008-12-10 02:01:32 +00:00
parent 80b990204b
commit bc5e15eafb
2 changed files with 2 additions and 3 deletions

View File

@ -4335,7 +4335,7 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
case TargetLowering::Legal:
// FIXME: According to Hacker's Delight, this can be implemented in
// target independent lowering, but it would be inefficient, since it
// requires a division + a branch
// requires a division + a branch.
assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
break;
}

View File

@ -6173,8 +6173,7 @@ SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
SDValue SetCC =
DAG.getNode(X86ISD::SETCC, N->getValueType(1),
DAG.getConstant(Cond,
MVT::i32), SDValue(Sum.getNode(), 1));
DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
return Sum;