[Sanitizers] Remove obsolete OpenFile from sanitizer_solaris.cc
authorRainer Orth <ro@gcc.gnu.org>
Tue, 2 Jul 2019 08:40:29 +0000 (08:40 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Tue, 2 Jul 2019 08:40:29 +0000 (08:40 +0000)
I noticed that the instance of OpenFile in sanitizer_solaris.cc is no
longer needed.

Removed as follows, tested on x86_64-pc-solaris2.11.

Differential Revision: https://reviews.llvm.org/D63764

llvm-svn: 364892

compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc

index 12d03fa..37b50c6 100644 (file)
@@ -88,11 +88,6 @@ uptr internal_open(const char *filename, int flags, u32 mode) {
   return _REAL64(open)(filename, flags, mode);
 }
 
-uptr OpenFile(const char *filename, bool write) {
-  return ReserveStandardFds(
-      internal_open(filename, write ? O_WRONLY | O_CREAT : O_RDONLY, 0660));
-}
-
 DECLARE__REAL_AND_INTERNAL(uptr, read, fd_t fd, void *buf, uptr count) {
   return _REAL(read)(fd, buf, count);
 }