aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/ww.c
blob: ea9bcd8edea01352951752286e39c4eca9fe6215 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-additional-options "-std=gnu89" } */

foo (p)
     short *p;
{
  static int *foo;
  *p = 1234;
  *foo = 1234;
}