NeKon69 wrote:

I ran GLM 5.2 on your PR here's a few issues it found that I agree with.

1. There's a crash for this kind of code:
```cpp
void f() {
  int* p;
  while (*p) {
    int x;
    p = &x;
  }
}
```
I can't say I totally understand why, but I think it is related to the usage of 
that pointer in the loop condition and it getting reassigned to a local in the 
body that dies each iteration (perhaps we are missing a block?).
2. Rename unit test helper since we now track loans multi-block.

https://github.com/llvm/llvm-project/pull/204592
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to