#include "llvm/MC/MCSymbolELF.h"
#include "llvm/BinaryFormat/ELF.h"
namespace llvm {
namespace {
enum { … };
}
void MCSymbolELF::setBinding(unsigned Binding) const { … }
unsigned MCSymbolELF::getBinding() const { … }
void MCSymbolELF::setType(unsigned Type) const { … }
unsigned MCSymbolELF::getType() const { … }
void MCSymbolELF::setVisibility(unsigned Visibility) { … }
unsigned MCSymbolELF::getVisibility() const { … }
void MCSymbolELF::setOther(unsigned Other) { … }
unsigned MCSymbolELF::getOther() const { … }
void MCSymbolELF::setIsWeakrefUsedInReloc() const { … }
bool MCSymbolELF::isWeakrefUsedInReloc() const { … }
void MCSymbolELF::setIsSignature() const { … }
bool MCSymbolELF::isSignature() const { … }
void MCSymbolELF::setIsBindingSet() const { … }
bool MCSymbolELF::isBindingSet() const { … }
bool MCSymbolELF::isMemtag() const { … }
void MCSymbolELF::setMemtag(bool Tagged) { … }
}