diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-25 14:42:30 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-25 14:42:30 +0000 |
commit | 242fcb846e51f94d0cd224f773a0e977f4a3eab0 (patch) | |
tree | 8d740c1d5818e25fa7505beebd7206b74ef58d39 /llvm/lib/Support/Unix | |
parent | db7c03f05e50cabd680861651629fc7859ea466b (diff) | |
download | bcm5719-llvm-242fcb846e51f94d0cd224f773a0e977f4a3eab0.tar.gz bcm5719-llvm-242fcb846e51f94d0cd224f773a0e977f4a3eab0.zip |
Move GetEXESuffix to the one place it is used.
llvm-svn: 184853
Diffstat (limited to 'llvm/lib/Support/Unix')
-rw-r--r-- | llvm/lib/Support/Unix/Path.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Support/Unix/Path.inc b/llvm/lib/Support/Unix/Path.inc index 8e31f4cedf4..63b05193716 100644 --- a/llvm/lib/Support/Unix/Path.inc +++ b/llvm/lib/Support/Unix/Path.inc @@ -81,10 +81,6 @@ inline bool lastIsSlash(const std::string& path) { namespace llvm { using namespace sys; -StringRef Path::GetEXESuffix() { - return StringRef(); -} - Path::Path(StringRef p) : path(p) {} |