[all-commits] [llvm/llvm-project] a1d12e: [NFC] [IndVars] test for multiple bounds for predi...
Florian Mayer via All-commits
all-commits at lists.llvm.org
Fri Feb 13 10:13:53 PST 2026
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: a1d12e944e8035d17166e78385ea5180e368e3f9
https://github.com/llvm/llvm-project/commit/a1d12e944e8035d17166e78385ea5180e368e3f9
Author: Florian Mayer <fmayer at google.com>
Date: 2026-02-13 (Fri, 13 Feb 2026)
Changed paths:
M llvm/test/Transforms/IndVarSimplify/unreachable-exit.ll
Log Message:
-----------
[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
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list