mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Stub out some sys::Path::MapInFilePages/UnMapFilePages methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49030 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -745,5 +745,15 @@ Path::makeUnique(bool reuse_current, std::string* ErrMsg) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/// MapInFilePages - Not yet implemented on win32.
|
||||
const char *Path::MapInFilePages(int FD, uint64_t FileSize) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// MapInFilePages - Not yet implemented on win32.
|
||||
void Path::UnMapFilePages(const char *Base, uint64_t FileSize) {
|
||||
assert(0 && "NOT IMPLEMENTED");
|
||||
}
|
||||
|
||||
} // end llvm namespace
|
||||
|
||||
|
Reference in New Issue
Block a user