diff options
Diffstat (limited to 'llvm/tools/llvm-split/llvm-split.cpp')
-rw-r--r-- | llvm/tools/llvm-split/llvm-split.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-split/llvm-split.cpp b/llvm/tools/llvm-split/llvm-split.cpp index 879e69ccec5..102188b43bd 100644 --- a/llvm/tools/llvm-split/llvm-split.cpp +++ b/llvm/tools/llvm-split/llvm-split.cpp @@ -55,7 +55,7 @@ int main(int argc, char **argv) { SplitModule(std::move(M), NumOutputs, [&](std::unique_ptr<Module> MPart) { std::error_code EC; std::unique_ptr<ToolOutputFile> Out( - new ToolOutputFile(OutputFilename + utostr(I++), EC, sys::fs::F_None)); + new ToolOutputFile(OutputFilename + utostr(I++), EC, sys::fs::OF_None)); if (EC) { errs() << EC.message() << '\n'; exit(1); |