Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / r10k-cache-barrier-3.c
blob9e5678981357c971351e7e092ac3f7f3924b1c73
1 /* { dg-options "-mr10k-cache-barrier=store -mno-abicalls" } */
3 /* Test that in-range stores to the frame are not protected by
4 cache barriers. */
6 void bar (int *x);
8 NOMIPS16 void
9 foo (int v)
11 int x[0x100000];
12 bar (x);
13 x[0x20] = v;
14 bar (x);
17 /* { dg-final { scan-assembler-not "\tcache\t" } } */