diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-24 03:59:46 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-24 03:59:46 +0000 |
commit | 265b02ed3a3eadfedd8fda865c8205ed091da5f2 (patch) | |
tree | b901220ec6613ac077388681b4bd1c6b3c3ac727 /llvm/lib/System/Darwin | |
parent | 0f996fe02c1d09246b717031a2ca9a55284ee193 (diff) | |
download | bcm5719-llvm-265b02ed3a3eadfedd8fda865c8205ed091da5f2.tar.gz bcm5719-llvm-265b02ed3a3eadfedd8fda865c8205ed091da5f2.zip |
Remove these files as they are not being included any more. DynamicLibrary
is now implemented via ltdl.cpp which has its own way of dealing with
the different platforms.
llvm-svn: 19129
Diffstat (limited to 'llvm/lib/System/Darwin')
-rw-r--r-- | llvm/lib/System/Darwin/DynamicLibrary.cpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/llvm/lib/System/Darwin/DynamicLibrary.cpp b/llvm/lib/System/Darwin/DynamicLibrary.cpp deleted file mode 100644 index fec646047c8..00000000000 --- a/llvm/lib/System/Darwin/DynamicLibrary.cpp +++ /dev/null @@ -1,27 +0,0 @@ -//===- Darwin/DynamicLibrary.cpp - Darwin Dynamic Library -------*- 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 implements the Darwin version of DynamicLibrary -// -//===----------------------------------------------------------------------===// - -// Include the generic unix implementation -#include "../Unix/DynamicLibrary.cpp" - -namespace llvm { -using namespace sys; - -//===----------------------------------------------------------------------===// -//=== WARNING: Implementation here must contain only Darwin specific code -//=== and must not be generic UNIX code (see ../Unix/Memory.cpp) -//===----------------------------------------------------------------------===// - -} - -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab |