aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CompilerDriver/CompilationGraph.cpp
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-12-18 04:13:36 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-12-18 04:13:36 +0000
commit4f63507d054afab14e759f046db5f42e3b96f6fb (patch)
treef4a91e95fd475621d848e05045d17e4afb2ff22f /llvm/lib/CompilerDriver/CompilationGraph.cpp
parente47230f9b5fc6a7cfbbd897778718ba4ea420624 (diff)
downloadllvm-4f63507d054afab14e759f046db5f42e3b96f6fb.zip
llvm-4f63507d054afab14e759f046db5f42e3b96f6fb.tar.gz
llvm-4f63507d054afab14e759f046db5f42e3b96f6fb.tar.bz2
Support/PathV1: Deprecate get{Basename,Dirname,Suffix}.
llvm-svn: 122141
Diffstat (limited to 'llvm/lib/CompilerDriver/CompilationGraph.cpp')
-rw-r--r--llvm/lib/CompilerDriver/CompilationGraph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CompilerDriver/CompilationGraph.cpp b/llvm/lib/CompilerDriver/CompilationGraph.cpp
index 87a2c48..0e8f5d5 100644
--- a/llvm/lib/CompilerDriver/CompilationGraph.cpp
+++ b/llvm/lib/CompilerDriver/CompilationGraph.cpp
@@ -32,7 +32,7 @@ using namespace llvmc;
namespace llvmc {
const std::string* LanguageMap::GetLanguage(const sys::Path& File) const {
- StringRef suf = File.getSuffix();
+ StringRef suf = sys::path::extension(File.str());
LanguageMap::const_iterator Lang =
this->find(suf.empty() ? "*empty*" : suf);
if (Lang == this->end()) {