mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Remove the Copied parameter from MemoryObject::readBytes.
There was exactly one caller using this API right, the others were relying on specific behavior of the default implementation. Since it's too hard to use it right just remove it and standardize on the default behavior. Defines away PR16132. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182636 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -272,7 +272,7 @@ DecodeStatus SystemZDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
|
||||
// Get the first two bytes of the instruction.
|
||||
uint8_t Bytes[6];
|
||||
Size = 0;
|
||||
if (Region.readBytes(Address, 2, Bytes, 0) == -1)
|
||||
if (Region.readBytes(Address, 2, Bytes) == -1)
|
||||
return MCDisassembler::Fail;
|
||||
|
||||
// The top 2 bits of the first byte specify the size.
|
||||
@ -289,7 +289,7 @@ DecodeStatus SystemZDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
|
||||
}
|
||||
|
||||
// Read any remaining bytes.
|
||||
if (Size > 2 && Region.readBytes(Address + 2, Size - 2, Bytes + 2, 0) == -1)
|
||||
if (Size > 2 && Region.readBytes(Address + 2, Size - 2, Bytes + 2) == -1)
|
||||
return MCDisassembler::Fail;
|
||||
|
||||
// Construct the instruction.
|
||||
|
Reference in New Issue
Block a user