Revert r146363 to allow buildbots to make forward progress.

Original commit message:
Support/FileSystem: Implement canonicalize.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146378 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chad Rosier
2011-12-12 17:58:31 +00:00
parent a0c17a495b
commit 7ae606a2a8
5 changed files with 2 additions and 99 deletions
-7
View File
@@ -431,13 +431,6 @@ rety_open_create:
return success;
}
error_code canonicalize(const Twine &path, SmallVectorImpl<char> &result) {
// Paths are already canonicalized on posix systems.
assert(path::is_absolute(path) && "path must be absolute!");
path.toVector(result);
return success;
}
error_code detail::directory_iterator_construct(detail::DirIterState &it,
StringRef path){
SmallString<128> path_null(path);