mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Fixes warnings emitted by Visual Studio 2010 compiler.
Patch by Erik Olofsson! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126796 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -274,8 +274,8 @@ public:
|
||||
if (is64Bit())
|
||||
Write32(0); // reserved3
|
||||
|
||||
assert(OS.tell() - Start == is64Bit() ? macho::Section64Size :
|
||||
macho::Section32Size);
|
||||
assert(OS.tell() - Start == (is64Bit() ? macho::Section64Size :
|
||||
macho::Section32Size));
|
||||
}
|
||||
|
||||
void WriteSymtabLoadCommand(uint32_t SymbolOffset, uint32_t NumSymbols,
|
||||
|
Reference in New Issue
Block a user