diff options
Diffstat (limited to 'lld/Common/Strings.cpp')
-rw-r--r-- | lld/Common/Strings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/Common/Strings.cpp b/lld/Common/Strings.cpp index 0bf06626cc7..2240f9644e1 100644 --- a/lld/Common/Strings.cpp +++ b/lld/Common/Strings.cpp @@ -96,7 +96,7 @@ bool lld::isValidCIdentifier(StringRef s) { // Write the contents of the a buffer to a file void lld::saveBuffer(StringRef buffer, const Twine &path) { std::error_code ec; - raw_fd_ostream os(path.str(), ec, sys::fs::OpenFlags::F_None); + raw_fd_ostream os(path.str(), ec, sys::fs::OpenFlags::OF_None); if (ec) error("cannot create " + path + ": " + ec.message()); os << buffer; |