aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/pr60449_0.c
blob: a430830cbed8235c07c43001be41230a2ac1c581 (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
/* { dg-lto-do link } */

extern int printf (const char *__restrict __format, ...);
typedef long int __time_t;
typedef long int __suseconds_t;

struct timeval
  {
    __time_t tv_sec;
    __suseconds_t tv_usec;
  };

struct timezone
  {
    int tz_minuteswest;
    int tz_dsttime;
  };
typedef struct timezone *__restrict __timezone_ptr_t;

extern int gettimeofday (struct timeval *__restrict __tv, __timezone_ptr_t __tz);

int bar (void)
{
  struct timeval tv;
  struct timezone tz;

  gettimeofday (&tv, &tz);
  printf ("This is from bar %i\n", tz.tz_dsttime);
  return 5;
}