diff options
author | gdb-2.4+.aux.coff <gdb@fsf.org> | 1988-01-16 04:39:57 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2012-06-03 15:36:30 +0100 |
commit | 7b4ac7e1ed2c4616bce56d1760807798be87ac9e (patch) | |
tree | 777c9f6aba126e91e4a25d7b1fa34c2213d038da /gdb/testbf.c | |
download | fsf-binutils-gdb-7b4ac7e1ed2c4616bce56d1760807798be87ac9e.zip fsf-binutils-gdb-7b4ac7e1ed2c4616bce56d1760807798be87ac9e.tar.gz fsf-binutils-gdb-7b4ac7e1ed2c4616bce56d1760807798be87ac9e.tar.bz2 |
gdb-2.4+.aux.coff
Diffstat (limited to 'gdb/testbf.c')
-rw-r--r-- | gdb/testbf.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/testbf.c b/gdb/testbf.c new file mode 100644 index 0000000..dd661a0 --- /dev/null +++ b/gdb/testbf.c @@ -0,0 +1,13 @@ +struct foo +{ + int a : 5, : 4, b : 5; + char c; + int : 3, d : 8, : 0, e : 5; +}; + +struct foo x; + +main () +{ + printf (x); +} |