]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/complex.c
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / complex.c
CommitLineData
6aba47ca 1/* Copyright 2002, 2003, 2004, 2007 Free Software Foundation, Inc.
55944f3d
MC
2
3 This file is part of GDB.
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or (at
8 your option) any later version.
9
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
19
f1c2644b
DJ
20/* Test taken from GCC. Verify that we can print a structure containing
21 a complex number. */
22
cb9aaed5
MC
23#include <stdlib.h>
24
f1c2644b
DJ
25typedef __complex__ float cf;
26struct x { char c; cf f; } __attribute__ ((__packed__));
27struct unpacked_x { char c; cf f; };
28extern void f4 (struct unpacked_x*);
29extern void f3 (void);
30extern void f2 (struct x*);
31extern void f1 (void);
32int
33main (void)
34{
35 f1 ();
36 f3 ();
37 exit (0);
38}
39
40void
41f1 (void)
42{
43 struct x s;
44 s.f = 1;
45 s.c = 42;
46 f2 (&s);
47}
48
49void
50f2 (struct x *y)
51{
52 if (y->f != 1 || y->c != 42)
53 abort ();
54}
55
56void
57f3 (void)
58{
59 struct unpacked_x s;
60 s.f = 1;
61 s.c = 42;
62 f4 (&s);
63}
64
65void
66f4 (struct unpacked_x *y)
67{
68 if (y->f != 1 || y->c != 42)
69 abort ();
70}