mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
COFF: Fix a typo
Introduced when I rebased my changes to use isReservedSectionNumber. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204260 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -207,7 +207,7 @@ struct coff_symbol {
|
|||||||
return StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL &&
|
return StorageClass == COFF::IMAGE_SYM_CLASS_EXTERNAL &&
|
||||||
getBaseType() == COFF::IMAGE_SYM_TYPE_NULL &&
|
getBaseType() == COFF::IMAGE_SYM_TYPE_NULL &&
|
||||||
getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION &&
|
getComplexType() == COFF::IMAGE_SYM_DTYPE_FUNCTION &&
|
||||||
COFF::isReservedSectionNumber(SectionNumber);
|
!COFF::isReservedSectionNumber(SectionNumber);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isWeakExternal() const {
|
bool isWeakExternal() const {
|
||||||
|
Reference in New Issue
Block a user