aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Path.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-11-01 05:11:01 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-11-01 05:11:01 +0000
commit39df70c33a349ab226df7b6706e5b4331c1afc07 (patch)
tree686dbbe117016a07db8b51c193245a5752ed96fc /llvm/lib/Support/Path.cpp
parenta49b828f8fe1f50d23bf177cf019610e938c336b (diff)
downloadllvm-39df70c33a349ab226df7b6706e5b4331c1afc07.zip
llvm-39df70c33a349ab226df7b6706e5b4331c1afc07.tar.gz
llvm-39df70c33a349ab226df7b6706e5b4331c1afc07.tar.bz2
Remove a couple unused methods. PR11201.
llvm-svn: 143452
Diffstat (limited to 'llvm/lib/Support/Path.cpp')
-rw-r--r--llvm/lib/Support/Path.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Support/Path.cpp b/llvm/lib/Support/Path.cpp
index e5b7cd3..a4d49dc 100644
--- a/llvm/lib/Support/Path.cpp
+++ b/llvm/lib/Support/Path.cpp
@@ -38,16 +38,6 @@ bool Path::operator<(const Path& that) const {
return path < that.path;
}
-Path
-Path::GetLLVMConfigDir() {
- Path result;
-#ifdef LLVM_ETCDIR
- if (result.set(LLVM_ETCDIR))
- return result;
-#endif
- return GetLLVMDefaultConfigDir();
-}
-
LLVMFileType
sys::IdentifyFileType(const char *magic, unsigned length) {
assert(magic && "Invalid magic number string");