Fix typo.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48295 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2008-03-12 20:35:19 +00:00
parent 25eb043759
commit 87a8615015

View File

@ -83,7 +83,7 @@ void DAGTypeLegalizer::ScalarizeResult(SDNode *N, unsigned ResNo) {
case ISD::SELECT: R = ScalarizeRes_SELECT(N); break;
}
// If R is null, the sub-method took care of registering the resul.
// If R is null, the sub-method took care of registering the result.
if (R.Val)
SetScalarizedOp(SDOperand(N, ResNo), R);
}