blob: 9e5678981357c971351e7e092ac3f7f3924b1c73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* { dg-options "-mr10k-cache-barrier=store -mno-abicalls" } */
/* Test that in-range stores to the frame are not protected by
cache barriers. */
void bar (int *x);
NOMIPS16 void
foo (int v)
{
int x[0x100000];
bar (x);
x[0x20] = v;
bar (x);
}
/* { dg-final { scan-assembler-not "\tcache\t" } } */
|