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/lib/Target/TargetMachineC.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/lib/Target/TargetMachineC.cpp')
| -rw-r--r-- | llvm/lib/Target/TargetMachineC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/TargetMachineC.cpp b/llvm/lib/Target/TargetMachineC.cpp index 01d12e8ba5c..741912200da 100644 --- a/llvm/lib/Target/TargetMachineC.cpp +++ b/llvm/lib/Target/TargetMachineC.cpp @@ -200,7 +200,7 @@ static LLVMBool LLVMTargetMachineEmit(LLVMTargetMachineRef T, LLVMModuleRef M, LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M, char* Filename, LLVMCodeGenFileType codegen, char** ErrorMessage) { std::string error; - raw_fd_ostream dest(Filename, error, raw_fd_ostream::F_Binary); + raw_fd_ostream dest(Filename, error, sys::fs::F_Binary); formatted_raw_ostream destf(dest); if (!error.empty()) { *ErrorMessage = strdup(error.c_str()); |

