diff options
| author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-18 04:13:36 +0000 |
|---|---|---|
| committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-18 04:13:36 +0000 |
| commit | 4f63507d054afab14e759f046db5f42e3b96f6fb (patch) | |
| tree | f4a91e95fd475621d848e05045d17e4afb2ff22f /llvm/lib/CompilerDriver/Tool.cpp | |
| parent | e47230f9b5fc6a7cfbbd897778718ba4ea420624 (diff) | |
| download | llvm-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/Tool.cpp')
| -rw-r--r-- | llvm/lib/CompilerDriver/Tool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CompilerDriver/Tool.cpp b/llvm/lib/CompilerDriver/Tool.cpp index 232bd41..876759a 100644 --- a/llvm/lib/CompilerDriver/Tool.cpp +++ b/llvm/lib/CompilerDriver/Tool.cpp @@ -61,7 +61,7 @@ sys::Path Tool::OutFilename(const sys::Path& In, Out.appendSuffix(OutputSuffix); } else { - Out.set(In.getBasename()); + Out.set(sys::path::stem(In.str())); Out.appendSuffix(OutputSuffix); } } @@ -69,7 +69,7 @@ sys::Path Tool::OutFilename(const sys::Path& In, if (IsJoin()) Out = MakeTempFile(TempDir, "tmp", OutputSuffix); else - Out = MakeTempFile(TempDir, In.getBasename(), OutputSuffix); + Out = MakeTempFile(TempDir, sys::path::stem(In.str()), OutputSuffix); } return Out; } |
