diff options
Diffstat (limited to 'llvm/lib/System')
| -rw-r--r-- | llvm/lib/System/Unix/Path.inc | 4 | ||||
| -rw-r--r-- | llvm/lib/System/Win32/Path.inc | 5 | 
2 files changed, 9 insertions, 0 deletions
diff --git a/llvm/lib/System/Unix/Path.inc b/llvm/lib/System/Unix/Path.inc index 4c97c4b71cc..44c81a2f3f9 100644 --- a/llvm/lib/System/Unix/Path.inc +++ b/llvm/lib/System/Unix/Path.inc @@ -78,6 +78,10 @@ using namespace sys;  const char sys::PathSeparator = ':'; +StringRef Path::GetEXESuffix() { +  return ""; +} +  Path::Path(StringRef p)    : path(p) {} diff --git a/llvm/lib/System/Win32/Path.inc b/llvm/lib/System/Win32/Path.inc index 7e2275105a3..a4d55a0f048 100644 --- a/llvm/lib/System/Win32/Path.inc +++ b/llvm/lib/System/Win32/Path.inc @@ -45,8 +45,13 @@ static void FlipBackSlashes(std::string& s) {  namespace llvm {  namespace sys { +  const char PathSeparator = ';'; +StringRef Path::GetEXESuffix() { +  return "exe"; +} +  Path::Path(llvm::StringRef p)    : path(p) {    FlipBackSlashes(path);  | 

