summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/xstruct.ch
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.chill/xstruct.ch')
-rw-r--r--gdb/testsuite/gdb.chill/xstruct.ch16
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/testsuite/gdb.chill/xstruct.ch b/gdb/testsuite/gdb.chill/xstruct.ch
deleted file mode 100644
index d8471c849aa..00000000000
--- a/gdb/testsuite/gdb.chill/xstruct.ch
+++ /dev/null
@@ -1,16 +0,0 @@
-pottendo: MODULE
-
-<> USE_SEIZE_FILE "xstruct-grt.grt" <>
-SEIZE m_array3;
-SEIZE m_array4;
-
-SYNMODE m_x = STRUCT (i long,
- ar m_array3);
-SYNMODE m_y = STRUCT (i long,
- ar m_array4);
-
-DCL x LONG;
-
-x := 10;
-
-END pottendo;