1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Get rid of "passing signed into unsigned parameter" warning on PPC.

llvm-svn: 112995
This commit is contained in:
Bill Wendling 2010-09-03 19:09:46 +00:00
parent 9161c79ffe
commit da6d7dd741

View File

@ -548,7 +548,7 @@ void MCMachOStreamer::EmitDwarfFileTable(void) {
// Minimum line offset in a special line info. opcode. This value
// was chosen to give a reasonable range of values. */
// DWARF2_LINE_BASE
EmitIntValue(-5, 1);
EmitIntValue(uint64_t(-5), 1);
// Range of line offsets in a special line info. opcode.
// DWARF2_LINE_RANGE
EmitIntValue(14, 1);