From: Dan Gohman Date: Thu, 27 May 2010 20:17:28 +0000 (+0000) Subject: When handling raw_ostream errors manually, use clear_error() so that X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=756a96a328c3657029a47081ea7e961b4f0f65a5;p=oota-llvm.git When handling raw_ostream errors manually, use clear_error() so that raw_ostream doesn't try to do its own error handling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104881 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/FileUpdate/FileUpdate.cpp b/utils/FileUpdate/FileUpdate.cpp index 26fd75ef68b..00c20915fc9 100644 --- a/utils/FileUpdate/FileUpdate.cpp +++ b/utils/FileUpdate/FileUpdate.cpp @@ -79,6 +79,7 @@ int main(int argc, char **argv) { if (OutStream.has_error()) { errs() << argv[0] << ": Could not open output file '" << OutputFilename << "': " << ErrorStr << '\n'; + OutStream.clear_error(); return 1; }