ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
ctor
deferred_resn
demangler
enum
forall-pointer-decay
gc_noraii
jacob/cs343-translation
jenkins-sandbox
memory
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
string
with_gc
|
Last change
on this file since 0c7a885 was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago |
|
licencing: seventh groups of files
|
-
Property mode
set to
100644
|
|
File size:
401 bytes
|
| Line | |
|---|
| 1 | // Cforall extensions
|
|---|
| 2 |
|
|---|
| 3 | int * x21 = 0, x22 = 0;
|
|---|
| 4 | int * x21 = 0, x22 = 0;
|
|---|
| 5 |
|
|---|
| 6 | [20] int y1, y2 = { 1, 2, 3 };
|
|---|
| 7 |
|
|---|
| 8 | // designators
|
|---|
| 9 |
|
|---|
| 10 | struct {
|
|---|
| 11 | [int] w;
|
|---|
| 12 | } a = { .w : [2] };
|
|---|
| 13 |
|
|---|
| 14 | struct { int a[3], b; } w [] = { [0].a : {1}, [0].b : 1, [1].a[0] : 2 };
|
|---|
| 15 |
|
|---|
| 16 | struct {
|
|---|
| 17 | int f1, f2, f3;
|
|---|
| 18 | struct { int g1, g2, g3; } f4[4];
|
|---|
| 19 | } v7 = {
|
|---|
| 20 | .f1 : 4,
|
|---|
| 21 | f2 : 3,
|
|---|
| 22 | .f4[2] : {
|
|---|
| 23 | .g1 : 3,
|
|---|
| 24 | g3 : 0,
|
|---|
| 25 | },
|
|---|
| 26 | .f4[3].g3 : 7,
|
|---|
| 27 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.