Turn error recovery into an assert.

This was put in because in a certain version of DragonFlyBSD stat(2) lied about the
size of some files. This was fixed a long time ago so we can remove the workaround.

llvm-svn: 145059
This commit is contained in:
Benjamin Kramer 2011-11-22 11:37:11 +00:00
parent 4c910b1475
commit f22623b78b
1 changed files with 1 additions and 6 deletions

View File

@ -330,13 +330,8 @@ error_code MemoryBuffer::getOpenFile(int FD, const char *Filename,
continue;
// Error while reading.
return error_code(errno, posix_category());
} else if (NumRead == 0) {
// We hit EOF early, truncate and terminate buffer.
Buf->BufferEnd = BufPtr;
*BufPtr = 0;
result.swap(SB);
return success;
}
assert(NumRead != 0 && "fstat reported an invalid file size.");
BytesLeft -= NumRead;
BufPtr += NumRead;
}