blob: d1f34d02961256fc226bf647ca55f20d922f9fee (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* PR middle-end/112771 */
/* { dg-do compile { target bitint575 } } */
/* { dg-options "-std=c23" } */
_BitInt(575)
foo (_BitInt(575) a)
{
a /= 0; /* { dg-warning "division by zero" } */
return a;
}
|