diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-13 18:41:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-13 18:41:28 +0000 |
commit | e05ab4a1ec3caab4fb177a2303aa636a1dbdcad3 (patch) | |
tree | 76629606a9cda0465147b84be2a69dd24e637c3d /llvm/lib/System/Win32/Path.cpp | |
parent | 73fc52555743cab63365755c6a2ed840887c2f7a (diff) | |
download | bcm5719-llvm-e05ab4a1ec3caab4fb177a2303aa636a1dbdcad3.tar.gz bcm5719-llvm-e05ab4a1ec3caab4fb177a2303aa636a1dbdcad3.zip |
Genericize implementation of GetDLLSuffix now that we have LTDL_SHLIB_EXT
available.
llvm-svn: 18904
Diffstat (limited to 'llvm/lib/System/Win32/Path.cpp')
-rw-r--r-- | llvm/lib/System/Win32/Path.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/System/Win32/Path.cpp b/llvm/lib/System/Win32/Path.cpp index 8201dd4ab22..e847154e583 100644 --- a/llvm/lib/System/Win32/Path.cpp +++ b/llvm/lib/System/Win32/Path.cpp @@ -118,11 +118,6 @@ Path::GetRootDirectory() { return result; } -std::string -Path::GetDLLSuffix() { - return "dll"; -} - static void getPathList(const char*path, std::vector<sys::Path>& Paths) { const char* at = path; const char* delim = strchr(at, ';'); |