aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.chill/xstruct.ch
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1999-06-28 23:04:32 +0000
committerJason Molenda <jmolenda@apple.com>1999-06-28 23:04:32 +0000
commit74cf13956febb1f6c8e0f5d5f48814953d41dd28 (patch)
treef06240a34afca06791450a91c8aac297abda27df /gdb/testsuite/gdb.chill/xstruct.ch
parent9cd2c67bacb9aaa7e82457e68e1a6087c8bde928 (diff)
downloadgdb-74cf13956febb1f6c8e0f5d5f48814953d41dd28.zip
gdb-74cf13956febb1f6c8e0f5d5f48814953d41dd28.tar.gz
gdb-74cf13956febb1f6c8e0f5d5f48814953d41dd28.tar.bz2
import gdb-1999-06-28 snapshot
Diffstat (limited to 'gdb/testsuite/gdb.chill/xstruct.ch')
-rw-r--r--gdb/testsuite/gdb.chill/xstruct.ch16
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.chill/xstruct.ch b/gdb/testsuite/gdb.chill/xstruct.ch
new file mode 100644
index 0000000..d8471c8
--- /dev/null
+++ b/gdb/testsuite/gdb.chill/xstruct.ch
@@ -0,0 +1,16 @@
+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;