Sirraide wrote:
> because trying to evaluate e.g. `int f() { break; }` would definitely crash.
As would
```c++
constexpr int f() {
switch (1) {
case 1: continue a;
}
return 1;
}
```
https://github.com/llvm/llvm-project/pull/168332
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
