diff gen/toobj.cpp @ 393:a3f3c2770a0d

Added bitcode filename to very verbose logging. Fixed -O<n> switches from llvm 2.4. Removed md5 from the kdevelop project filelist.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 26 Jul 2008 15:02:57 +0200
parents 4d7495038ae8
children a34078905d01
line wrap: on
line diff
--- a/gen/toobj.cpp	Thu Jul 24 00:35:46 2008 +0200
+++ b/gen/toobj.cpp	Sat Jul 26 15:02:57 2008 +0200
@@ -175,7 +175,7 @@
 
     // write bytecode
     {
-        Logger::println("Writing LLVM bitcode\n");
+        Logger::println("Writing LLVM bitcode to: %s\n", bcpath.c_str());
         std::ofstream bos(bcpath.c_str(), std::ios::binary);
         llvm::WriteBitcodeToFile(ir.module, bos);
     }