blob: d4468dfd87439605b6174547305e68f64bc67f95 [file] [log] [blame]
/* PR tree-optimization/113818 */
/* { dg-do compile { target bitint } } */
/* { dg-options "-Os -fnon-call-exceptions -finstrument-functions-once" } */
int c, i;
void bar (int *);
#if __BITINT_MAXWIDTH__ >= 129
_BitInt(129) *a;
#else
_BitInt(63) *a;
#endif
void
foo (void)
{
if (c)
return;
int q;
a[i] = 0;
bar (&q);
}