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 c725462245
commit 78395e4b8a
1 changed files with 1 additions and 1 deletions

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