blob: 2cdec6a68d7f3ff6d3d154953b03a5d9c9fefad5 (
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
|
/* Test for ICE arising from VSX code generation. */
/* { dg-do compile } */
/* { dg-options "-O3 -mcpu=power7" } */
/* { dg-require-effective-target powerpc_vsx_ok } */
struct timeval
{
long tv_sec;
long tv_usec;
};
extern char *bar (struct timeval *);
int *error;
void
foo (void *ptr)
{
struct timeval tm;
long n1, n2;
if (!ptr)
{
*error = 1;
n1 = -1;
n2 = -1;
}
else
{
n1 = 0;
n2 = *error;
}
tm.tv_sec = n1;
tm.tv_usec = n2;
if (*error)
bar (&tm);
}
|