diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-01 06:00:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-01 06:00:12 +0000 |
commit | 3089e1d82e7560026831296b78b079bfce7dde19 (patch) | |
tree | 879cb4b9bd1d33bad08f7dc736da66dba08113ba /llvm/lib/System/Unix | |
parent | d4310a27aa6dff5adabd2f6278213ae57eb07b32 (diff) | |
download | bcm5719-llvm-3089e1d82e7560026831296b78b079bfce7dde19.tar.gz bcm5719-llvm-3089e1d82e7560026831296b78b079bfce7dde19.zip |
Stub out some sys::Path::MapInFilePages/UnMapFilePages methods.
llvm-svn: 49030
Diffstat (limited to 'llvm/lib/System/Unix')
-rw-r--r-- | llvm/lib/System/Unix/Path.inc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/llvm/lib/System/Unix/Path.inc b/llvm/lib/System/Unix/Path.inc index e11213294c6..b0578dcdba4 100644 --- a/llvm/lib/System/Unix/Path.inc +++ b/llvm/lib/System/Unix/Path.inc @@ -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 |