Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h253 struct apfloat_match { struct
257 apfloat_match(const APFloat *&Res, bool AllowUndef) in apfloat_match() argument
295 inline apfloat_match m_APFloat(const APFloat *&Res) { in m_APFloat()
297 return apfloat_match(Res, /* AllowUndef */ false); in m_APFloat()
301 inline apfloat_match m_APFloatAllowUndef(const APFloat *&Res) { in m_APFloatAllowUndef()
302 return apfloat_match(Res, /* AllowUndef */ true); in m_APFloatAllowUndef()
306 inline apfloat_match m_APFloatForbidUndef(const APFloat *&Res) { in m_APFloatForbidUndef()
307 return apfloat_match(Res, /* AllowUndef */ false); in m_APFloatForbidUndef()