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. llvm-svn: 182636
This commit is contained in:
@@ -3010,7 +3010,7 @@ bool BitcodeReader::InitLazyStream() {
|
||||
Stream.init(*StreamFile);
|
||||
|
||||
unsigned char buf[16];
|
||||
if (Bytes->readBytes(0, 16, buf, NULL) == -1)
|
||||
if (Bytes->readBytes(0, 16, buf) == -1)
|
||||
return Error("Bitcode stream must be at least 16 bytes in length");
|
||||
|
||||
if (!isBitcode(buf, buf + 16))
|
||||
|
||||
Reference in New Issue
Block a user