aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/tst/incr.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/tools/lcc/tst/incr.c')
-rw-r--r--code/tools/lcc/tst/incr.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/code/tools/lcc/tst/incr.c b/code/tools/lcc/tst/incr.c
deleted file mode 100644
index 7af89c6..0000000
--- a/code/tools/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;
-}