summaryrefslogtreecommitdiff
path: root/llvm/benchmarks/FormatVariadicBM.cpp
AgeCommit message (Collapse)Author
2025-11-10Remove unused <algorithm> inclusion (#166942)serge-sans-paille
2025-11-08Remove unused <vector> inclusion (#166997)serge-sans-paille
2024-10-18Revert "Renormalize line endings whitespace only after dccebddb3b80"Luke Drummond
This reverts commit 9d98acb196a40fee5229afeb08f95fd36d41c10a.
2024-10-17Renormalize line endings whitespace only after dccebddb3b80Luke Drummond
Line ending policies were changed in the parent, dccebddb3b80. To make it easier to resolve downstream merge conflicts after line-ending policies are adjusted this is a separate whitespace-only commit. If you have merge conflicts as a result, you can simply `git add --renormalize -u && git merge --continue` or `git add --renormalize -u && git rebase --continue` - depending on your workflow.
2024-08-29Revert "Revert "[Support] Validate number of arguments passed to formatv()"" ↵Rahul Joshi
(#106592) Reverts llvm/llvm-project#106589 The fix for bot failures caused by the reverted commit was committed already, so this revert is not needed.
2024-08-29Revert "[Support] Validate number of arguments passed to formatv()" (#106589)Mehdi Amini
Reverts llvm/llvm-project#105745 Some bots are broken apparently.
2024-08-29[Support] Validate number of arguments passed to formatv() (#105745)Rahul Joshi
Change formatv() to validate that the number of arguments passed matches number of replacement fields in the format string, and that the replacement indices do not contain holes. To support cases where this cannot be guaranteed, introduce a formatv() overload that allows disabling validation with a bool flag as its first argument.