DWARF: correct cast (NFC)

Change the case of a PRIu64 value from `long` to `uint64_t`.  NFC.

llvm-svn: 292728
This commit is contained in:
Saleem Abdulrasool 2017-01-21 21:27:29 +00:00
parent 19f47ace40
commit e6de7d333a
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@ bool CFI_Parser<A>::parseInstructions(A &addressSpace, pint_t instructions,
reg = operand;
results->savedRegisters[reg] = initialState.savedRegisters[reg];
_LIBUNWIND_TRACE_DWARF("DW_CFA_restore(reg=%" PRIu64 ")\n",
static_cast<long>(operand));
static_cast<uint64_t>(operand));
break;
default:
_LIBUNWIND_TRACE_DWARF("unknown CFA opcode 0x%02X\n", opcode);