diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-05-10 22:03:50 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-05-10 22:03:50 +0000 |
commit | 308a715acc824e75f0cd07c69375c92dbca5d7bf (patch) | |
tree | 2e778f502197a800709d49bd0f07841f8b908d27 /llvm/lib/Support/SystemUtils.cpp | |
parent | 8b47707b5c8e6714be41cd745dfc1f6edbb433e6 (diff) | |
download | bcm5719-llvm-308a715acc824e75f0cd07c69375c92dbca5d7bf.tar.gz bcm5719-llvm-308a715acc824e75f0cd07c69375c92dbca5d7bf.zip |
Why output multiple strings, let the compiler concatenate them for us for free
llvm-svn: 21845
Diffstat (limited to 'llvm/lib/Support/SystemUtils.cpp')
-rw-r--r-- | llvm/lib/Support/SystemUtils.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Support/SystemUtils.cpp b/llvm/lib/Support/SystemUtils.cpp index 55e33d046c0..97ae156bdd4 100644 --- a/llvm/lib/Support/SystemUtils.cpp +++ b/llvm/lib/Support/SystemUtils.cpp @@ -23,9 +23,9 @@ bool llvm::CheckBytecodeOutputToConsole(std::ostream* stream_to_check, 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; } |