Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h1129 Type *getTypeAttr(Attribute::AttrKind Kind) const;
1132 Type *getByValType() const { return getTypeAttr(Attribute::ByVal); }
1135 Type *getStructRetType() const { return getTypeAttr(Attribute::StructRet); }
1138 Type *getByRefType() const { return getTypeAttr(Attribute::ByRef); }
1142 return getTypeAttr(Attribute::Preallocated);
1146 Type *getInAllocaType() const { return getTypeAttr(Attribute::InAlloca); }
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp1991 Type *AttrBuilder::getTypeAttr(Attribute::AttrKind Kind) const { in getTypeAttr() function in AttrBuilder