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/Main.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/Main.cpp')
-rw-r--r-- | llvm/lib/CompilerDriver/Main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CompilerDriver/Main.cpp b/llvm/lib/CompilerDriver/Main.cpp index 4f8794041b9..88cfdb21230 100644 --- a/llvm/lib/CompilerDriver/Main.cpp +++ b/llvm/lib/CompilerDriver/Main.cpp @@ -43,8 +43,7 @@ namespace { return 0; } else if (SaveTemps == SaveTempsEnum::Obj && !OutputFilename.empty()) { - tempDir = OutputFilename; - tempDir = tempDir.getDirname(); + tempDir = sys::path::parent_path(OutputFilename); } else { // SaveTemps == Cwd --> use current dir (leave tempDir empty). |