aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/lto/20081210-1_0.c
blob: 8048b26b34ed340598d38e45df297c6927412d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
typedef __UINTPTR_TYPE__ uintptr_t;

extern void srand (uintptr_t);

inline void __attribute__ ((gnu_inline))
foo (uintptr_t seed)
{
 srand (seed * seed);
}

int
main ()
{
 foo (0);
 srand ((uintptr_t) (&foo));
 return 0;
}