Two useless/empty bison reductions removed.
[splint-patched.git] / test / deadparam.c
blobf31b430b80c037982fcec5854048a4a7085c9361
1 extern void f (/*@out@*/ char *s);
2 extern void g (/*@special@*/ char *s) /*@allocates s@*/ ;
4 void t (/*@only@*/ char *s1, /*@only@*/ char *s2)
6 free (s1);
7 f (s1);
9 free (s2);
10 g (s2);