diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-16 19:44:17 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-16 19:44:17 +0000 |
commit | 6d35481c94ae2a4118547c93f8f27bd18afa5d93 (patch) | |
tree | ed7a437e24480b3cfd193bd2fbaf0e874e751a66 /llvm/utils/FileUpdate/FileUpdate.cpp | |
parent | 7987088a8ab4c30ce3327bcf2ace53f4b24f133c (diff) | |
download | bcm5719-llvm-6d35481c94ae2a4118547c93f8f27bd18afa5d93.tar.gz bcm5719-llvm-6d35481c94ae2a4118547c93f8f27bd18afa5d93.zip |
Add a wrapper for open.
This centralizes the handling of O_BINARY and opens the way for hiding more
differences (like how open behaves with directories).
llvm-svn: 186447
Diffstat (limited to 'llvm/utils/FileUpdate/FileUpdate.cpp')
-rw-r--r-- | llvm/utils/FileUpdate/FileUpdate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/FileUpdate/FileUpdate.cpp b/llvm/utils/FileUpdate/FileUpdate.cpp index 6f9544f28e2..fbcd9277cd5 100644 --- a/llvm/utils/FileUpdate/FileUpdate.cpp +++ b/llvm/utils/FileUpdate/FileUpdate.cpp @@ -71,7 +71,7 @@ int main(int argc, char **argv) { << "', contents changed.\n"; std::string ErrorStr; tool_output_file OutStream(OutputFilename.c_str(), ErrorStr, - raw_fd_ostream::F_Binary); + sys::fs::F_Binary); if (!ErrorStr.empty()) { errs() << argv[0] << ": Unable to write output '" << OutputFilename << "': " << ErrorStr << '\n'; |