mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
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:
@@ -548,7 +548,7 @@ void MCMachOStreamer::EmitDwarfFileTable(void) {
|
|||||||
// Minimum line offset in a special line info. opcode. This value
|
// Minimum line offset in a special line info. opcode. This value
|
||||||
// was chosen to give a reasonable range of values. */
|
// was chosen to give a reasonable range of values. */
|
||||||
// DWARF2_LINE_BASE
|
// DWARF2_LINE_BASE
|
||||||
EmitIntValue(-5, 1);
|
EmitIntValue(uint64_t(-5), 1);
|
||||||
// Range of line offsets in a special line info. opcode.
|
// Range of line offsets in a special line info. opcode.
|
||||||
// DWARF2_LINE_RANGE
|
// DWARF2_LINE_RANGE
|
||||||
EmitIntValue(14, 1);
|
EmitIntValue(14, 1);
|
||||||
|
Reference in New Issue
Block a user