[llvm-commits] [llvm] r118130 - /llvm/trunk/lib/Support/SystemUtils.cpp

Dan Gohman gohman at apple.com
Tue Nov 2 17:24:33 PDT 2010


Author: djg
Date: Tue Nov  2 19:24:33 2010
New Revision: 118130

URL: http://llvm.org/viewvc/llvm-project?rev=118130&view=rev
Log:
Print an error as one big string instead of breaking it up.

Modified:
    llvm/trunk/lib/Support/SystemUtils.cpp

Modified: llvm/trunk/lib/Support/SystemUtils.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/SystemUtils.cpp?rev=118130&r1=118129&r2=118130&view=diff
==============================================================================
--- llvm/trunk/lib/Support/SystemUtils.cpp (original)
+++ llvm/trunk/lib/Support/SystemUtils.cpp Tue Nov  2 19:24:33 2010
@@ -23,9 +23,9 @@
   if (stream_to_check.is_displayed()) {
     if (print_warning) {
       errs() << "WARNING: You're attempting to print out a bitcode file.\n"
-             << "This is inadvisable as it may cause display problems. If\n"
-             << "you REALLY want to taste LLVM bitcode first-hand, you\n"
-             << "can force output with the `-f' option.\n\n";
+                "This is inadvisable as it may cause display problems. If\n"
+                "you REALLY want to taste LLVM bitcode first-hand, you\n"
+                "can force output with the `-f' option.\n\n";
     }
     return true;
   }





More information about the llvm-commits mailing list