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 | 46fa7cf91af03373b6ab54f31215bb671698000f (patch) | |
tree | 1addd0d5d3a20e3c1d0b46a7945a3412f7cd4b09 /lib/Support/Windows/Path.inc | |
parent | deeb5724b8e6dfb911bde7c4b5d4e2f10953f52b (diff) | |
download | external_llvm-46fa7cf91af03373b6ab54f31215bb671698000f.zip external_llvm-46fa7cf91af03373b6ab54f31215bb671698000f.tar.gz external_llvm-46fa7cf91af03373b6ab54f31215bb671698000f.tar.bz2 |
Move GetEXESuffix to the one place it is used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184853 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows/Path.inc')
-rw-r--r-- | lib/Support/Windows/Path.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Support/Windows/Path.inc b/lib/Support/Windows/Path.inc index ba13edc..53767e7 100644 --- a/lib/Support/Windows/Path.inc +++ b/lib/Support/Windows/Path.inc @@ -42,10 +42,6 @@ static void FlipBackSlashes(std::string& s) { namespace llvm { namespace sys { -StringRef Path::GetEXESuffix() { - return "exe"; -} - Path::Path(llvm::StringRef p) : path(p) { FlipBackSlashes(path); |