https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103614
--- Comment #1 from getchar_gnu at hotmail dot com ---
Not sure if related, but something like x%13==8 && x>17 && x<146 can also
reduce some code
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103614
Bug ID: 103614
Summary: Modulo equality optimization
Product: gcc
Version: 11.2.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
Assig
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90782
--- Comment #6 from getchar_gnu at hotmail dot com ---
https://gcc.godbolt.org/z/qzG9jj
template
struct bar {
template
bar(B& obj, void(B::*f)(A...)const=&B::operator()){}
};
int main() {
const auto f1 = [](){};
bar f8(f1);
}
Thi