m_CheckedFp overloads
Declared in <llvm/IR/PatternMatch.h>
Match a float or vector where CheckFn(ele) for each element is true. For vectors, poison elements are assumed to match.
cstfp_pred_ty<custom_checkfn<APFloat>>
m_CheckedFp(function_ref<bool(APFloat const&)> CheckFn);
» more...
Match a float or vector where CheckFn(ele) is true, binding the constant. For vectors, poison elements are assumed to match.
cstfp_pred_ty<custom_checkfn<APFloat>>
m_CheckedFp(
Constant const*& V,
function_ref<bool(APFloat const&)> CheckFn);
» more...
| Name | Description |
|---|---|
| CheckFn | Predicate applied to each floating-point element. |
| V | Reference that receives the matched Constant. |