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 | 62385ba3a033b24acca65e818d442f7500cba2f8 (patch) | |
tree | 75f44ace871c30b5fda7d1f95f633886c305633f /llvm/lib/Support/MemoryBuffer.cpp | |
parent | f5b0b76d28bbd763ddef73e4ca24f27a836a91dd (diff) | |
download | bcm5719-llvm-62385ba3a033b24acca65e818d442f7500cba2f8.tar.gz bcm5719-llvm-62385ba3a033b24acca65e818d442f7500cba2f8.zip |
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.
llvm-svn: 49022
Diffstat (limited to 'llvm/lib/Support/MemoryBuffer.cpp')
-rw-r--r-- | llvm/lib/Support/MemoryBuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/MemoryBuffer.cpp b/llvm/lib/Support/MemoryBuffer.cpp index 4d26d38731a..8cea07fdb54 100644 --- a/llvm/lib/Support/MemoryBuffer.cpp +++ b/llvm/lib/Support/MemoryBuffer.cpp @@ -159,7 +159,7 @@ bool MemoryBufferMMapFile::open(const sys::Path &Filename, std::string *ErrStr) { // FIXME: This does an extra stat syscall to figure out the size, but we // already know the size! - bool Failure = File.open(Filename, sys::MappedFile::READ_ACCESS, ErrStr); + bool Failure = File.open(Filename, ErrStr); if (Failure) return true; if (!File.map(ErrStr)) |