diff options
author | Jason Molenda <jmolenda@apple.com> | 1999-06-28 23:04:32 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1999-06-28 23:04:32 +0000 |
commit | 74cf13956febb1f6c8e0f5d5f48814953d41dd28 (patch) | |
tree | f06240a34afca06791450a91c8aac297abda27df /gdb/testsuite/gdb.chill/xstruct.ch | |
parent | 9cd2c67bacb9aaa7e82457e68e1a6087c8bde928 (diff) | |
download | gdb-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.ch | 16 |
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; |