mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Clean up some inappropriate choices of type in the bitcode reader. None of
these are expected to fix any 64->32 bit real truncation issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -253,7 +253,7 @@ void BitstreamCursor::ReadAbbrevRecord() {
|
||||
|
||||
BitCodeAbbrevOp::Encoding E = (BitCodeAbbrevOp::Encoding)Read(3);
|
||||
if (BitCodeAbbrevOp::hasEncodingData(E)) {
|
||||
unsigned Data = ReadVBR64(5);
|
||||
uint64_t Data = ReadVBR64(5);
|
||||
|
||||
// As a special case, handle fixed(0) (i.e., a fixed field with zero bits)
|
||||
// and vbr(0) as a literal zero. This is decoded the same way, and avoids
|
||||
|
Reference in New Issue
Block a user