Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / bitint-6.c
blobf4d7366348b591253bf7ffffb7fd12a44f2aa3e6
1 /* PR c/102989 */
2 /* { dg-do compile { target bitint } } */
3 /* { dg-options "-std=c2x -pedantic-errors" } */
5 int *q, *r, *s;
7 void
8 foo (int *p)
10 p[4wb] = 0;
11 6wb[p] = 0;
12 q = p + 8wb;
13 r = 10uwb + q;
14 s = r - 2wb;