aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/pr-8894.ch
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>1996-02-07 05:54:17 +0000
committerPer Bothner <per@bothner.com>1996-02-07 05:54:17 +0000
commitbb4119f19d963716df10ecbd782c57439c693772 (patch)
tree91f6378f0fd1213706776ffd303305fa82d096fe /gdb/testsuite/gdb.chill/pr-8894.ch
parentec49fc987c60ae5d79d45992f3e196904056503c (diff)
downloadgdb-bb4119f19d963716df10ecbd782c57439c693772.zip
gdb-bb4119f19d963716df10ecbd782c57439c693772.tar.gz
gdb-bb4119f19d963716df10ecbd782c57439c693772.tar.bz2
* pr-8894.exp, pr-8894.ch, pr-8894-grt.ch: New test case.
Diffstat (limited to 'gdb/testsuite/gdb.chill/pr-8894.ch')
-rw-r--r--gdb/testsuite/gdb.chill/pr-8894.ch12
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.chill/pr-8894.ch b/gdb/testsuite/gdb.chill/pr-8894.ch
new file mode 100644
index 0000000..391d56b
--- /dev/null
+++ b/gdb/testsuite/gdb.chill/pr-8894.ch
@@ -0,0 +1,12 @@
+xx: MODULE
+
+<> USE_SEIZE_FILE "pr-8894-grt.grt" <>
+SEIZE m_byte;
+
+SYNMODE m_struct = STRUCT (a, b, c m_byte);
+
+DCL v m_struct;
+
+v.a := 100;
+
+END xx;