When handling raw_ostream errors manually, use clear_error() so that
authorDan Gohman <gohman@apple.com>
Thu, 27 May 2010 20:17:28 +0000 (20:17 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 27 May 2010 20:17:28 +0000 (20:17 +0000)
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

index 26fd75ef68b3eef0d73833ebda3b83fa82c02cc3..00c20915fc9d32ecc3a2cc0b213646b16dfef361 100644 (file)
@@ -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;
   }