Home
last modified time | relevance | path

Searched refs:MaybeLHS (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp7276 std::optional<APInt> MaybeLHS = getConstantOrConstantSplatVector(LHS); in matchAddOverflow() local
7280 if (MaybeLHS && MaybeRHS && isConstantLegalOrBeforeLegalizer(DstTy) && in matchAddOverflow()
7283 APInt Result = IsSigned ? MaybeLHS->sadd_ov(*MaybeRHS, Overflow) in matchAddOverflow()
7284 : MaybeLHS->uadd_ov(*MaybeRHS, Overflow); in matchAddOverflow()