diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-08 03:05:52 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-08 03:05:52 +0000 |
commit | 84529bf2e30b42fbfe480fafdc29d615405d5274 (patch) | |
tree | 25d32800eb33a9252ad3b4a829f9052c0027a57c /gcc/testsuite/gcc.c-torture/compile/20030907-1.c | |
parent | 49c438a6ff6e9da099ea8b95ca647339d35748d5 (diff) | |
download | gcc-84529bf2e30b42fbfe480fafdc29d615405d5274.tar.gz |
2003-09-07 Andrew Pinski <pinskia@physics.uc.edu>
PR middle-end/11665
* gcc.c-torture/compile/20030907-1.c: New test.
* g++.dg/init/array11.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71193 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20030907-1.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/20030907-1.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20030907-1.c b/gcc/testsuite/gcc.c-torture/compile/20030907-1.c new file mode 100644 index 00000000000..e362b910284 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/20030907-1.c @@ -0,0 +1,25 @@ +/* PR 11665 + Orgin: jwhite@cse.unl.edu + The problem was in initializer_constant_valid_p, + "for a CONSTRUCTOR, only the last element + of the CONSTRUCTOR was being checked" + (from the email of the patch which fixed this). + This used to ICE because GCC thought gdt_table was a + constant value when it is not. */ + +int x; +struct gdt +{ +unsigned a,b,c,d,e,f; +}; +void f() +{ +struct gdt gdt_table[2]= +{ + { + 0, + ( (((unsigned)(&x))<<(24))&(-1<<(8)) ), + }, +}; +} + |