llvm/llvm/lib/MC/MCSymbolELF.cpp

//===- lib/MC/MCSymbolELF.cpp ---------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#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) {}
}