From 756a96a328c3657029a47081ea7e961b4f0f65a5 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 27 May 2010 20:17:28 +0000 Subject: 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 --- utils/FileUpdate/FileUpdate.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'utils/FileUpdate/FileUpdate.cpp') diff --git a/utils/FileUpdate/FileUpdate.cpp b/utils/FileUpdate/FileUpdate.cpp index 26fd75ef68..00c20915fc 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; } -- cgit v1.2.3