mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-19 23:23:38 -04:00
Fix signed-unsigned comparison warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327060 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -360,7 +360,7 @@ static bool shouldUseMmap(int FD,
|
||||
}
|
||||
|
||||
static ErrorOr<std::unique_ptr<WriteThroughMemoryBuffer>>
|
||||
getReadWriteFile(const Twine &Filename, int64_t FileSize, uint64_t MapSize,
|
||||
getReadWriteFile(const Twine &Filename, uint64_t FileSize, uint64_t MapSize,
|
||||
uint64_t Offset) {
|
||||
int FD;
|
||||
std::error_code EC = sys::fs::openFileForWrite(
|
||||
|
||||
Reference in New Issue
Block a user