diff options
author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-14 00:44:22 +0000 |
---|---|---|
committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-14 00:44:22 +0000 |
commit | a5637694e4314023be2505a0d0a4aa9178a0d7fb (patch) | |
tree | e54a0b96daa5deaedcf9e8e5bcad444a91458f3b | |
parent | c045d07e2bc001a62e5924442c5cc190d8018a2b (diff) | |
download | gcc-a5637694e4314023be2505a0d0a4aa9178a0d7fb.tar.gz |
* gcc.c-torture/execute/struct-cpy-1.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57126 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/struct-cpy-1.c | 43 |
2 files changed, 47 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5bd1e4032f9..f0be990dbff 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-09-14 Alan Modra <amodra@bigpond.net.au> + + * gcc.c-torture/execute/struct-cpy-1.c: New test. + 2002-09-13 Nathan Sidwell <nathan@codesourcery.com> * g++.dg/template/deduce1.C: New test. diff --git a/gcc/testsuite/gcc.c-torture/execute/struct-cpy-1.c b/gcc/testsuite/gcc.c-torture/execute/struct-cpy-1.c new file mode 100644 index 00000000000..52886feee0f --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/execute/struct-cpy-1.c @@ -0,0 +1,43 @@ +/* powerpc64-linux gcc miscompiled this due to rs6000.c:expand_block_move + not setting mem aliasing info correctly for the code implementing the + structure assignment. */ + +struct termios +{ + unsigned int a; + unsigned int b; + unsigned int c; + unsigned int d; + unsigned char pad[28]; +}; + +struct tty_driver +{ + unsigned char pad1[38]; + struct termios t __attribute__ ((aligned (8))); +}; + +static struct termios zero_t; +static struct tty_driver pty; + +void ini (void) +{ + pty.t = zero_t; + pty.t.a = 1; + pty.t.b = 2; + pty.t.c = 3; + pty.t.d = 4; +} + +int main (void) +{ + extern void abort (void); + + ini (); + if (pty.t.a != 1 + || pty.t.b != 2 + || pty.t.c != 3 + || pty.t.d != 4) + abort (); + return 0; +} |