[llvm-branch-commits] [Support] Implement slash-agnostic path matching in GlobPattern (PR #202854)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Jun 9 22:10:00 PDT 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp,h -- llvm/include/llvm/Support/GlobPattern.h llvm/lib/Support/GlobPattern.cpp llvm/unittests/Support/GlobPatternTest.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/include/llvm/Support/GlobPattern.h b/llvm/include/llvm/Support/GlobPattern.h
index 47aa7a1cc..ec3631ade 100644
--- a/llvm/include/llvm/Support/GlobPattern.h
+++ b/llvm/include/llvm/Support/GlobPattern.h
@@ -92,8 +92,8 @@ private:
struct SubGlobPattern {
/// \param Pat the pattern to match against
- LLVM_ABI static Expected<SubGlobPattern> create(
- StringRef Pat, bool SlashAgnostic = false);
+ LLVM_ABI static Expected<SubGlobPattern> create(StringRef Pat,
+ bool SlashAgnostic = false);
/// \returns \p true if \p S matches this glob pattern
LLVM_ABI bool match(StringRef S, bool SlashAgnostic) const;
StringRef getPat() const { return StringRef(Pat.data(), Pat.size()); }
diff --git a/llvm/lib/Support/GlobPattern.cpp b/llvm/lib/Support/GlobPattern.cpp
index 62cc6f16e..06f56bcd5 100644
--- a/llvm/lib/Support/GlobPattern.cpp
+++ b/llvm/lib/Support/GlobPattern.cpp
@@ -182,9 +182,9 @@ static StringRef maxPlainSubstring(StringRef S, bool SlashAgnostic) {
return Best;
}
-Expected<GlobPattern>
-GlobPattern::create(StringRef S, std::optional<size_t> MaxSubPatterns,
- bool SlashAgnostic) {
+Expected<GlobPattern> GlobPattern::create(StringRef S,
+ std::optional<size_t> MaxSubPatterns,
+ bool SlashAgnostic) {
GlobPattern Pat;
Pat.SlashAgnostic = SlashAgnostic;
Pat.Pattern = S;
``````````
</details>
https://github.com/llvm/llvm-project/pull/202854
More information about the llvm-branch-commits
mailing list