aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.apple/altivec-5.c
blob: cd9e1888af220bb75bc11c7241ae7650e12ceb04 (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
/* APPLE LOCAL file AltiVec 3840704 */
/* { dg-do compile { target powerpc*-*-* } } */
/* { dg-options "-faltivec" } */
/* { dg-final { scan-assembler-not "stvx" } } */

void *memset(void *, int, unsigned long int);

struct tm 
{
  int tm_sec;
  int tm_min;
  int tm_hour;
  int tm_mday;
  int tm_mon;
  int tm_year;
  int tm_wday;
  int tm_yday;
  int tm_isdst;
  long tm_gmtoff;
  char *tm_zone;
};


int asl_send()
{
  char *str, *out;
  unsigned int i, len, level, outstatus;
  struct tm gtime;

  memset(&gtime, 0, sizeof(struct tm));  /* { dg-warning "disabled" } */
  return 0;
}