Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / r10k-cache-barrier-8.c
blob121b907233e768296e304a3a330b51a4d065446a
1 /* { dg-options "-mr10k-cache-barrier=store -G8" } */
3 /* Test that in-range stores to components of static objects
4 do not get an unnecessary cache barrier. */
6 struct { struct { char i[4]; } a; struct { char j[4]; } b; } s;
8 NOMIPS16 void
9 foo (int sel)
11 s.a.i[0] = 1;
12 s.b.j[3] = 100;
15 /* { dg-final { scan-assembler-not "\tcache\t" } } */