diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-13 08:53:36 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-13 08:53:36 +0000 |
commit | 12786d535d33f1313530b3b1975b365fc2045a17 (patch) | |
tree | b3204043c8d788d4db9f280dd04079ed0e078fd6 /tools/llvmc | |
parent | b0e1887014100939f8dfc334b077fee9ae5b47a1 (diff) | |
download | external_llvm-12786d535d33f1313530b3b1975b365fc2045a17.zip external_llvm-12786d535d33f1313530b3b1975b365fc2045a17.tar.gz external_llvm-12786d535d33f1313530b3b1975b365fc2045a17.tar.bz2 |
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
Diffstat (limited to 'tools/llvmc')
-rw-r--r-- | tools/llvmc/CompilerDriver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvmc/CompilerDriver.cpp b/tools/llvmc/CompilerDriver.cpp index f7630a2..91402d4 100644 --- a/tools/llvmc/CompilerDriver.cpp +++ b/tools/llvmc/CompilerDriver.cpp @@ -190,7 +190,7 @@ private: if (TempDir.isDirectory() && TempDir.writable()) TempDir.destroyDirectory(/*remove_contents=*/true); } 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"; InputList::const_iterator I = InpList.begin(); while ( I != InpList.end() ) { - std::cerr << "Input: " << I->first.toString() << "(" << I->second + std::cerr << "Input: " << I->first << "(" << I->second << ")\n"; ++I; } - std::cerr << "Output: " << Output.toString() << "\n"; + std::cerr << "Output: " << Output << "\n"; } // If there's no input, we're done. |