aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/86.c
blob: 6b0017d0ee931233842d52d08b7bd15315b17c37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-additional-options "-std=gnu89" } */

m32 (a)
     int *a;
{
  a[1] = a[0];
}

m16 (a)
     short *a;
{
  a[1] = a[0];
}


m8 (a)
     char *a;
{
  a[1] = a[0];
}