fixed typo

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264395 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Elena Demikhovsky 2016-03-25 10:08:36 +00:00
parent 14a12ee56f
commit 375da745c2

View File

@ -14525,7 +14525,7 @@ static SDValue EmitKTEST(SDValue Op, SelectionDAG &DAG,
if (Op.getOpcode() == ISD::BITCAST) { if (Op.getOpcode() == ISD::BITCAST) {
auto hasKTEST = [&](MVT VT) { auto hasKTEST = [&](MVT VT) {
unsigned SizeInBits = VT.getSizeInBits(); unsigned SizeInBits = VT.getSizeInBits();
return (Subtarget.hasDQI() && (SizeInBits == 8 || SizeInBits == 8)) || return (Subtarget.hasDQI() && (SizeInBits == 8 || SizeInBits == 16)) ||
(Subtarget.hasBWI() && (SizeInBits == 32 || SizeInBits == 64)); (Subtarget.hasBWI() && (SizeInBits == 32 || SizeInBits == 64));
}; };
SDValue Op0 = Op.getOperand(0); SDValue Op0 = Op.getOperand(0);