Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020729-1.c
blob929b5c361bd0e7537b9e04f4fa5e1c0d867e21d9
1 /* { dg-do compile { target i?86-*-* } } */
2 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
3 /* { dg-options "-O2 -march=k6" } */
5 static inline void *
6 baz (void *s, unsigned long c, unsigned int count)
8 int d0, d1;
9 __asm__ __volatile__ (""
10 : "=&c" (d0), "=&D" (d1)
11 :"a" (c), "q" (count), "0" (count / 4), "1" ((long) s)
12 :"memory");
13 return s;
16 struct A
18 unsigned long *a;
21 inline static void *
22 bar (struct A *x, int y)
24 char *ptr;
26 ptr = (void *) x->a[y >> 12];
27 ptr += y % (1UL << 12);
28 return (void *) ptr;
31 int
32 foo (struct A *x, unsigned int *y, int z, int u)
34 int a, b, c, d, e;
36 z += *y;
37 c = z + u;
38 a = (z >> 12) + 1;
41 b = (a << 12);
42 d = b - z;
43 e = c - z;
44 if (e < d)
45 d = e;
46 baz (bar (x, z), 0, d);
47 z = b;
48 a++;
50 while (z < c);
51 return 0;