mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-05 18:28:29 +00:00
MC: Use MachO::SectionType for MCSectionMachO::getType's return type
This is a straightfoward replacement, it makes debugging a little easier. This has no functional impact. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203264 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5ba79a9952
commit
f5955c7dac
@ -64,7 +64,10 @@ public:
|
||||
unsigned getTypeAndAttributes() const { return TypeAndAttributes; }
|
||||
unsigned getStubSize() const { return Reserved2; }
|
||||
|
||||
unsigned getType() const { return TypeAndAttributes & MachO::SECTION_TYPE; }
|
||||
MachO::SectionType getType() const {
|
||||
return static_cast<MachO::SectionType>(TypeAndAttributes &
|
||||
MachO::SECTION_TYPE);
|
||||
}
|
||||
bool hasAttribute(unsigned Value) const {
|
||||
return (TypeAndAttributes & Value) != 0;
|
||||
}
|
||||
|
@ -428,7 +428,7 @@ bool DarwinAsmParser::ParseDirectiveDesc(StringRef, SMLoc) {
|
||||
bool DarwinAsmParser::ParseDirectiveIndirectSymbol(StringRef, SMLoc Loc) {
|
||||
const MCSectionMachO *Current = static_cast<const MCSectionMachO*>(
|
||||
getStreamer().getCurrentSection().first);
|
||||
unsigned SectionType = Current->getType();
|
||||
MachO::SectionType SectionType = Current->getType();
|
||||
if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
|
||||
SectionType != MachO::S_LAZY_SYMBOL_POINTERS &&
|
||||
SectionType != MachO::S_SYMBOL_STUBS)
|
||||
|
@ -102,7 +102,7 @@ void MCSectionMachO::PrintSwitchToSection(const MCAsmInfo &MAI,
|
||||
return;
|
||||
}
|
||||
|
||||
unsigned SectionType = getType();
|
||||
MachO::SectionType SectionType = getType();
|
||||
assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE &&
|
||||
"Invalid SectionType specified!");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user