|
Last change
on this file since 1472 was 1472, checked in by bird, 21 years ago |
|
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
|
File size:
262 bytes
|
| Line | |
|---|
| 1 | /* PR 11527 */
|
|---|
| 2 | /* { dg-do compile } */
|
|---|
| 3 | /* { dg-options "-std=gnu89" } */
|
|---|
| 4 |
|
|---|
| 5 | typedef struct smrdd_memory_blocks_s
|
|---|
| 6 | {
|
|---|
| 7 | int blocks;
|
|---|
| 8 | int block[];
|
|---|
| 9 | } smrdd_memory_blocks_t;
|
|---|
| 10 |
|
|---|
| 11 | const smrdd_memory_blocks_t smrdd_memory_blocks =
|
|---|
| 12 | {
|
|---|
| 13 | 3,
|
|---|
| 14 | {
|
|---|
| 15 | [5] = 5,
|
|---|
| 16 | [1] = 2,
|
|---|
| 17 | }
|
|---|
| 18 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.