* name-lookup.h (lookup_field_1): Delete.
[official-gcc.git] / gcc / testsuite / gcc.target / s390 / insv-3.c
blob0719750e12be5c4801b664cef6b03ffdb9f9199c
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -march=z10 -mzarch" } */
4 /* risbg with z bit would work here but we rather want this to be a shift. */
5 struct
7 int a:31;
8 int b:1;
9 } s;
11 void
12 foo (int in)
14 s.a = in;
15 s.b = 0;
18 /* { dg-final { scan-assembler-not "risbg" } } */