diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-01 03:10:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-01 03:10:22 +0000 |
commit | bdbd2d710c665bcdf31cbed4b44cf3f94ba746e7 (patch) | |
tree | 7ad9a631dd43e31b57f7e0910fdc78d47eae484f /lib/Archive/Archive.cpp | |
parent | 558755ce1af80a44e9d5f399584e9b2112583796 (diff) |
Remove MappedFile support for mapping files for write and exec
and shared. This complicates the design, is not used, and probably
doesn't even work.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49022 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Archive/Archive.cpp')
-rw-r--r-- | lib/Archive/Archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Archive/Archive.cpp b/lib/Archive/Archive.cpp index 125b22e9d9..c5da114538 100644 --- a/lib/Archive/Archive.cpp +++ b/lib/Archive/Archive.cpp @@ -148,7 +148,7 @@ bool Archive::mapToMemory(std::string* ErrMsg) { mapfile = new sys::MappedFile(); - if (mapfile->open(archPath, sys::MappedFile::READ_ACCESS, ErrMsg)) + if (mapfile->open(archPath, ErrMsg)) return true; if (!(base = (char*) mapfile->map(ErrMsg))) return true; |