Mercurial > hg > CbC > old > device
view test/static.c @ 412:6b3385124e5e arm-self-compile
ARM regsiter var pattern fix.
author | kono |
---|---|
date | Tue, 19 Oct 2004 23:39:42 +0900 |
parents | 096559f07a70 |
children | 0c256ea2a97e |
line wrap: on
line source
f() { static int count = 55; static int count1; printf("%d %d\n",count++,count1++); } main() { f(); f(); return 0; }