From: Chris Lattner Date: Mon, 20 May 2002 19:49:24 +0000 (+0000) Subject: Use literal newline instead of endl X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a7cc6dd49445592bc528a5b338ede1ad5e6948ba;p=oota-llvm.git Use literal newline instead of endl git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2668 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 65bf40ebaaa..359323e5e5a 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -115,7 +115,7 @@ int main(int argc, char **argv) { if (LinkModules(Composite.get(), M.get(), &ErrorMessage)) { cerr << "Error linking in '" << InputFilenames[i] << "': " - << ErrorMessage << endl; + << ErrorMessage << "\n"; return 1; } }