mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Make use of the new Path inserter function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18887 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b0e1887014
commit
12786d535d
@ -190,7 +190,7 @@ private:
|
|||||||
if (TempDir.isDirectory() && TempDir.writable())
|
if (TempDir.isDirectory() && TempDir.writable())
|
||||||
TempDir.destroyDirectory(/*remove_contents=*/true);
|
TempDir.destroyDirectory(/*remove_contents=*/true);
|
||||||
} else {
|
} else {
|
||||||
std::cout << "Temporary files are in " << TempDir.toString() << "\n";
|
std::cout << "Temporary files are in " << TempDir << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -530,11 +530,11 @@ public:
|
|||||||
std::cerr << "OutputMachine = " << machine << "\n";
|
std::cerr << "OutputMachine = " << machine << "\n";
|
||||||
InputList::const_iterator I = InpList.begin();
|
InputList::const_iterator I = InpList.begin();
|
||||||
while ( I != InpList.end() ) {
|
while ( I != InpList.end() ) {
|
||||||
std::cerr << "Input: " << I->first.toString() << "(" << I->second
|
std::cerr << "Input: " << I->first << "(" << I->second
|
||||||
<< ")\n";
|
<< ")\n";
|
||||||
++I;
|
++I;
|
||||||
}
|
}
|
||||||
std::cerr << "Output: " << Output.toString() << "\n";
|
std::cerr << "Output: " << Output << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
// If there's no input, we're done.
|
// If there's no input, we're done.
|
||||||
|
Loading…
Reference in New Issue
Block a user