https://github.com/shafik commented:
No release note b/c you will backport?
https://github.com/llvm/llvm-project/pull/150186
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/cor3ntin closed
https://github.com/llvm/llvm-project/pull/150186
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/zyn0217 approved this pull request.
https://github.com/llvm/llvm-project/pull/150186
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -588,6 +588,9 @@ static bool CheckConstraintSatisfaction(
return true;
for (const AssociatedConstraint &AC : AssociatedConstraints) {
+if (AC.isNull())
+ return true;
zyn0217 wrote:
Can we continue?
https://github.com/llvm/llvm-project/pull
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: Corentin Jabot (cor3ntin)
Changes
Fixes #149986
---
Full diff: https://github.com/llvm/llvm-project/pull/150186.diff
2 Files Affected:
- (modified) clang/lib/Sema/SemaConcept.cpp (+3)
- (modified) clang/test/SemaTemplate/concepts.cpp (
https://github.com/cor3ntin created
https://github.com/llvm/llvm-project/pull/150186
Fixes #149986
>From 44e0a15203f0d579c6c78ddf135a4f76e164b642 Mon Sep 17 00:00:00 2001
From: Corentin Jabot
Date: Wed, 23 Jul 2025 10:31:49 +0200
Subject: [PATCH] [Clang] Fix a crash on invalid concept
Fixes #