summaryrefslogtreecommitdiffstats
path: root/llvm/utils/FileUpdate/FileUpdate.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-07-16 19:44:17 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-07-16 19:44:17 +0000
commit6d35481c94ae2a4118547c93f8f27bd18afa5d93 (patch)
treeed7a437e24480b3cfd193bd2fbaf0e874e751a66 /llvm/utils/FileUpdate/FileUpdate.cpp
parent7987088a8ab4c30ce3327bcf2ace53f4b24f133c (diff)
downloadbcm5719-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.cpp2
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';
OpenPOWER on IntegriCloud