Skip to content

Commit 2b30f0e

Browse files
committed
Revert "Rename F_{None,Text,Append} to OF_{None,Text,Append}. NFC"
This reverts commit 58c814614d2ac69bcf79b09543505fac80ada4e6. Fixes build breakage using LLVM<7. llvm-svn: 367893
1 parent 86a98ba commit 2b30f0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libclc/utils/prepare-builtins.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ int main(int argc, char **argv) {
9595
std::error_code EC;
9696
#if HAVE_LLVM >= 0x0600
9797
std::unique_ptr<ToolOutputFile> Out(
98-
new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None));
98+
new ToolOutputFile(OutputFilename, EC, sys::fs::F_None));
9999
#else
100100
std::unique_ptr<tool_output_file> Out(
101-
new tool_output_file(OutputFilename, EC, sys::fs::OF_None));
101+
new tool_output_file(OutputFilename, EC, sys::fs::F_None));
102102
#endif
103103
if (EC) {
104104
errs() << EC.message() << '\n';

0 commit comments

Comments
 (0)