summaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-02-13 13:45:45 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-02-13 13:45:45 +0000
commit5d9d24daef53c7b9646da355297deda6753565a8 (patch)
tree101fc80afceaf24496fb7dc4b13ec02e9cb1bbf3 /include/llvm/Support
parent621c80f4d714ff31ef9f9627b5fee499e466a9fd (diff)
downloadllvm-5d9d24daef53c7b9646da355297deda6753565a8.tar.gz
llvm-5d9d24daef53c7b9646da355297deda6753565a8.tar.bz2
llvm-5d9d24daef53c7b9646da355297deda6753565a8.tar.xz
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/FileSystem.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index 032b5bef6a..1eeaa02d97 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -308,14 +308,6 @@ inline error_code create_directory(const Twine &Path) {
/// , otherwise a platform specific error_code.
error_code create_hard_link(const Twine &to, const Twine &from);
-/// @brief Create a symbolic link from \a from to \a to.
-///
-/// @param to The path to symbolically link to.
-/// @param from The path to symbolically link from. This is created.
-/// @returns errc::success if exists(to) && exists(from) && is_symlink(from),
-/// otherwise a platform specific error_code.
-error_code create_symlink(const Twine &to, const Twine &from);
-
/// @brief Get the current path.
///
/// @param result Holds the current path on return.