[Bug tree-optimization/119552] New: Deduplicate __divmodbitint4 calls for quotient and remainder
mcccs at gmx dot com
gcc-bugzilla@gcc.gnu.org
Mon Mar 31 14:18:55 GMT 2025
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119552
Bug ID: 119552
Summary: Deduplicate __divmodbitint4 calls for quotient and
remainder
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: tree-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: mcccs at gmx dot com
Target Milestone: ---
_BitInt(1280) a, b, c, d;
void divide() {
c = a/b;
d = a%b;
}
calls __divmodbitint4 twice
Relevant bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=43721
More information about the Gcc-bugs
mailing list