xbolva00 added a comment.
int a, b;
int f(void) {
while (1) {
if (a != b) return 1;
}
return 0;
}
int g(int a, int b) {
while (1) {
if (a != b) return 1;
}
return 0;
}
LLVM does not catch these cases; gcc does.
https://godbolt.org/z/jW7son
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D86844/new/
https://reviews.llvm.org/D86844
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits