From: Peter Collingbourne Date: Fri, 9 Dec 2016 04:57:19 +0000 (+0000) Subject: Support: Use a 64-bit seek in raw_fd_ostream::seek(). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85ea24d6dad264c8eb25cd4a59228efe6a6830bb;p=llvm Support: Use a 64-bit seek in raw_fd_ostream::seek(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@289184 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index 92c7967cd8f..c51f1d376b0 100644 --- a/lib/Support/raw_ostream.cpp +++ b/lib/Support/raw_ostream.cpp @@ -598,7 +598,11 @@ void raw_fd_ostream::close() { uint64_t raw_fd_ostream::seek(uint64_t off) { assert(SupportsSeeking && "Stream does not support seeking!"); flush(); - pos = ::lseek(FD, off, SEEK_SET); +#ifdef LLVM_ON_WIN32 + pos = ::_lseeki64(FD, off, SEEK_SET); +#else + pos = ::lseek64(FD, off, SEEK_SET); +#endif if (pos == (uint64_t)-1) error_detected(); return pos;