blob: a6b53a9ea3483d3581a54d90b2c096571d5ffc1f [file] [log] [blame]
/* { dg-options "-O2 -mr10k-cache-barrier=store -mno-abicalls -mabi=64" } */
/* Test that in-range stores to static objects do not get an unnecessary
cache barrier. */
int x[4];
void bar (void);
NOMIPS16 void
foo (int n)
{
while (n--)
{
x[3] = 1;
bar ();
}
}
/* { dg-final { scan-assembler-not "\tcache\t" } } */