aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/mips/r10k-cache-barrier-8.c
blob: 121b907233e768296e304a3a330b51a4d065446a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-options "-mr10k-cache-barrier=store -G8" } */

/* Test that in-range stores to components of static objects
   do not get an unnecessary cache barrier.  */

struct { struct { char i[4]; } a; struct { char j[4]; } b; } s;

NOMIPS16 void
foo (int sel)
{
  s.a.i[0] = 1;
  s.b.j[3] = 100;
}

/* { dg-final { scan-assembler-not "\tcache\t" } } */