mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
MC-COFF: Fix signed/unsigned comparison.
llvm-svn: 114888
This commit is contained in:
parent
e97177677b
commit
13fb9cadcb
@ -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