mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Make TempDir a PathWithStatus so we don't have to cast it to one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35772 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -195,8 +195,7 @@ private:
|
||||
|
||||
void cleanup() {
|
||||
if (!isSet(KEEP_TEMPS_FLAG)) {
|
||||
const sys::FileStatus *Status =
|
||||
sys::PathWithStatus(TempDir).getFileStatus();
|
||||
const sys::FileStatus *Status = TempDir.getFileStatus();
|
||||
if (Status && Status->isDir)
|
||||
TempDir.eraseFromDisk(/*remove_contents=*/true);
|
||||
} else {
|
||||
@@ -997,7 +996,7 @@ private:
|
||||
PathVector IncludePaths; ///< -I options
|
||||
PathVector ToolPaths; ///< -B options
|
||||
StringVector Defines; ///< -D options
|
||||
sys::Path TempDir; ///< Name of the temporary directory.
|
||||
sys::PathWithStatus TempDir; ///< Name of the temporary directory.
|
||||
StringTable AdditionalArgs; ///< The -Txyz options
|
||||
StringVector fOptions; ///< -f options
|
||||
StringVector MOptions; ///< -M options
|
||||
|
Reference in New Issue
Block a user