[llvm] [TableGen] Add `!match` operator to do regex matching (PR #130759)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 02:09:17 PDT 2025
================
@@ -1318,6 +1319,20 @@ const Init *BinOpInit::Fold(const Record *CurRec) const {
}
break;
}
+ case MATCH: {
+ const auto *StrInit = dyn_cast<StringInit>(LHS);
+ const auto *RegexInit = dyn_cast<StringInit>(RHS);
+ if (!(StrInit && RegexInit))
+ return this;
----------------
arsenm wrote:
Can these just be `cast<>`? Something must be catching the non-string case to produce the tested errors
https://github.com/llvm/llvm-project/pull/130759
More information about the llvm-commits
mailing list