fix typo and spacing; NFC

llvm-svn: 243287
This commit is contained in:
Sanjay Patel 2015-07-27 17:39:20 +00:00
parent d31d4c17e6
commit beb4cffb43
1 changed files with 2 additions and 2 deletions

View File

@ -14146,9 +14146,9 @@ SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
}
if (addTest) {
// Look pass the truncate if the high bits are known zero.
// Look past the truncate if the high bits are known zero.
if (isTruncWithZeroHighBitsInput(Cond, DAG))
Cond = Cond.getOperand(0);
Cond = Cond.getOperand(0);
// We know the result of AND is compared against zero. Try to match
// it to BT.