URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [mips/] [r10k-cache-barrier-3.c] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "-O2 -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" } } */
Go to most recent revision | Compare with Previous | Blame | View Log