[llvm-commits] CVS: llvm/lib/Support/SystemUtils.cpp

Misha Brukman brukman at cs.uiuc.edu
Tue May 10 15:04:29 PDT 2005



Changes in directory llvm/lib/Support:

SystemUtils.cpp updated: 1.42 -> 1.43
---
Log message:

Why output multiple strings, let the compiler concatenate them for us for free


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

 SystemUtils.cpp |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Support/SystemUtils.cpp
diff -u llvm/lib/Support/SystemUtils.cpp:1.42 llvm/lib/Support/SystemUtils.cpp:1.43
--- llvm/lib/Support/SystemUtils.cpp:1.42	Fri Apr 22 14:13:22 2005
+++ llvm/lib/Support/SystemUtils.cpp	Tue May 10 17:03:50 2005
@@ -23,9 +23,9 @@
   if (stream_to_check == &std::cout && sys::Process::StandardOutIsDisplayed()) {
     if (print_warning) {
       std::cerr << "WARNING: You're attempting to print out a bytecode file.\n"
-                << "This is inadvisable as it may cause display problems. If\n"
-                << "you REALLY want to taste LLVM bytecode 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 bytecode first-hand, you\n"
+                   "can force output with the `-f' option.\n\n";
     }
     return true;
   }






More information about the llvm-commits mailing list