OSDN Git Service

* gcc.dg/compat/generate-random.c (generate_random_data unsafe_state):
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 6 Nov 2004 19:28:43 +0000 (19:28 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 6 Nov 2004 19:28:43 +0000 (19:28 +0000)
Do not use C99 designators.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90188 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/compat/generate-random.c

index 3b420ea..41b771c 100644 (file)
@@ -1,5 +1,10 @@
 2004-11-06  Eric Botcazou  <ebotcazou@libertysurf.fr>
 
+       * gcc.dg/compat/generate-random.c (generate_random_data unsafe_state):
+       Do not use C99 designators.
+
+2004-11-06  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
        * g++.dg/other/pragma-re-1.C (p, q): Fix type and remove cast.
 
 2004-11-06  Eric Botcazou  <ebotcazou@libertysurf.fr>
index cce2185..00c4224 100644 (file)
@@ -175,8 +175,8 @@ static struct generate_random_data unsafe_state =
    in the initialization of randtbl) because the state table pointer is set
    to point to randtbl[1] (as explained below).)  */
 
-    .fptr = &randtbl[SEP_3 + 1],
-    .rptr = &randtbl[1],
+   &randtbl[SEP_3 + 1],  /* fptr */
+   &randtbl[1],          /* rptr */
 
 /* The following things are the pointer to the state information table,
    the type of the current generator, the degree of the current polynomial
@@ -188,13 +188,13 @@ static struct generate_random_data unsafe_state =
    indexing every time to find the address of the last element to see if
    the front and rear pointers have wrapped.  */
 
-    .state = &randtbl[1],
+    &randtbl[1],  /* state */
 
-    .rand_type = TYPE_3,
-    .rand_deg = DEG_3,
-    .rand_sep = SEP_3,
+    TYPE_3,  /* rand_type */
+    DEG_3,   /* rand_deg */
+    SEP_3,   /* rand_sep */
 
-    .end_ptr = &randtbl[sizeof (randtbl) / sizeof (randtbl[0])]
+    &randtbl[sizeof (randtbl) / sizeof (randtbl[0])]  /* end_ptr */
 };
 \f
 /* Initialize the random number generator based on the given seed.  If the