2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / r10k-cache-barrier-3.c
blobbe2c7fbd76e597bc19808b6bf2699839af967fb0
1 /* { dg-options "-O2 -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" } } */