Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAttributes.h384 removeAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const;
651 const AttributeMask &AttrsToRemove) const;
675 removeFnAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const {
676 return removeAttributesAtIndex(C, FunctionIndex, AttrsToRemove);
703 const AttributeMask &AttrsToRemove) const {
704 return removeAttributesAtIndex(C, ReturnIndex, AttrsToRemove);
726 const AttributeMask &AttrsToRemove) const {
727 return removeAttributesAtIndex(C, ArgNo + FirstArgIndex, AttrsToRemove);
H A DInstrTypes.h1616 void removeFnAttrs(const AttributeMask &AttrsToRemove) {
1617 Attrs = Attrs.removeFnAttributes(getContext(), AttrsToRemove);
1636 void removeRetAttrs(const AttributeMask &AttrsToRemove) {
1637 Attrs = Attrs.removeRetAttributes(getContext(), AttrsToRemove);
1653 void removeParamAttrs(unsigned ArgNo, const AttributeMask &AttrsToRemove) {
1654 Attrs = Attrs.removeParamAttributes(getContext(), ArgNo, AttrsToRemove);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp1559 LLVMContext &C, unsigned Index, const AttributeMask &AttrsToRemove) const { in removeAttributesAtIndex()
1561 AttributeSet NewAttrs = Attrs.removeAttributes(C, AttrsToRemove); in removeAttributesAtIndex()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp2075 llvm::AttributeMask AttrsToRemove; in mergeDefaultFunctionDefinitionAttributes() local
2089 AttrsToRemove.addAttribute("denormal-fp-math"); in mergeDefaultFunctionDefinitionAttributes()
2097 AttrsToRemove.addAttribute("denormal-fp-math-f32"); in mergeDefaultFunctionDefinitionAttributes()
2104 F.removeFnAttrs(AttrsToRemove); in mergeDefaultFunctionDefinitionAttributes()