summaryrefslogtreecommitdiff
path: root/llvm/utils/split-file/split-file.cpp
AgeCommit message (Collapse)Author
2025-09-18[llvm][clang] Pass VFS to `llvm::cl` command line handling (#159174)Jan Svoboda
This PR passes the VFS down to `llvm::cl` functions so that they don't assume the real file system.
2024-09-25[SystemZ][z/OS] Open text files in text mode (#109972)Abhina Sree
This patch continues the work that was started here https://reviews.llvm.org/D99426 to correctly open text files in text mode.
2023-12-11[llvm] Use StringRef::{starts,ends}_with (NFC) (#74956)Kazu Hirata
This patch replaces uses of StringRef::{starts,ends}with with StringRef::{starts,ends}_with for consistency with std::{string,string_view}::{starts,ends}_with in C++20. I'm planning to deprecate and eventually remove StringRef::{starts,ends}with.
2022-08-12[llvm][CMake] Move `split-file` from tools to utilsMarkus Böck
It fittingly already makes use of add_llvm_utility during target creation and is usually only used in conjunction with other (test) related utilities such as FileCheck and not, which are already in utils. Differential Revision: https://reviews.llvm.org/D131713