AArch64ISelLowering: Reduce maximum recursion depth of isConjunctionDisjunctionTree()

This function will exhibit exponential runtime (2**n) so we should
rather use a lower limit.

llvm-svn: 258604
This commit is contained in:
Matthias Braun 2016-01-23 04:05:18 +00:00
parent a0ca239a6c
commit da14179563

@ -1326,8 +1326,8 @@ static bool isConjunctionDisjunctionTree(const SDValue Val, bool &CanPushNegate,
CanPushNegate = true; CanPushNegate = true;
return true; return true;
} }
// Protect against stack overflow. // Protect against exponential runtime and stack overflow.
if (Depth > 15) if (Depth > 6)
return false; return false;
if (Opcode == ISD::AND || Opcode == ISD::OR) { if (Opcode == ISD::AND || Opcode == ISD::OR) {
SDValue O0 = Val->getOperand(0); SDValue O0 = Val->getOperand(0);