History log of /llvm-project/llvm/lib/Support/OptionStrCmp.cpp (Results 1 – 2 of 2)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-21-init, llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5, llvmorg-19.1.4, llvmorg-19.1.3, llvmorg-19.1.2, llvmorg-19.1.1
# f5eaadc3 24-Sep-2024 Rahul Joshi <rjoshi@nvidia.com>

[NFC] Fix line endings for ModRef.cpp/OptionStrCmp.cpp (#109712)


Revision tags: llvmorg-19.1.0
# d3cdf0f2 14-Sep-2024 Rahul Joshi <rjoshi@nvidia.com>

[LLVM][Option] Refactor option name comparison (#108219)

Move common functions shared by TableGen Option Emitter
and Options library to Support:
- Move `StrCmpOptionName` and base it on the existi

[LLVM][Option] Refactor option name comparison (#108219)

Move common functions shared by TableGen Option Emitter
and Options library to Support:
- Move `StrCmpOptionName` and base it on the existing version
in OptTable.cpp, with an additional mode to control fall back to
case insensitive comparison.
- Add `StrCmpOptionPrefixes` to compare prefixes and use zip() to
iterate through lists of prefixes.
- Rename `CompareOptionRecords` to less ambiguous name
`IsOptionRecordLess`.
- Merge 2 back-to-back ifs with same condition in
`IsOptionRecordLess`.

Fixes https://github.com/llvm/llvm-project/issues/107723

show more ...