You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<stddef.h>
#include<stdint.h>uint8_tf1(size_t idx) {
if (idx < 8) {
// it's ok that this has a bounds checkreturn (idx - 1) < 10;
} else {
return0;
}
}
Extended Description
From rust-lang github (rust-lang/rust#75525):
Clang:
GCC:
Modified test case:
Clang:
GCC:
https://godbolt.org/z/vahzbo
The text was updated successfully, but these errors were encountered: