mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-15 07:59:57 +00:00
Object: Abstract out the determination of function line symbols
No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204313 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8bd2799a2d
commit
b000c172ed
@ -210,6 +210,10 @@ struct coff_symbol {
|
||||
!COFF::isReservedSectionNumber(SectionNumber);
|
||||
}
|
||||
|
||||
bool isFunctionLineInfo() const {
|
||||
return StorageClass == COFF::IMAGE_SYM_CLASS_FUNCTION;
|
||||
}
|
||||
|
||||
bool isWeakExternal() const {
|
||||
return StorageClass == COFF::IMAGE_SYM_CLASS_WEAK_EXTERNAL ||
|
||||
(StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL &&
|
||||
|
@ -157,7 +157,7 @@ void COFFDumper::dumpSymbols(unsigned NumSymbols) {
|
||||
reinterpret_cast<const object::coff_aux_function_definition *>(
|
||||
AuxData.data());
|
||||
dumpFunctionDefinition(&Sym, ObjFD);
|
||||
} else if (Symbol->StorageClass == COFF::IMAGE_SYM_CLASS_FUNCTION) {
|
||||
} else if (Symbol->isFunctionLineInfo()) {
|
||||
// This symbol describes function line number information.
|
||||
assert(Symbol->NumberOfAuxSymbols == 1 &&
|
||||
"Exepected a single aux symbol to describe this section!");
|
||||
|
Loading…
Reference in New Issue
Block a user