diff options
author | David Taylor <taylor@redhat.com> | 1999-01-04 15:37:21 +0000 |
---|---|---|
committer | David Taylor <taylor@redhat.com> | 1999-01-04 15:37:21 +0000 |
commit | 8e260d5270d6b2228b710ba2dc0b24ad6eb98222 (patch) | |
tree | 2ee753aef4d6179db32b4dffc378a9b6cb7c114e /gdb/testsuite/gdb.base/shmain.c | |
parent | 7cada34aec73e03dbbbb95fbfb07c6fc5c5ed4bb (diff) | |
download | gdb-8e260d5270d6b2228b710ba2dc0b24ad6eb98222.zip gdb-8e260d5270d6b2228b710ba2dc0b24ad6eb98222.tar.gz gdb-8e260d5270d6b2228b710ba2dc0b24ad6eb98222.tar.bz2 |
new files -- part of HP merge.
Diffstat (limited to 'gdb/testsuite/gdb.base/shmain.c')
-rw-r--r-- | gdb/testsuite/gdb.base/shmain.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/shmain.c b/gdb/testsuite/gdb.base/shmain.c new file mode 100644 index 0000000..954c3db --- /dev/null +++ b/gdb/testsuite/gdb.base/shmain.c @@ -0,0 +1,47 @@ +/* A test */ + +#include "ss.h" +#include <stdio.h> + +extern int shr1(); +extern int shr2(); +extern float sg; + +int eglob; + +struct { + int a; + int b; +} s; + +int g; + +int local_structarg(x) +struct s x; +{ + return x.b; +} + +main() +{ + struct s y; + g = 1; + g = shr1(g); + g = shr2(g); + g = mainshr1(g); + sg = 1.1; + printf("address of sg is 0x%x\n", &sg); + y.a = 3; + y.b = 4; + g = local_structarg(y); + g = structarg(y); + g = pstructarg(&y); +} + +int mainshr1(g) +int g; +{ + return 2*g; +} + + |