[llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp

Reid Spencer reid at x10sys.com
Mon Dec 13 00:53:47 PST 2004



Changes in directory llvm/tools/llvmc:

CompilerDriver.cpp updated: 1.21 -> 1.22
---
Log message:

Make use of the new Path inserter function.


---
Diffs of the changes:  (+3 -3)

Index: llvm/tools/llvmc/CompilerDriver.cpp
diff -u llvm/tools/llvmc/CompilerDriver.cpp:1.21 llvm/tools/llvmc/CompilerDriver.cpp:1.22
--- llvm/tools/llvmc/CompilerDriver.cpp:1.21	Sun Dec 12 21:01:26 2004
+++ llvm/tools/llvmc/CompilerDriver.cpp	Mon Dec 13 02:53:36 2004
@@ -190,7 +190,7 @@
       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 @@
         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.






More information about the llvm-commits mailing list