Commit 639f44d4 authored by jyan's avatar jyan Committed by Commit bot

s390: fix s390 release for not generate mul opt

DCHECK disappears on release build.

R=joransiu@ca.ibm.com, bjaideep@ca.ibm.com
BUG=

Review-Url: https://codereview.chromium.org/2803663002
Cr-Commit-Position: refs/heads/master@{#44413}
parent 4782bc0d
......@@ -1360,9 +1360,8 @@ static inline bool TryMatchInt32MulWithOverflow(InstructionSelector* selector,
Node* node) {
if (Node* ovf = NodeProperties::FindProjection(node, 1)) {
if (CpuFeatures::IsSupported(MISC_INSTR_EXT2)) {
DCHECK(TryMatchInt32OpWithOverflow<kS390_Mul32>(
selector, node,
OperandMode::kAllowRRR | OperandMode::kAllowRM) == true);
TryMatchInt32OpWithOverflow<kS390_Mul32>(
selector, node, OperandMode::kAllowRRR | OperandMode::kAllowRM);
} else {
FlagsContinuation cont = FlagsContinuation::ForSet(kNotEqual, ovf);
VisitWord32BinOp(selector, node, kS390_Mul32WithOverflow,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment