diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 06:15:43 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-27 06:15:43 +0000 |
commit | 1a7a435b492a46af553b289a42f8720f14468365 (patch) | |
tree | 4d60ee20d7b06c1da0e1715af0036a1881ddca86 /llvm/lib/System/Interix | |
parent | 97d4a17f0457553e3cb4dab147dc3a2103979ed1 (diff) | |
download | bcm5719-llvm-1a7a435b492a46af553b289a42f8720f14468365.tar.gz bcm5719-llvm-1a7a435b492a46af553b289a42f8720f14468365.zip |
For PR351:
* Consolidate implementation for Unix systems into Unix/MappedFile.cpp
* Avoid use of symbolic link to #include platform-specific implementation.
llvm-svn: 19151
Diffstat (limited to 'llvm/lib/System/Interix')
-rw-r--r-- | llvm/lib/System/Interix/MappedFile.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/llvm/lib/System/Interix/MappedFile.cpp b/llvm/lib/System/Interix/MappedFile.cpp deleted file mode 100644 index 1600ea4bcae..00000000000 --- a/llvm/lib/System/Interix/MappedFile.cpp +++ /dev/null @@ -1,18 +0,0 @@ -//===- Interix/MappedFile.cpp - Interix MappedFile Impl. --------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file was developed by Reid Spencer and is distributed under the -// University of Illinois Open Source License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This file provides the Interix specific implementation of the MappedFile -// concept. -// -//===----------------------------------------------------------------------===// - -// Include the generic unix implementation -#include "../Unix/MappedFile.cpp" - -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab |