mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
MC-COFF: Fix signed/unsigned comparison.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114888 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c226fc8985
commit
9cf23a9ab4
@ -65,7 +65,7 @@ public:
|
||||
typedef llvm::SmallVector<AuxSymbol, 1> AuxiliarySymbols;
|
||||
|
||||
name Name;
|
||||
size_t Index;
|
||||
int Index;
|
||||
AuxiliarySymbols Aux;
|
||||
COFFSymbol *Other;
|
||||
COFFSection *Section;
|
||||
@ -96,7 +96,7 @@ public:
|
||||
COFF::section Header;
|
||||
|
||||
std::string Name;
|
||||
size_t Number;
|
||||
int Number;
|
||||
MCSectionData const *MCData;
|
||||
COFFSymbol *Symbol;
|
||||
relocations Relocations;
|
||||
|
Loading…
Reference in New Issue
Block a user