blob: 32dd78cb584bee27d23fbd81ae28a6ad34076f97 [file] [log] [blame]
/* { dg-options "-mr10k-cache-barrier=store -mabi=64" } */
int x[4];
void bar (void);
/* Test that out-of-range stores to static objects are protected by a
cache barrier. */
NOMIPS16 void
foo (int n)
{
while (n--)
{
x[4] = 1;
bar ();
}
}
/* { dg-final { scan-assembler "\tcache\t" } } */