zwuis wrote: > Closes #172180
Should be removed.
```cpp
if (bool b = ...; b == true) { ... }
// target in that issue
if (bool b = ...) { ... }
// what this PR does currently (from tests)
if (bool b = ...; b) { ... }
```
https://github.com/llvm/llvm-project/pull/172220
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
