| Issue | 76598 |
|---|---|
| Summary | missed optimization: Signed constant division branch |
| Labels | new issue |
| Assignees | |
| Reporter | gooncreeper |
```C
int unopt(int n) {
if (n / 4)
return n / 4;
else
return 0;
}
int opt(int n) {
return n / 4;
}
```
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
