aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/dm.c
blob: 37a2e8f4b55f47cad3f82e6262e8fa96089a60d7 (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
/* { dg-additional-options "-std=gnu89" } */

struct dm
{
  unsigned q;
  unsigned r;
};

struct dm
dm (a, b)
     unsigned a, b;
{
  struct dm qr;

  qr.q = a / b;
  qr.r = a % b;
  return qr;
}

main ()
{
  struct dm qr;

  qr = dm (100, 30);
  printf ("%u, %u\n", qr.q, qr.r);
}