[llvm-commits] [llvm] r92626 - /llvm/trunk/lib/Linker/Linker.cpp

Chris Lattner clattner at apple.com
Mon Jan 4 17:31:47 PST 2010


On Jan 4, 2010, at 5:27 PM, David Greene wrote:

> Author: greened
> Date: Mon Jan  4 19:27:53 2010
> New Revision: 92626
>
> URL: http://llvm.org/viewvc/llvm-project?rev=92626&view=rev
> Log:
> Change errs() to dbgs().

This should stay errs(), the rest up to this point look good!

-Chris

>
> Modified:
>    llvm/trunk/lib/Linker/Linker.cpp
>
> Modified: llvm/trunk/lib/Linker/Linker.cpp
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Linker/Linker.cpp?rev=92626&r1=92625&r2=92626&view=diff
>
> =
> =
> =
> =
> =
> =
> =
> =
> ======================================================================
> --- llvm/trunk/lib/Linker/Linker.cpp (original)
> +++ llvm/trunk/lib/Linker/Linker.cpp Mon Jan  4 19:27:53 2010
> @@ -15,6 +15,7 @@
> #include "llvm/Module.h"
> #include "llvm/Bitcode/ReaderWriter.h"
> #include "llvm/System/Path.h"
> +#include "llvm/Support/Debug.h"
> #include "llvm/Support/MemoryBuffer.h"
> #include "llvm/Support/raw_ostream.h"
> #include "llvm/Config/config.h"
> @@ -60,7 +61,7 @@
> void
> Linker::verbose(StringRef message) {
>   if (Flags&Verbose)
> -    errs() << "  " << message << "\n";
> +    dbgs() << "  " << message << "\n";
> }
>
> void
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits




More information about the llvm-commits mailing list