[clang] [FMV] Allow target version definitions in any order. (PR #83887)
Alexandros Lamprineas via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 5 03:47:46 PST 2024
================
@@ -11455,9 +11465,8 @@ static bool CheckTargetCausesMultiVersioning(Sema &S, FunctionDecl *OldFD,
}
// If this is 'default', permit the forward declaration.
- if (!OldFD->isMultiVersion() &&
- ((NewTA && NewTA->isDefaultVersion() && !OldTA) ||
- (NewTVA && NewTVA->isDefaultVersion() && !OldTVA))) {
+ if ((NewTA && NewTA->isDefaultVersion() && !OldTA) ||
----------------
labrinea wrote:
As far as I can tell yes, this is astatic function with exactly one call site.
https://github.com/llvm/llvm-project/pull/83887
More information about the cfe-commits
mailing list