tcc-65816/test/tests/20001024-1.c
2017-06-09 13:52:12 +02:00

35 lines
420 B
C

struct a;
extern int baz (struct a *__restrict x);
struct a {
long v;
long w;
};
struct b {
struct a c;
struct a d;
};
int bar (int x, const struct b *__restrict y, struct b *__restrict z)
{
if (y->c.v || y->c.w != 25000 || y->d.v || y->d.w != 25000)
abort();
}
void foo(void)
{
struct b x;
x.c.v = 0;
x.c.w = 25000;
x.d = x.c;
bar(0, &x, ((void *)0));
}
int main()
{
foo();
exit(0);
}