Florian Mayer a1d12e944e
[NFC] [IndVars] test for multiple bounds for predicate-loop-traps
This can come from loops like

```
for (int i = 0; i < X; ++i) {
  if (i < N)
    __builtin_trap();
  if (i < M)
    __builtin_trap();
  x[i] = y[i];
}
```

Reviewers: nikic

Reviewed By: nikic

Pull Request: https://github.com/llvm/llvm-project/pull/181264
2026-02-13 10:13:31 -08:00
..