mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-02 22:23:10 +00:00
[MC] Constify MCELF::GetVisibility and MCELF::getOther
These two routines didn't take a "const MCSymbolData &SD" like the other MCELF::Get routines for some reason ... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212834 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -27,9 +27,9 @@ class MCELF {
|
||||
static void SetType(MCSymbolData &SD, unsigned Type);
|
||||
static unsigned GetType(const MCSymbolData &SD);
|
||||
static void SetVisibility(MCSymbolData &SD, unsigned Visibility);
|
||||
static unsigned GetVisibility(MCSymbolData &SD);
|
||||
static unsigned GetVisibility(const MCSymbolData &SD);
|
||||
static void setOther(MCSymbolData &SD, unsigned Other);
|
||||
static unsigned getOther(MCSymbolData &SD);
|
||||
static unsigned getOther(const MCSymbolData &SD);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user