blob: 757beefc231c1f1ef65b09a3a5e542a33a17609b [file] [log] [blame]
/* { dg-options "-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" } } */