Updated F_Text and F_Append

These enum cases were also updated to OF_Text and OF_Append.
This commit is contained in:
Evan Wilde
2021-06-23 14:29:52 -07:00
parent 0aafd09835
commit 8112cda531
6 changed files with 9 additions and 9 deletions

View File

@@ -385,7 +385,7 @@ bool Migrator::emitRemap() const {
std::error_code Error;
llvm::raw_fd_ostream FileOS(RemapPath,
Error, llvm::sys::fs::F_Text);
Error, llvm::sys::fs::OF_Text);
if (FileOS.has_error()) {
return true;
}
@@ -406,7 +406,7 @@ bool Migrator::emitMigratedFile() const {
std::error_code Error;
llvm::raw_fd_ostream FileOS(OutFilename,
Error, llvm::sys::fs::F_Text);
Error, llvm::sys::fs::OF_Text);
if (FileOS.has_error()) {
return true;
}