forked from OSchip/llvm-project
[NFC] Remove some unused functions
This commit is contained in:
parent
35d4292a73
commit
0f45c16f2c
|
@ -330,12 +330,6 @@ public:
|
|||
/// adds the attribute to the list of attributes.
|
||||
void addAttribute(unsigned i, Attribute Attr);
|
||||
|
||||
/// adds the attribute to the list of attributes.
|
||||
void addAttribute(unsigned i, Attribute::AttrKind Kind);
|
||||
|
||||
/// adds the attributes to the list of attributes.
|
||||
void addAttributes(unsigned i, const AttrBuilder &Attrs);
|
||||
|
||||
/// Add function attributes to this function.
|
||||
void addFnAttr(Attribute::AttrKind Kind);
|
||||
|
||||
|
|
|
@ -533,14 +533,6 @@ void Function::addAttribute(unsigned i, Attribute Attr) {
|
|||
AttributeSets = AttributeSets.addAttribute(getContext(), i, Attr);
|
||||
}
|
||||
|
||||
void Function::addAttribute(unsigned i, Attribute::AttrKind Attr) {
|
||||
AttributeSets = AttributeSets.addAttribute(getContext(), i, Attr);
|
||||
}
|
||||
|
||||
void Function::addAttributes(unsigned i, const AttrBuilder &Attrs) {
|
||||
AttributeSets = AttributeSets.addAttributes(getContext(), i, Attrs);
|
||||
}
|
||||
|
||||
void Function::addFnAttr(Attribute::AttrKind Kind) {
|
||||
AttributeSets = AttributeSets.addFnAttribute(getContext(), Kind);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue