1
0
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:
Michael J. Spencer 2010-09-27 21:17:39 +00:00
parent e97177677b
commit 13fb9cadcb

View File

@ -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;