diff options
Diffstat (limited to 'lcc/tst/incr.c')
-rw-r--r-- | lcc/tst/incr.c | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/lcc/tst/incr.c b/lcc/tst/incr.c deleted file mode 100644 index 7af89c6..0000000 --- a/lcc/tst/incr.c +++ /dev/null @@ -1,39 +0,0 @@ -main() {} - -memchar() { - char x, *p; - - &x, &p; - x = *p++; - x = *++p; - x = *p--; - x = *--p; -} - -memint() { - int x, *p; - - &x, &p; - x = *p++; - x = *++p; - x = *p--; - x = *--p; -} - -regchar() { - register char x, *p; - - x = *p++; - x = *++p; - x = *p--; - x = *--p; -} - -regint() { - register int x, *p; - - x = *p++; - x = *++p; - x = *p--; - x = *--p; -} |