]> andersk Git - splint.git/blame - test/inparam.c
Fixed problem with assertion checking for negative shifts in
[splint.git] / test / inparam.c
CommitLineData
885824d3 1extern unknown (int *x);
2extern inparam (/*@in@*/ int *x);
3
4void f (/*@out@*/ int *x)
5{
6 if (3 > 4)
7 {
15b3d2b2 8 unknown (x); /* x not completely defined */
885824d3 9 }
10 else
11 {
15b3d2b2 12 inparam (x); /* x not completely defined */
885824d3 13 }
14}
This page took 0.119195 seconds and 5 git commands to generate.