diff options
author | Dan Gohman <gohman@apple.com> | 2010-11-03 00:24:33 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-11-03 00:24:33 +0000 |
commit | 303f350f7d4fffac042d6e36ca35f751ab62488b (patch) | |
tree | 08bbb67af22e714645ee82a5c9157cc60f95a220 | |
parent | 4e0a9c51b4c25b648f23915ba9722aa9fd985e0b (diff) |
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
-rw-r--r-- | lib/Support/SystemUtils.cpp | 6 |
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; } |