summaryrefslogtreecommitdiff
path: root/lib/Support/SystemUtils.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-11-03 00:24:33 +0000
committerDan Gohman <gohman@apple.com>2010-11-03 00:24:33 +0000
commit303f350f7d4fffac042d6e36ca35f751ab62488b (patch)
tree08bbb67af22e714645ee82a5c9157cc60f95a220 /lib/Support/SystemUtils.cpp
parent4e0a9c51b4c25b648f23915ba9722aa9fd985e0b (diff)
downloadllvm-303f350f7d4fffac042d6e36ca35f751ab62488b.tar.gz
llvm-303f350f7d4fffac042d6e36ca35f751ab62488b.tar.bz2
llvm-303f350f7d4fffac042d6e36ca35f751ab62488b.tar.xz
Print an error as one big string instead of breaking it up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118130 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/SystemUtils.cpp')
-rw-r--r--lib/Support/SystemUtils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp
index db61e7569c..ff076637ab 100644
--- a/lib/Support/SystemUtils.cpp
+++ b/lib/Support/SystemUtils.cpp
@@ -23,9 +23,9 @@ bool llvm::CheckBitcodeOutputToConsole(raw_ostream &stream_to_check,
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;
}