aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/pr-5022.ch
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.chill/pr-5022.ch')
-rw-r--r--gdb/testsuite/gdb.chill/pr-5022.ch12
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/testsuite/gdb.chill/pr-5022.ch b/gdb/testsuite/gdb.chill/pr-5022.ch
deleted file mode 100644
index aeaad4e..0000000
--- a/gdb/testsuite/gdb.chill/pr-5022.ch
+++ /dev/null
@@ -1,12 +0,0 @@
-PR_5022: MODULE
- dummy_pr_5022: PROC ();
- END;
- DCL p PTR;
- DCL i INT;
-
- p := NULL;
- dummy_pr_5022 ();
- i := 13;
- p := ->i;
- dummy_pr_5022 ();
-END;