diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-18 22:23:07 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-18 22:23:07 +0000 |
commit | ca93d8406dd2484e580747623356f9cd9221cacb (patch) | |
tree | 42e216805bc9162fcca9e66bb9ca2d229f57e066 /llvm/lib/CompilerDriver/CompilationGraph.cpp | |
parent | 6b8b4855ff12696f20eb0e48375134ae92dbccd7 (diff) | |
download | bcm5719-llvm-ca93d8406dd2484e580747623356f9cd9221cacb.tar.gz bcm5719-llvm-ca93d8406dd2484e580747623356f9cd9221cacb.zip |
Support/PathV1: Deprecate get{Basename,Dirname,Suffix}.
llvm-svn: 122157
Diffstat (limited to 'llvm/lib/CompilerDriver/CompilationGraph.cpp')
-rw-r--r-- | llvm/lib/CompilerDriver/CompilationGraph.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CompilerDriver/CompilationGraph.cpp b/llvm/lib/CompilerDriver/CompilationGraph.cpp index 87a2c4817a8..33c6566499b 100644 --- a/llvm/lib/CompilerDriver/CompilationGraph.cpp +++ b/llvm/lib/CompilerDriver/CompilationGraph.cpp @@ -32,7 +32,8 @@ using namespace llvmc; namespace llvmc { const std::string* LanguageMap::GetLanguage(const sys::Path& File) const { - StringRef suf = File.getSuffix(); + // Remove the '.'. + StringRef suf = sys::path::extension(File.str()).substr(1); LanguageMap::const_iterator Lang = this->find(suf.empty() ? "*empty*" : suf); if (Lang == this->end()) { |