diff --git a/src/V3Const.cpp b/src/V3Const.cpp index 0d3e7d707..277d6988b 100644 --- a/src/V3Const.cpp +++ b/src/V3Const.cpp @@ -449,9 +449,7 @@ class ConstBitOpTreeVisitor final : public VNVisitorConst { AstNode* lhsp = nodep->lhsp(); AstCCast* const castp = VN_CAST(lhsp, CCast); if (castp) lhsp = castp->lhsp(); - CONST_BITOP_RETURN_IF(!VN_IS(lhsp, VarRef) && !VN_IS(lhsp, Xor) && !VN_IS(lhsp, RedXor) - && !VN_IS(lhsp, ShiftR), - lhsp); + CONST_BITOP_RETURN_IF(!isXorTree() && !VN_IS(lhsp, VarRef) && !VN_IS(lhsp, ShiftR), lhsp); incrOps(nodep, __LINE__); m_polarity = !m_polarity; iterateChildrenConst(nodep); diff --git a/test_regress/t/t_const_opt.pl b/test_regress/t/t_const_opt.pl index b0d5b518a..c01b55613 100755 --- a/test_regress/t/t_const_opt.pl +++ b/test_regress/t/t_const_opt.pl @@ -20,7 +20,7 @@ execute( ); if ($Self->{vlt}) { - file_grep($Self->{stats}, qr/Optimizations, Const bit op reduction\s+(\d+)/i, 29); + file_grep($Self->{stats}, qr/Optimizations, Const bit op reduction\s+(\d+)/i, 39); } ok(1); 1;