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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2010-09-03 19:09:46 +00:00
parent 1593dd6779
commit 7d49f2b1bf

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