aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/20080723-1.c
blob: a2ed5bf86dfd8bfa10146afc63c5e8bde9a825d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* { dg-do run } */
/* { dg-options "-O2" } */

extern void abort (void);
extern void exit (int);

static inline __attribute__((always_inline))
void
prefetch (void *x)
{
  asm volatile("prefetcht0 %0" : : "m" (*(unsigned long *)x));
}

struct hlist_head
{
  struct hlist_node *first;
};

struct hlist_node
{
  struct hlist_node *next;
  unsigned long i_ino;
};

struct hlist_node * find_inode_fast(struct hlist_head *head, unsigned long ino)
{
  struct hlist_node *node;

  for (node = head->first;
       node && (prefetch (node->next), 1);
       node = node->next)
    {
      if (node->i_ino == ino)
	break;
    }
  return node ? node : 0;
}

struct hlist_node g2;
struct hlist_node g1 = { &g2 };
struct hlist_head h = { &g1 };

int
main()
{
  if (find_inode_fast (&h, 1) != 0)
    abort ();
  exit (0);
}