diff options
author | Yaron Keren <yaron.keren@gmail.com> | 2014-05-16 13:16:30 +0000 |
---|---|---|
committer | Yaron Keren <yaron.keren@gmail.com> | 2014-05-16 13:16:30 +0000 |
commit | 152172009af6cdea927bd2810f79073c298e2948 (patch) | |
tree | 74b4c5842a9f83f1381bcccfb7859c0fcc8a7be1 /llvm/lib/Support/Path.cpp | |
parent | 3ab3467cefaab32c0d5c01f11444a2400e5e84c1 (diff) | |
download | bcm5719-llvm-152172009af6cdea927bd2810f79073c298e2948.tar.gz bcm5719-llvm-152172009af6cdea927bd2810f79073c298e2948.zip |
Fix hardcoded slash to native path seperator which was exposed from llvm::sys::path.
http://reviews.llvm.org/D3687
llvm-svn: 208980
Diffstat (limited to 'llvm/lib/Support/Path.cpp')
-rw-r--r-- | llvm/lib/Support/Path.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Support/Path.cpp b/llvm/lib/Support/Path.cpp index d345829d4dd..b8d676f286c 100644 --- a/llvm/lib/Support/Path.cpp +++ b/llvm/lib/Support/Path.cpp @@ -569,6 +569,12 @@ bool is_separator(char value) { } } +static const char preferred_separator_string[] = { preferred_separator, '\0' }; + +const StringRef get_separator() { + return preferred_separator_string; +} + void system_temp_directory(bool erasedOnReboot, SmallVectorImpl<char> &result) { result.clear(); |