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

Fix type sizes that were causing incorrect string formatting

llvm-svn: 324096
This commit is contained in:
James Henderson 2018-02-02 15:09:31 +00:00
parent 5bccf5b98e
commit b4cf387a84
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ public:
/// Returns the length of this table, including the length field, or 0 if the
/// length has not been determined (e.g. because the table has not yet been
/// parsed, or there was a problem in parsing).
uint64_t length() const;
uint32_t length() const;
};
} // end namespace llvm

View File

@ -47,7 +47,7 @@ Error DWARFDebugRnglists::extract(DWARFDataExtractor Data,
" has too small length (0x%" PRIx32
") to contain a complete header",
TableOffset, length());
uint64_t End = TableOffset + length();
uint32_t End = TableOffset + length();
if (!Data.isValidOffsetForDataOfSize(TableOffset, End - TableOffset))
return createError(
"section is not large enough to contain a .debug_rnglists table "
@ -184,7 +184,7 @@ void DWARFDebugRnglists::dump(raw_ostream &OS) const {
}
}
uint64_t DWARFDebugRnglists::length() const {
uint32_t DWARFDebugRnglists::length() const {
if (HeaderData.Length == 0)
return 0;
// TODO: DWARF64 support.