aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/nios2/nios2-cache-1.c
blob: 5516a1367cadb607affd1781afc6920181418c4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "ldwio" } } */
/* { dg-final { scan-assembler-not "stwio" } } */

/* Make sure the default behavior is not to generate I/O variants of
   the load and stores to foo.  */

extern volatile int foo;

int
read_foo (void)
{
  return foo;
}

void
write_foo (int x)
{
  foo = x;
}