summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-09-14 01:14:36 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-09-14 01:14:36 +0000
commit91ead3c1f51c4a0926bc0bb5867d84d74bf918d9 (patch)
treee2633f230d14ba01c23f8674e39505c82d1b9b15 /llvm/lib
parent19329c402fb088590d679d8004aef8502861434a (diff)
downloadbcm5719-llvm-91ead3c1f51c4a0926bc0bb5867d84d74bf918d9.tar.gz
bcm5719-llvm-91ead3c1f51c4a0926bc0bb5867d84d74bf918d9.zip
Remove unimplemented function prototypes from PathV2. They can be readded when someone cares enough.
Patch by Aaron Ballman! llvm-svn: 139682
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Support/PathV2.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Support/PathV2.cpp b/llvm/lib/Support/PathV2.cpp
index 896c94c071b..c2880caa492 100644
--- a/llvm/lib/Support/PathV2.cpp
+++ b/llvm/lib/Support/PathV2.cpp
@@ -682,14 +682,12 @@ bool is_other(file_status status) {
!is_symlink(status);
}
-void directory_entry::replace_filename(const Twine &filename, file_status st,
- file_status symlink_st) {
+void directory_entry::replace_filename(const Twine &filename, file_status st) {
SmallString<128> path(Path.begin(), Path.end());
path::remove_filename(path);
path::append(path, filename);
Path = path.str();
Status = st;
- SymlinkStatus = symlink_st;
}
error_code has_magic(const Twine &path, const Twine &magic, bool &result) {
OpenPOWER on IntegriCloud