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 | ff17d0439d37f410109bbd701504147f8d713c12 (patch) | |
| tree | 1682189498023368f741a354327c55cd7376d1ce /llvm/tools/llvmc | |
| parent | 790100674af63651437f0cbe41bd53c03d6877e0 (diff) | |
| download | bcm5719-llvm-ff17d0439d37f410109bbd701504147f8d713c12.tar.gz bcm5719-llvm-ff17d0439d37f410109bbd701504147f8d713c12.zip | |
Make use of the new Path inserter function.
llvm-svn: 18887
Diffstat (limited to 'llvm/tools/llvmc')
| -rw-r--r-- | llvm/tools/llvmc/CompilerDriver.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvmc/CompilerDriver.cpp b/llvm/tools/llvmc/CompilerDriver.cpp index f7630a2aaee..91402d4d0e7 100644 --- a/llvm/tools/llvmc/CompilerDriver.cpp +++ b/llvm/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. |

