aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/ChangeLog
blob: 523b7628da9bdfcc078712fbad4518242a008273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
2000-09-12  Alexandre Oliva  <aoliva@redhat.com>

	* g++.other/inline13.C: New test.
 
2000-09-12  Andreas Jaeger  <aj@suse.de>

	* gcc.c-torture/execute/widechar-2.c: New test for wchar_t
	constant by Ulrich Drepper <drepper@redhat.com>.

Tue Sep 12 18:32:07 2000  J"orn Rennecke <amylaar@redhat.co.uk>

	* gcc.c-torture/compile/981006-1.x: No -fpic for sh-coff / sh-hms.

2000-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/wtr-union-init-2.c, gcc.dg/wtr-union-init-3.c: New tests.

2000-09-11  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/backslash.c: New test.

2000-09-11  Alexandre Oliva  <aoliva@redhat.com>

	* gcc.c-torture/execute/20000910-1.c: New test.
	* gcc.c-torture/execute/20000910-2.c: Likewise.

2000-09-11  Robert Lipe  <robertl@sco.com>
	
	* gcc.dg/pragma-align.c: New test.

2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/explicit82.C: New test.
	* g++.old-deja/g++.pt/explicit83.C: New test.

2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/asm-names.c: New test.

2000-09-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/cpp/tr-warn6.c: New test

2000-09-07  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/format-ext-3.c: Test %#b and %#h as formats that should
	be accepted.

2000-09-07  Catherine Moore  <clm@redhat.com>

        * gcc.c-torture/execute/unroll-1.c: New test.

2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>

	* g++.old-deja/g++.benjamin/13478.C: Put meaningful tags on
	ERROR markers.
	* g++.old-deja/g++.brendan/crash8.C: Move ERROR marker up one line.
	* gcc.dg/c99-array-nonobj-1.c: Don't expect func[] cases to fail.
	* gcc.dg/wtr-label-1.c: Don't use unconstrained .* in error regexps.
	* gcc.dg/wtr-suffix-1.c: Correct error regexps.
	* gcc.dg/cpp/unc1.c, gcc.dg/cpp/unc2.c, gcc.dg/cpp/unc3.c:
	Preprocess only.
	* gcc.dg/cpp/unc4.c: Adjust line number in dg-error line.
	* gcc.dg/noncompile/const-ll-1.c: Generalize error regexp.

2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/deduct2.C: New test.

2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/parms2.C: New test.

2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/crash58.C: New test.

2000-09-06  Greg McGary  <greg@mcgary.org>

	* gcc.c-torture/20000906.c: New test.
	* gcc.c-torture/20000906.x: Expect failure for ix86 at `-O2'.

2000-09-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/wtr-int-type-1.c: Fix for 64-bit platforms.

2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/crash57.C: New test.

2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/crash56.C: New test.

2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/koenig1.C: New test.

2000-09-04  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/20000904-1.c: New test.

2000-09-04  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/cpp/paste8.c: New test.

2000-09-01  Alexandre Oliva  <aoliva@redhat.com>

	* gcc.c-torture/compile/20000827-1.c: New test.

2000-09-01  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/format-diag-1.c: New test.

2000-09-01  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-printf-1.c, gcc.dg/c90-printf-2.c,
	gcc.dg/c90-scanf-1.c, gcc.dg/c90-scanf-2.c, gcc.dg/c99-printf-1.c,
	gcc.dg/c99-scanf-1.c, gcc.dg/format-ext-1.c,
	gcc.dg/format-ext-2.c, gcc.dg/format-xopen-1.c,
	gcc.dg/formatz-1.c: Adjust warning regular expressions.

2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/nested4.C: New test.

2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.ns/scoped1.C: New test.

2000-08-30  Alexandre Oliva  <aoliva@redhat.com>

	* lib/g++.exp: Support testing already-installed GCC.

2000-08-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* wtr-label-1.c, wtr-suffix-1.c: New tests.

2000-08-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/return-type-2.c: New test.

2000-08-27  Geoff Keating  <geoffk@cygnus.com>

	* gcc.c-torture/compile/20000825-1.c: New test.

2000-08-26  Alexandre Oliva  <aoliva@redhat.com>

	* gcc.dg/dwarf2-2.c: New test.

2000-08-26  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/tr-warn4.c: Remove unconstrained .* from
	dg-warning regexps.

2000-08-25  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/format-ext-3.c, gcc.dg/format-ext-4.c,
	gcc.dg/format-ext-5.c: New tests.

2000-08-25  Jakub Jelinek  <jakub@redhat.com>

	* testsuite/g++.old-deja/g++.other/crash22.C: New test.

2000-08-24  Mark Mitchell  <mark@codesourcery.com>

	* gcc.dg/noncompile/930622-2.c: Adjust error message.

2000-08-24  Richard Henderson  <rth@cygnus.com>

	* gcc.dg/ia64-sync-1.c: New test.
	* gcc.dg/ia64-sync-2.c: New test.
	* gcc.dg/ia64-asm-1.c: New test.

2000-08-24  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c99-scanf-2.c: Remove test for scanf "Z" length.
	* gcc.dg/format-ext-2.c: New test.

2000-08-23  Jason Merrill  <jason@redhat.com>

	* lib/old-dejagnu.exp: Also ignore "In member function" and
	"At global scope".

2000-08-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/noncompile/label-lineno-1.c: New test.

2000-08-23  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c99-array-nonobj-1.c: New test.

2000-08-23  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c99-printf-2.c, gcc.dg/format-xopen-1.c: Add some more
	tests.
	* gcc.dg/format-ext-1.c: New test.

2000-08-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/cpp/tr-warn4.c, gcc.dg/cpp/tr-warn5.c,
	gcc.dg/wtr-aggr-init-1.c, gcc.dg/wtr-escape-1.c,
	gcc.dg/wtr-int-type-1.c, gcc.dg/wtr-static-1.c,
	gcc.dg/wtr-strcat-1.c, gcc.dg/wtr-switch-1.c,
	gcc.dg/wtr-unary-plus-1.c, gcc.dg/wtr-union-init-1.c: New tests.

2000-08-22  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-strftime-2.c, gcc.dg/c99-strftime-1.c,
	gcc.dg/c99-strftime-2.c: New tests.

2000-08-22  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000822-1.c: New test.

2000-08-21  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/20000819-1.x: Remove.

2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-printf-3.c, gcc.dg/c90-scanf-2.c,
	gcc.dg/c90-scanf-3.c, gcc.dg/c90-scanf-4.c,
	gcc.dg/c90-strftime-1.c, gcc.dg/c99-printf-3.c,
	gcc.dg/c99-scanf-1.c, gcc.dg/c99-scanf-2.c, gcc.dg/c99-scanf-3.c,
	gcc.dg/format-xopen-1.c: New tests.

2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-scanf-1.c, gcc.dg/c94-scanf-1.c: New tests.

2000-08-21  Jakub Jelinek  <jakub@redhat.com>

	* g++.old-deja/g++.other/loop2.C: New test.

	* gcc.c-torture/compile/20000606-1.c: New test.
	* gcc.c-torture/compile/20000728-1.c: New test.
	* gcc.c-torture/execute/20000801-1.c: New test.
	* gcc.c-torture/execute/20000801-2.c: New test.
	* gcc.c-torture/execute/20000819-1.c: New test.
	* gcc.c-torture/execute/20000819-1.x: XFAIL.
	* gcc.dg/20000629-1.c: New test.
	* gcc.dg/20000724-1.c: New test.
	* gcc.dg/20000807-1.c: New test.

Sun Aug 20 01:41:35 MSD 2000 Dennis Chernoivanov <cdi@sparc.spb.su>

	* gcc.dg/cpp/pragma-1.c: New test.
	* gcc.dg/cpp/pragma-2.c: New test.

2000-08-18  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/lexstrng.c: Don't include string.h.
	* gcc.dg/cpp/paste2.c: Don't include string.h.  Prototype strcmp.

Fri Aug 18 16:57:35 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>

	* gcc.c-torture/compile/20000818-1.c: New test.

2000-08-18  Manfred Hollstein  <manfredh@redhat.com>

	* gcc.c-torture/execute/20000818-1.c: New test.

2000-08-18  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/format-va-1.c: New test.

2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/typedef8.C: New test.

2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.benjamin/13478.C: Mark candidate.
	* g++.old-deja/g++.mike/net36.C: Mark candidate.
	* g++.old-deja/g++.robertl/eb131.C: Mark candidate.
	* g++.old-deja/g++.oliva/overload1.C: Remove XFAIL.
	* g++.old-deja/g++.other/ptrmem7.C: New test.
	* g++.old-deja/g++.pt/ptrmem10.C: New test.

2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/typename27.C: New test.

2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/crash44.C: Remove XFAIL. Add ERROR.
	* g++.old-deja/g++.pt/friend38.C: Remove XFAIL. Add extra test.
	* g++.old-deja/g++.pt/friend45.C: New test.
	* g++.old-deja/g++.other/friend8.C: New test.

2000-08-15  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000815-1.c: New test.

2000-08-15  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-array-lval-2.c, gcc.dg/c90-const-expr-2.c,
	gcc.dg/c99-array-lval-2.c, gcc.dg/c99-const-expr-2.c,
	gcc.dg/c99-func-3.c, gcc.dg/c99-func-4.c: New tests.

2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/refinit2.C: New test.

2000-08-13  Geoff Keating  <geoffk@cygnus.com>

	* lib/c-torture.exp (c-torture): Make
	compiler_conditional_xfail_data global.
	* lib/f-torture.exp (f-torture): Add in torture_eval_before_compile,
	compiler_conditional_xfail_data machinery.
	(f-torture-execute): Likewise.
	* g77.c-torture/compile/20000629-1.x: The test only fails on x86,
	and only when unrolling loops.

	* gcc.dg/c99-array-lval-1.c: The test on line 14 now passes.

2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/explicit81.C: New test.

2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/typename26.C: New test.

2000-08-10  Geoff Keating  <geoffk@cygnus.com>

	* gcc.dg/920413-1.c: Allow for 'traditional C rejects 'U' suffix'
	warning.

2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/array3.C: New test.

2000-08-09  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-array-lval-1.c, gcc.dg/c90-scope-1.c,
	gcc.dg/c99-array-lval-1.c, gcc.dg/c99-const-expr-1.c,
	gcc.dg/c99-func-1.c, gcc.dg/c99-func-2.c, gcc.dg/c99-scope-1.c:
	New tests.

2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.abi/ptrflags.C: Adjust rtti member names.
	* g++.old-deja/g++.abi/vmihint.C: Likewise.

2000-08-09  Alexandre Oliva  <aoliva@redhat.com>

	* gcc.c-torture/execute/20000808-1.c: New test.

2000-08-09  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-const-expr-1.c: New test.

2000-08-08  Richard Henderson  <rth@cygnus.com>

	* gcc.dg/noncompile/920923-1.c: Declare calloc.

2000-08-08  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/noncompile/const-ll-1.c: New test.

2000-08-07  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-printf-2.c, gcc.dg/c99-printf-2.c: New tests.

Sun Aug  6 11:41:51 2000  Ovidiu Predescu  <ovidiu@cup.hp.com>

	* lib/objc.exp (objc_target_compile): Set the ld_library_path so
	that running programs linked against the shared version of libobjc
	run correctly.

2000-08-06  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c99-printf-1.c: New test.

2000-08-06  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.c-torture/execute/20000801-4.x: Only xfail on x86.

2000-08-05  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.c-torture/execute/20000731-1.x: Delete.

2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>

	* lib/gcc-dg.exp: Set up TORTURE_OPTIONS, torture_with_loops,
	and torture_without_loops as is done by c-torture.exp.
	(search_for): Copy from c-torture.exp.
	(gcc-dg-runtest): New function, drives a directory of tests
	iterating over the TORTURE_OPTIONS.
	(scan-assembler, scan-assembler-not): Move here from
	individual directory drivers.

	* gcc.dg/dg.exp: scan-assembler, scan-assembler-not now
	defined by lib/gcc-dg.exp.
	* gcc.dg/cpp/cpp.exp: Likewise.
	* gcc.dg/noncompile/noncompile.exp: Likewise.  Use
	gcc-dg-runtest, so we cycle over optimization options.

	* gcc.dg/cpp/20000625-2.c: Expect warning on line 8, not 9.
	* gcc.dg/compare2.c: No longer expected to fail.

Fri Aug  4 23:00:50 2000  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.c-torture/execute/20000804-1.c: New test.

2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-printf-1.c, gcc.dg/c94-printf-1.c: New tests.

2000-08-03  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/20000625-2.c: Don't expect a warning on line 4.

Thu Aug  3 01:46:33 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000803-1.c: New test.

2000-08-03  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.c-torture/execute/20000801-3.c,
	gcc.c-torture/execute/20000801-4.c: New tests.
	* gcc.c-torture/execute/20000801-3.x,
	gcc.c-torture/execute/20000801-4.x: Xfail.

2000-08-02  Geoff Keating  <geoffk@cygnus.com>

	* lib/objc.exp (objc_target_compile): Look for libobjc.a in
	libobjc/.libs to allow for libtool.

2000-08-02  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/compile/20000802-1.c: New test.

2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/macsyntx.c: Fix error regexp.

Mon Jul 31 21:14:49 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc-c-torture/execute/20000731-2.c: New test.

	* gcc.c-torture/execute/20000731-1.c: New test.
	* gcc.c-torture/execute/20000731-1.x: Expected to fail for i?86-*-*.

2000-07-31  Jakub Jelinek  <jakub@redhat.com>

	* testsuite/gcc.dg/cpp/paste7.c: New test.
	* gcc.dg/cpp/20000725-1.c: New test.

2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/c90-digraph-1.c: Restore { dg-do run } marker.
	* gcc.dg/noncompile/990416-1.c: Do not expect an implicit-
	declaration warning for __builtin_dwarf_reg_size.

	* gcc.dg/c99-impl-decl-1.c: No longer XFAIL.

2000-07-31  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/noncompile/voidparam-1.c: New test.

2000-07-30  Richard Henderson  <rth@cygnus.com>

	* gcc.dg/c90-digraph-1.c: Don't xfail.
	* gcc.dg/compare2.c (case 10): Xfail.
	* gcc.dg/noncompile/redecl-1.c: Fix expected error message.

2000-07-27  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c99-main-1.c: New test.

2000-07-25  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/c90-impl-int-2.c, gcc.dg/c99-impl-int-2.c: New tests.

Wed Jul 26 19:41:51 2000  Hans-Peter Nilsson  <hp@axis.com>

	* gcc.c-tortuer/execute/20000726-1.c: New test.

2000-07-26  Alexandre Oliva  <aoliva@redhat.com>

	* gcc.c-torture/execute/enum-2.c: New test.

2000-07-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/cpp/tr-warn3.c: New test.

2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.ext/implicit1.C: Remove.
	* g++.old-deja/g++.jason/c2.C: Remove
	* g++.old-deja/g++.mike/p700.C: Add prototype parameters.
	* g++.old-deja/g++.pt/crash16.C: Likewise.
	* g++.old-deja/g++.brendan/crash43.C: Remove -fstrict-prototype.

2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/for2.C: New test.

2000-07-25  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/20000720-1.c: New test.

2000-07-25  Toon Moene  <toon@moene.indiv.nluug.nl>

	* g77.f-torture/compile/20000630-2.x: Removed.  Case fixed.

2000-07-24  Geoff Keating  <geoffk@cygnus.com>

	* gcc.c-torture/execute/20000722-1.x: New, testcase fails.
	* gcc.c-torture/execute/20000722-1.c: New.
	* gcc.c-torture/execute/20000516-1.c: Delete, replaced by 20000722-1.

2000-07-24  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/cpp/20000720-1.S: New test.

2000-07-21  Michael Meissner  <meissner@redhat.com>

	* gcc.c-torture/execute/ieee/hugeval.c: New test.

2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>

	* g++.old-deja/g++.brendan/crash16.C,
	g++.old-deja/g++.brendan/parse3.C,
	g++.old-deja/g++.brendan/redecl1.C,
	g++.old-deja/g++.ns/template13.C,
	g++.old-deja/g++.other/decl4.C,
	g++.old-deja/g++.pt/spec14.C: Mark as crash test, expected to fail.

2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>

	* lib/old-dejagnu.exp: Check for both "Internal compiler error"
	and "Internal error".

	* gcc.dg/cpp/20000625-2.c, gcc.dg/cpp/macsyntx.c: Update error
	regexps.
	* gcc.dg/cpp/paste6.c: New test.

2000-07-19  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/tr-direct.c: New test.

	* gcc.dg/cpp/directiv.c, gcc.dg/cpp/macsyntx.c,
	gcc.dg/cpp/undef1.c: Tweak error regexps.

2000-07-18  Eric Christopher <echristo@redhat.com>

	* gcc.c-torture/compile/20000718-1.c: New test.

2000-07-18  Zack Weinberg  <zack@wolery.cumb.org>

	* cpplex.c (_cpp_push_token): If the token being pushed back
	is the previous token in this context, just subtract one from
	context->posn.
	* cppmacro.c (save_expansion): Clear aux field when storing a
	placemarker.

2000-07-18  Alexandre Oliva  <aoliva@redhat.com>

	* gcc.dg/noncompile/redecl-1.c: New test.

2000-07-18  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/20000717-5.c: New test.
	* gcc.c-torture/execute/20000717-1.x: Removed.

2000-07-17  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000717-4.c: New test.

2000-07-17  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/syshdr.c: New test.
	* gcc.dg/cpp/syshdr1.h, gcc.dg/cpp/syshdr2.h: New files.

2000-07-17  Neil Booth  <neilb@earthling.net>

	* gcc.dg/cpp/cmdlne-dM.c: New test.
	* gcc.dg/cpp/cmdlne-dD.c: New test.

Mon Jul 17 03:13:12 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000717-3.c: New test.

	* gcc.c-torture/compile/20000717-1.c: New test.

2000-07-17  Geoffrey Keating  <geoffk@cygnus.com>

	* gcc.c-torture/execute/20000717-2.c: New test.

2000-07-17  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/formatz-1.c: New test.

	* gcc.dg/c90-digraph-1.c, gcc.dg/c94-digraph-1.c,
	* gcc.dg/c99-digraph-1.c: New tests.

	* gcc.dg/c90-hexfloat-1.c, gcc.dg/c90-hexfloat-2.c,
	* gcc.dg/c99-hexfloat-1.c, gcc.dg/c99-hexfloat-2.c: New tests.

	* gcc.dg/c90-enum-comma-1.c, gcc.dg/c90-idem-qual-1.c,
	* gcc.dg/c90-impl-decl-1.c, gcc.dg/c90-impl-int-1.c,
	* gcc.dg/c90-longlong-1.c, gcc.dg/c90-restrict-1.c,
	* gcc.dg/c90-return-1.c, gcc.dg/c99-enum-comma-1.c,
	* gcc.dg/c99-idem-qual-1.c, gcc.dg/c99-impl-decl-1.c,
	* gcc.dg/c99-impl-int-1.c, gcc.dg/c99-longlong-1.c,
	* gcc.dg/c99-restrict-1.c, gcc.dg/c99-return-1.c: New tests.

Mon Jul 17 00:41:57 2000   Greg McGary <greg@mcgary.org>

	* gcc.c-torture/execute/20000717-1.c: New test.
	* gcc.c-torture/execute/20000717-1.x: Expected to fail.

2000-07-15  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/20000715-2.c: New test.
	* gcc.dg/20000715-1.c: New test.

2000-07-15  Michael Meissner  <meissner@redhat.com>

	* gcc.c-torture/execute/20000715-1.c: New test.

2000-07-13  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/20000707-1.c: New test.

2000-07-13  Neil Booth  <NeilB@earthling.net>

	* testsuite/gcc.dg/cpp/digraph1.c,
	testsuite/gcc.dg/cpp/digraph2.c,
	testsuite/gcc.dg/cpp/digraphs.c: New tests.

2000-07-12  David Billinghurst  <David Billinghurst@riotinto.com.au>

	* g77.f-torture/compile/20000630-2.f:  New test.
	* g77.f-torture/compile/20000630-2.x

2000-07-11  David Billinghurst  <David.Billinghurst@riotinto.com.au>

	* g77.f-torture/execute/20000503-1.x: Delete.  Test now passes.

2000-07-11  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp/cmdlne-C.c: Fix typo.

2000-07-11  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp/cmdlne-C.c: New.

2000-07-09  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp/directiv.c: New tests.
	* gcc.dg/cpp/undef1.c: Update.

2000-07-08  Angela Marie Thomas <angela@cygnus.com>

	* lib/c-torture.exp: Make compiler_conditional_xfail_data global.

2000-07-09  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp/macsyntx.c: Add test for #define defined.

2000-07-07  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/19951227-1.c, gcc.dg/cpp/assert2.c,
	gcc.dg/cpp/if-1.c, gcc.dg/cpp/if-4.c: Tweak error regexps.

2000-07-08  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp/macsyntx.c: New tests.

2000-07-07  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/20000707-1.c: New test.

2000-07-07  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/20000706-1.c: New test.
	* gcc.c-torture/execute/20000706-2.c: New test.
	* gcc.c-torture/execute/20000706-3.c: New test.
	* gcc.c-torture/execute/20000706-4.c: New test.
	* gcc.c-torture/execute/20000706-5.c: New test.

2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/instantiate7.C: New test.

2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.mike/thunk2.C: Add return 0.
	* g++.old-deja/g++.mike/thunk3.C: Likewise.
	* g++.old-deja/g++.other/rtti3.C: Likewise.
	* g++.old-deja/g++.other/rttid3.C: Likewise.

2000-06-30  David Billinghurst  <David Billinghurst@riotinto.com.au>

	*  g77.f-torture/compile/20000630-1.x: Fix typo

2000-07-05  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/ident.c: Don't expect #ident strings in the
	assembly output.

2000-07-04  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/ident.c: New test.

2000-07-05  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp/lexident.c, gcc.dg/cpp/lexnum.c,
	  gcc.dg/cpp/lexstrng.c: New tests.

2000-07-04  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp/macro1.c: Add more macro expansion tests.
	* gcc.dg/cpp/strify2.c: Same.

2000-07-03  Zack Weinberg  <zack@wolery.cumb.org>

	* testsuite/gcc.dg/cpp/19951025-1.c: Adjust regexps.
	* testsuite/gcc.dg/cpp/19990703-1.c: Likewise.
	* testsuite/gcc.dg/cpp/20000625-1.c: Likewise.
	* testsuite/gcc.dg/cpp/20000625-2.c: Likewise.

	* testsuite/gcc.dg/cpp/macro1.c,
	testsuite/gcc.dg/cpp/paste1.c, testsuite/gcc.dg/cpp/paste2.c,
	testsuite/gcc.dg/cpp/paste3.c, testsuite/gcc.dg/cpp/paste4.c,
	testsuite/gcc.dg/cpp/strify1.c,
	testsuite/gcc.dg/cpp/strify2.c: New tests.

2000-07-03  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/20000703-1.c: New test.

2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt (lookup10.C): New test.

2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt (typename25.C): New test.

2000-07-02  Zack Weinberg  <zack@wolery.cumb.org

	* gcc.c-torture/compile/20000701-1.c: New test.

2000-06-30  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/compile/20000629-1.c: Add second, reversed, loop
	to test case.

2000-06-30  Catherine Moore  <clm@cygnus.com>

	* gcc.c-torture/execute/align-1.c: New test.

2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/expr8.C: New test.
	* g++.old-deja/g++.pt/expr6.C: Remove XFAIL.

2000-06-29  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/compile/20000629-1.c: New test.

2000-06-29  Zack Weinberg  <zack@wolery.cumb.org>


	Move the c-torture/noncompile tests to either gcc.dg/cpp or a new
	gcc.dg/noncompile directory, depending on whether they're
	preprocessor tests or not.  Annotate all the tests for the dg
	framework.

	* gcc.c-torture/noncompile/noncompile.exp: Delete.
	* gcc.dg/noncompile/noncompile.exp: New.

	* Moved files:
	Old name				New name
	gcc.c-torture/noncompile/920507-1.c	gcc.dg/noncompile/920507-1.c
	gcc.c-torture/noncompile/920616-2.c	gcc.dg/noncompile/920616-2.c
	gcc.c-torture/noncompile/920721-2.c	gcc.dg/noncompile/920721-2.c
	gcc.c-torture/noncompile/920824-1.c	gcc.dg/noncompile/920824-1.c
	gcc.c-torture/noncompile/920923-1.c	gcc.dg/noncompile/920923-1.c
	gcc.c-torture/noncompile/921102-1.c	gcc.dg/noncompile/921102-1.c
	gcc.c-torture/noncompile/921116-1.c	gcc.dg/noncompile/921116-1.c
	gcc.c-torture/noncompile/930301-1.c	gcc.dg/noncompile/930301-1.c
	gcc.c-torture/noncompile/930622-1.c	gcc.dg/noncompile/930622-1.c
	gcc.c-torture/noncompile/930622-2.c	gcc.dg/noncompile/930622-2.c
	gcc.c-torture/noncompile/930714-1.c	gcc.dg/noncompile/930714-1.c
	gcc.c-torture/noncompile/931203-1.c	gcc.dg/noncompile/931203-1.c
	gcc.c-torture/noncompile/940112-1.c	gcc.dg/noncompile/940112-1.c
	gcc.c-torture/noncompile/940227-1.c	gcc.dg/noncompile/940227-1.c
	gcc.c-torture/noncompile/940510-1.c	gcc.dg/noncompile/940510-1.c
	gcc.c-torture/noncompile/950825-1.c	gcc.dg/noncompile/950825-1.c
	gcc.c-torture/noncompile/950921-1.c	gcc.dg/noncompile/950921-1.c
	gcc.c-torture/noncompile/951123-1.c	gcc.dg/noncompile/951123-1.c
	gcc.c-torture/noncompile/971104-1.c	gcc.dg/noncompile/971104-1.c
	gcc.c-torture/noncompile/990416-1.c	gcc.dg/noncompile/990416-1.c
	gcc.c-torture/noncompile/init-1.c	gcc.dg/noncompile/init-1.c
	gcc.c-torture/noncompile/init-2.c	gcc.dg/noncompile/init-2.c
	gcc.c-torture/noncompile/invalid_asm.c	gcc.dg/noncompile/invalid_asm.c
	gcc.c-torture/noncompile/va-arg-1.c	gcc.dg/noncompile/va-arg-1.c

	gcc.c-torture/noncompile/940712-1.c	gcc.dg/cpp/19940712-1.c
	gcc.c-torture/noncompile/940712-1.h	gcc.dg/cpp/19940712-1.h
	gcc.c-torture/noncompile/940712-1a.h	gcc.dg/cpp/19940712-1a.h
	gcc.c-torture/noncompile/940712-1b.h	gcc.dg/cpp/19940712-1b.h
	gcc.c-torture/noncompile/951025-1.c	gcc.dg/cpp/19951025-1.c
	gcc.c-torture/noncompile/951227-1.c	gcc.dg/cpp/19951227-1.c

2000-06-29  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp/20000628-1a.h: On each of the first three inclusions,
	declare one variable.  On the fourth, error.
	* gcc.dg/cpp/20000628-1.c (main): Reference the three variables
	declared by 20000628-1a.h.

2000-06-29  Richard Henderson  <rth@redhat.com>

	* gcc.c-torture/execute/930529-1.x: New file.
	* gcc.dg/920413-1.c: Adjust expected warning text.
	* gcc.dg/980217-1.c: Declare abort.
	* gcc.dg/cpp/20000628-1a.h: Use a declaration instead of an asm.

Thu Jun 29 09:42:40 2000  Jeffrey A Law  (law@cygnus.com)

	* g77.f-torture/compile/20000629-1.f: New test.
	* g77.f-torture/compile/20000629-1.x: Expected to fail.

2000-06-28  Zack Weinberg  <zack@wolery.cumb.org>

	Rearrange lots of files, removing entirely the
	gcc.c-torture/special, gcc.c-torture/code_quality, and gcc.failure
	directories.

	* Deleted files:
	gcc.c-torture/code_quality/code_quality.exp
	gcc.c-torture/special/special.exp
	gcc.failure/failure.exp
	gcc.failure/940409-1.x
	gcc.c-torture/compile/961203-1.x

	* New files:
	gcc.misc-tests/linkage.exp
	gcc.c-torture/execute/920730-1t.c
	gcc.c-torture/execute/920730-1t.x
	gcc.c-torture/compile/920520-1.x
	gcc.c-torture/compile/920521-1.x
	gcc.c-torture/compile/981006-1.x
	gcc.c-torture/execute/eeprof-1.x

	* Moved files (possibly with modifications to fit a new harness):
	Old name				New name
	gcc.c-torture/code_quality/920608-1.c	gcc.c-torture/compile/920608-1.c
	gcc.c-torture/special/920413-1.c	gcc.dg/920413-1.c
	gcc.c-torture/special/920520-1.c	gcc.c-torture/compile/920520-1.c
	gcc.c-torture/special/920521-1.c	gcc.c-torture/compile/920521-1.c
	gcc.c-torture/special/920717-x.c	gcc.misc-tests/linkage-x.c
	gcc.c-torture/special/920717-y.c	gcc.misc-tests/linkage-y.c
	gcc.c-torture/special/920730-1.c	gcc.c-torture/execute/920730-1.c
	gcc.c-torture/special/930510-1.c	gcc.dg/cpp/19930510-1.c
	gcc.c-torture/special/951130-1.c	gcc.dg/951130-1.c
	gcc.c-torture/special/960224-1.c	gcc.dg/cpp/19960224-1.c
	gcc.c-torture/special/960224-2.c	gcc.dg/cpp/19960224-2.c
	gcc.c-torture/special/981006-1.c	gcc.c-torture/compile/981006-1.c
	gcc.c-torture/special/eeprof-1.c	gcc.c-torture/execute/eeprof-1.c
	gcc.failure/940409-1.c			gcc.dg/940409-1.c

2000-06-28  Zack Weinberg  <zack@wolery.cumb.org>

	* c-torture/compile/961203-1.x: Delete.

	* gcc.misc-tests/acker1.c: Report failure.  Use return from main,
	not exit. Include stdio.h.
	* gcc.misc-tests/dg-11.c: Remove anchors from regexp.
	* gcc.misc-tests/dg-12.c: Likewise.
	* gcc.misc-tests/dg-5.c: Likewise.
	* gcc.misc-tests/dg-6.c: Likewise.
	* gcc.misc-tests/dg-7.c: Prototype abort.
	* gcc.misc-tests/dg-9.c: Adjust error-message regexps.
	* gcc.misc-tests/dhry.h: Include stdlib.h and string.h.
	* gcc.misc-tests/matrix1.c: Report failure.  Use return from main,
	not exit.
	* gcc.misc-tests/sieve.c: Use return from main, not exit.
	* gcc.misc-tests/sort2.c: Use return from main, not exit.

2000-06-28  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/cpp/20000628-1.c: New test.
	* gcc.dg/cpp/20000628-1.h: New header for above test.
	* gcc.dg/cpp/20000628-1a.h: Likewise.

2000-06-27  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp: New directory.
	* gcc.dg/cpp/cpp.exp: New driver.
	* gcc.dg/cpp/20000627-1.c: New test.
	* gcc.c-torture/special/special.exp: Remove entry for 921210-1.c.
	* gcc.c-torture/special/921210-1.c: Move to gcc.dg/cpp/19921210-1.c
	and rewrite as a compilation test.

	* gcc.dg: Move many files into the cpp subdirectory, possibly
	renaming or editing them as well.
	Old name		New name
	990119-1.c		cpp/19990119-1.c
	990228-1.c		cpp/19990228-1.c
	990407-1.c		cpp/19990407-1.c
	990409-1.c		cpp/19990409-1.c
	990413-1.c		cpp/19990413-1.c
	990703-1.c		cpp/19990703-1.c
	20000127-1.c		cpp/20000127-1.c
	20000129-1.c		cpp/20000129-1.c
	20000207-1.c		cpp/20000207-1.c
	20000207-2.c		cpp/20000207-2.c
	20000209-1.c		cpp/20000209-1.c
	20000209-2.c		cpp/20000209-2.c
	20000301-1.c		cpp/20000301-1.c
	20000419-1.c		cpp/20000419-1.c
	20000510-1.S		cpp/20000510-1.S
	20000519-1.c		cpp/20000519-1.c
	20000529-1.c		cpp/20000529-1.c
	20000625-1.c		cpp/20000625-1.c
	20000625-2.c		cpp/20000625-2.c
	cpp-as1.c		cpp/assert1.c
	cpp-as2.c		cpp/assert2.c
	cxx-comments-1.c	cpp/cxxcom1.c
	cxx-comments-2.c	cpp/cxxcom2.c
	endif-label.c		cpp/endif.c
	cpp-hash1.c		cpp/hash1.c
	cpp-hash2.c		cpp/hash2.c
	cpp-if1.c		cpp/if-1.c
	cpp-if2.c		cpp/if-2.c
	cpp-if3.c		cpp/if-3.c
	cpp-if4.c		cpp/if-4.c
	cpp-if5.c		cpp/if-5.c
	cpp-cond.c		cpp/if-cexp.c
	cpp-missingop.c		cpp/if-mop.c
	cpp-missingparen.c	cpp/if-mpar.c
	cpp-opprec.c		cpp/if-oppr.c
	cpp-ifparen.c		cpp/if-paren.c
	cpp-shortcircuit.c	cpp/if-sc.c
	cpp-shift.c		cpp/if-shift.c
	cpp-unary.c		cpp/if-unary.c
	cpp-li1.c		cpp/line1.c
	cpp-li2.c		cpp/line2.c
	lineno.c		cpp/line3.c
	lineno-2.c		cpp/line4.c
	cpp-mi.c		cpp/mi1.c
	cpp-mic.h		cpp/mi1c.h
	cpp-micc.h		cpp/mi1cc.h
	cpp-mind.h		cpp/mi1nd.h
	cpp-mindp.h		cpp/mi1ndp.h
	cpp-mix.h		cpp/mi1x.h
	cpp-mi2.c		cpp/mi2.c
	cpp-mi2a.h		cpp/mi2a.h
	cpp-mi2b.h		cpp/mi2b.h
	cpp-mi2c.h		cpp/mi2c.h
	cpp-mi3.c		cpp/mi3.c
	cpp-mi3.def		cpp/mi3.def
	poison-1.c		cpp/poison.c
	pr-impl.c		cpp/prag-imp.c
	cpp-redef-2.c		cpp/redef1.c
	cpp-redef.c		cpp/redef2.c
	strpaste.c		cpp/strp1.c
	strpaste-2.c		cpp/strp2.c
	cpp-tradpaste.c		cpp/tr-paste.c
	cpp-tradstringify.c	cpp/tr-str.c
	cpp-tradwarn1.c		cpp/tr-warn1.c
	cpp-tradwarn2.c		cpp/tr-warn2.c
	trigraphs.c		cpp/trigraphs.c
	cpp-unc1.c		cpp/unc1.c
	cpp-unc2.c		cpp/unc2.c
	cpp-unc3.c		cpp/unc3.c
	cpp-unc.c		cpp/unc4.c
	undef.c			cpp/undef1.c
	undef-2.c		cpp/undef2.c
	cpp-wi1.c		cpp/widestr1.c

2000-06-27  Mark Mitchell  <mark@codesourcery.com>

	* lib/g++.exp (g++_include_flags): Tweak.

2000-06-27  H.J. Lu  <hjl@gnu.org>
	    Loren J. Rittle  <ljrittle@acm.org>

	* lib/g++.exp (g++_include_flags): Override libgloss.exp
	version with one that knows about the new gcc tree structure.
	(g++_link_flags): Same.

2000-06-26  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/20000419-1.c, gcc.dg/cpp-mi.c, gcc.dg/cpp-tradwarn1.c,
	gcc.dg/cpp-unc.c: Use "target *-*-*", not "target native", in
	case we are cross-compiling.

	* g++.old-deja/Makefile.in, g++.old-deja/configure.in,
	g++.old-deja/g++.niklas/Makefile.in,
	g++.old-deja/g++.niklas/configure.in,
	g++.old-deja/g++.other/Makefile.in,
	g++.old-deja/g++.other/configure.in,
	gcc.c-torture/code_quality/Makefile.in,
	gcc.c-torture/code_quality/configure.in,
	gcc.c-torture/compat/Makefile.in, gcc.c-torture/compat/configure.in,
	gcc.c-torture/compile/Makefile.in, gcc.c-torture/compile/configure.in,
	gcc.c-torture/execute/Makefile.in, gcc.c-torture/execute/configure.in,
	gcc.c-torture/execute/ieee/Makefile.in,
	gcc.c-torture/execute/ieee/configure.in,
	gcc.c-torture/noncompile/Makefile.in,
	gcc.c-torture/noncompile/configure.in,
	gcc.c-torture/special/Makefile.in, gcc.c-torture/special/configure.in,
	gcc.c-torture/unsorted/Makefile.in, gcc.c-torture/unsorted/configure.in,
	gcc.misc-tests/Makefile.in, gcc.misc-tests/configure.in: Delete.

2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/ambig3.C: New test.

2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/syntax1.C: New test.
	* g++.old-deja/g++.pt/syntax2.C: New test.
	* g++.old-deja/g++.other/syntax3.C: New test.
	* g++.old-deja/g++.other/syntax4.C: New test.

2000-06-25  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/20000623-1.c: Prototype exit and abort.

2000-06-25  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/20000625-1.c, gcc.dg/20000625-2.c, gcc.dg/cpp-mi3.c:
	New tests.
	* gcc.dg/cpp-mi3.def: New file.

	* gcc.dg/cpp-as1.c: Also test that macro expansion does not occur
	inside assertions.
	* gcc.dg/cpp-as2.c: Make error regexps match either old or new
	lexer's error messages.
	* gcc.dg/cpp-mi.c: Use -H and examine the output, don't try to
	divine anything from the linemarkers.
	* gcc.dg/cpp-micc.h: Fix typo (declare int b, not int a);
	* gcc.dg/poison-1.c: Preprocess only; apply -fno-show-column.

2000-06-23  Geoffrey Keating  <geoffk@cygnus.com>

	* gcc.dg/20000623-1.c: New test.

2000-06-22  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/20000622-1.c: New test.

2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/init15.C: New test.

2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/vaarg2.C: New test.
	* g++.old-deja/g++.pt/vaarg3.C: New test.

2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/dyncast6.C: New test.

2000-06-15  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/loop-6.c: New test.

2000-06-14  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/20000614-1.c: New test.
	* gcc.dg/20000614-2.c: New test.

2000-06-14  Hans-Peter Nilsson  <hp@axis.com>

	* g++.old-deja/g++.other/inline12.C: New test.

2000-06-13  Jakub Jelinek  <jakub@redhat.com>

	* g++.old-deja/g++.other/eh1.C: New test.

2000-06-12  Jakub Jelinek  <jakub@redhat.com>

	* g++.old-deja/g++.other/type.C: New test.

2000-06-05  Jakub Jelinek  <jakub@redhat.com>

	* g++.old-deja/g++.other/initstring.C: New test.

2000-06-12  Jason Merrill  <jason@redhat.com>

	* g++.old-deja/old-deja.exp: Add -Wno-long-long.

Fri Jun  9 22:46:34 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000609-1.c: New test.

Fri Jun  9 21:54:28 2000  Clinton Popetz  <cpopetz@cygnus.com>

	* gcc.dg/20000609-1.c: New test.

2000-06-08  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.c-torture/noncompile/noncompile.exp: Remove poison-1 block.
	* gcc.c-torture/noncompile/poison-1.c: Move...
	* gcc.dg/poison-1.c: ...here, and adapt to dg framework.
	* gcc.dg/cpp-li1.c: Add a token after the #line.

2000-06-05  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000605-2.c: New test.
	* gcc.c-torture/execute/20000605-3.c: New test.

2000-06-06  David Billinghurst  <David Billinghurst@riotinto.com.au>

	* g77.f-torture/execute/20000503-1.x: New file.

2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.eh/badalloc1.C: New test.

2000-06-05  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000605-1.c: New test.

2000-06-05  Jakub Jelinek  <jakub@redhat.com>
	    Nathan Sidwell <nathan@codesourcery.com>

	* gcc.c-torture/compile/20000605-1.c: New test.

2000-06-03  David Billinghurst  <David Billinghurst@riotinto.com.au>

	* g77.f-torture/compile/20000601-1.f:  New test.

2000-06-03  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000603-1.c: New.

2000-06-02  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/noreturn-1.c (foo7, foo8): Revert previous change.
	* gcc.dg/noreturn-2.c (noreturn): Likewise.

2000-06-01  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/compare2.c (case 12): XFAIL.
	* gcc.dg/noreturn-1.c (foo7, foo8): XFAIL.
	* gcc.dg/noreturn-2.c (noreturn): XFAIL.

	* gcc.dg/cpp-tradwarn2.c: Update egrep pattern.

2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp-mi.c: Add another case, cpp-mix.h, where the
	guard macro is already defined when the header is first
	included.
	* gcc.dg/cpp-mix.h: New file.
	* gcc.dg/endif-label.c: Update patterns to match compiler.

	* g++.brendan/complex1.C: Declare abort.
	* g++.law/refs4.C: Remove XFAIL.
	* g++.oliva/expr2.C: Declare abort and exit.

2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>

	* gcc.c-torture/execute/20000528-1.c: New test.

	* g++.old-deja/g++.law/refs4.C: Mark as XFAIL.
	* g++.old-deja/g++.law/temps4.C: Likewise.

	* g++.old-deja/g++.brendan/code-gen4.C: Include stdio.h and
	stdlib.h.  Call abort() on failure.
	* g++.old-deja/g++.law/refs4.C: Likewise.
	* g++.old-deja/g++.law/temps4.C: Likewise.
	* g++.old-deja/g++.brendan/complex1.C: Don't assume argc is 1.
	* gcc.c-torture/execute/20000112-1.c: Include string.h.

2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>

	Relative to g++.dg/special:
	* conpr-1.C, conpr-2.C, conpr-3.C: Include stdlib.h.

	Relative to g++.old-deja:
	* g++.brendan/complex1.C, g++.jason/optimize2.C,
	g++.mike/p9732b.C, g++.other/addrof1.C, g++.other/dyncast5.C,
	g++.other/init5.C, g++.other/init7.C, g++.other/union2.C,
	g++.pt/vbase1.C, g++.robertl/eb14.C, g++.robertl/eh990323-1.C,
	g++.robertl/eh990323-2.C, g++.robertl/eh990323-3.C,
	g++.robertl/eh990323-4.C, g++.robertl/eh990323-5.C,
	g++.robertl/ice990323-2.C: Prototype exit and/or abort.

	* g++.brendan/nest21.C, g++.eh/rethrow3.C, g++.jason/init3.C,
	g++.law/arm15.C, g++.law/cvt2.C, g++.law/visibility17.C,
	g++.mike/eh23.C, g++.mike/eh25.C, g++.mike/eh34.C,
	g++.mike/eh48.C, g++.mike/eh55.C, g++.mike/p2736.C,
	g++.oliva/new1.C, g++.other/align.C, g++.robertl/eb39.C,
	g++.robertl/eb54.C, g++.robertl/eb63.C: Include stdlib.h
	and/or string.h.

	* g++.other/goto1.C: Update expectations for error messages.

2000-05-25  Alexandre Oliva  <aoliva@cygnus.com>

	* gcc.c-torture/compile/20000523-1.c: New test.

2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.abi/ptrflags.C: Use __pbase_type_info.

2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.eh/catch11.C: New test.
	* g++.old-deja/g++.eh/catch12.C: New test.

2000-05-24  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/20000523-1.c: New test.

2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>

	* c-torture/execute/bcp-1.c: Replace abort in arg of
	__builtin_constant_p with a generic external function.

	* gcc.dg/20000108-1.c, gcc.dg/980211-1.c, gcc.dg/980414-1.c,
	gcc.dg/990119-1.c, gcc.dg/990409.c, gcc.dg/990424-1.c,
	gcc.dg/991230-1.c, gcc.dg/clobbers.c, gcc.dg/lineno.c,
	gcc.dg/noreturn-1.c, gcc.dg/trigraphs.c, gcc.dg/uninit-4.c:
	Prototype abort and/or exit.

	* gcc.dg/990407-1.c, gcc.dg/strpaste.c,
	gcc.dg/special/alias-1.c, gcc.dg/special/gcsec-1.c,
	gcc.dg/special/weak-1.c, gcc.dg/special/weak-2.c,
	gcc.dg/special/wkali-1.c, gcc.dg/special/wkali-2.c: Include stdlib.h.

2000-05-22  Alexandre Oliva  <aoliva@cygnus.com>

	* gcc.dg/dwarf2-1.c: New test.

2000-05-20  Richard Henderson  <rth@cygnus.com>

	* lib/f-torture.exp (TORTURE_OPTIONS): Add "-O3 -g" and "-O3 -fssa".

2000-05-20  Andreas Jaeger  <aj@suse.de>

	* gcc.c-torture/execute/20000519-1.c (main): Fixed return value of
	testcase.

2000-05-19  David Edelsohn  <edelsohn@gnu.org>

	* gcc.c-torture/execute/20000519-2.c: New test.

2000-05-19  Andreas Jaeger  <aj@suse.de>

	* gcc.c-torture/execute/20000519-1.c: Testcase from Ulrich Drepper
	which fails with SSA.

	* lib/c-torture.exp: Also test with -O3 -fssa.

2000-05-18  Michael Meissner  <meissner@redhat.com>

	* gcc.c-torture/compile/920501-1.c: Remove CYGNUS LOCAL markers.
	* gcc.c-torture/execute/920415-1.c: Ditto.
	* gcc.c-torture/execute/920501-1.c: Ditto.
	* gcc.c-torture/execute/conversion.c: Ditto.
	* gcc.c-torture/execute/cvt-1.c: Ditto.

Thu May 18 16:03:29 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000518-1.c: New test.

2000-05-18  David Billinghurst  <David.Billinghurst@riotinto.com.au>

	* g77.f-torture/compile/200005018.f:  New test.

Wed May 17 18:30:10 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000517-1.c: New test.

2000-05-16  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

	* gcc.c-torture/execute/20000516-1.c: New test.

2000-05-15  Jakub Jelinek  <jakub@redhat.com>

	* g++.old-deja/g++.other/eh.C: New test.

2000-05-12  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/990208-1.c (main): Don't pass
	constants through to doit's conditional.

Thu May 11 19:02:43 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000511-1.c: New test.
	* g77.f-torture/compile/20000511-1.f: New test.
	* g77.f-torture/compile/20000511-2.f: New test.

2000-05-11  Michael Meissner  <meissner@redhat.com>

	* gcc.c-torture/execute/20000511-1.c: New test.

2000-05-11  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/dg.exp: Scan .S files as well as .c files.
	* gcc.dg/20000510-1.S: New.

2000-05-08  Catherine Moore  <clm@cygnus.com>

	* gcc.dg/unused-3.c: New.

2000-05-06  Richard Henderson  <rth@cygnus.com>

	  * g++.old-deja/g++.brendan/code-gen2.C: Cast to size_t, not int.
	  * g++.old-deja/g++.mike/warn1.C: Likewise.
	  * g++.old-deja/g++.pt/local1.C: Likewise.
	  * g++.old-deja/g++.pt/local7.C: Likewise.
	  * g++.old-deja/g++.pt/spec16.C: Likewise.

2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.abi/ptrflags.C: Correct and extend.

2000-05-05  David Billinghurst  <David Billinghurst@riotinto.com.au>

	  * g77.f-torture/execute/20000503-1.f:  New test.

2000-05-04  Andreas Jaeger  <aj@suse.de>

	* gcc.dg/noreturn-2.c: New test.

2000-05-04  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp-opprec.c: New tests for operator precedence in the
	preprocessor.

2000-05-04  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000503-1.c: Fix typo.

2000-05-04  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/compile/20000504-1.c: New test.  Derived from
	OpenSSL by Jason R Thorpe.

Wed May  3 13:02:10 2000  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/execute/20000503-1.c: New test for extract_muldiv bug.

2000-05-03  Robert Lipe <robertlipe@usa.net>

	* gcc.dg/20000503-1.c: New test.

2000-05-02  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/compile/20000502-1.c: New test.
	* g++.old-deja/g++.other/align.C: New test.
	* gcc.dg/cpp-tradstringify.c: New test.

Thu Apr 27 15:58:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>

	* gcc.c-torture/compile/20000427-1.c: New test for loop hoisting code
	and hard registers.

2000-04-26  Geoff Keating  <geoffk@cygnus.com>

	* gcc.c-torture/execute/loop-5.c: New test.

2000-04-25  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/execute/va-arg-20.c: New test.

Sun Apr 23 14:41:33 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000422-1.c: New test.

2000-04-20  Greg McGary  <gkm@gnu.org>

	* gcc.c-torture/compile/20000420-2.c: New test for stack misalignment
	when optimizing, but without sibling-call optimizations (-O1).

Thu Apr 20 11:57:03 2000  Jeffrey A Law  (law@cygnus.com)

	  * gcc.c-torture/compile/20000420-1.c: New test.

2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.abi/ptrflags.C: New test.
	* g++.eh/catchptr1.C: Test incomplete pointer chains.

Wed Apr 19 09:16:32 2000  Catherine Moore  <clm@cygnus.com>

	* gcc.c-torture/execute/921017-1.c: Check for NO_TRAMPOLINES.

2000-04-19  Greg McGary  <gkm@gnu.org>

	* gcc.c-torture/execute/20000419-1.c: New test for arg clobbering with
	sibling-call optimizations.

2000-04-19  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/20000419-1.c: New test.

Wed Apr 12 22:54:02 2000  Hans-Peter Nilsson  <hp@axis.com>

	* gcc.c-torture/execute/20000412-6.c: New test.

Wed Apr 12 10:25:08 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000412-5.c: New test.
	* g77.f-torture/compile/20000412-1.f: New test.
	* gcc.c-torture/execute/20000412-4.c: New test.
	* gcc.c-torture/compile/20000412-2.c: New test.
	* gcc.c-torture/execute/20000412-3.c: New test.
	* gcc.c-torture/compile/20000412-1.c: New test.
	* gcc.c-torture/execute/20000412-2.c: New test.

2000-04-12  Jakub Jelinek  <jakub@redhat.com>

	* objc/execute/bf-20.m: New test.

2000-04-10  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/20000412-1.c: Reduce some more.

	* gcc.c-torture/execute/20000412-1.c: New test.

2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.eh/catchptr1.C: New test.

2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.abi/cxa_vec.C: New test.

2000-04-08  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp-nullchar.c: Remove test as
	embedded nulls cause problems.

2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/compare2.c: New test.

2000-04-08  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp-nullchar.c: New test.

2000-04-07  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp-mi2.c: New test.
	* gcc.dg/cpp-mi2[abc].h: New files.

2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.abi/vmihint.C: Adjust __vmi_class_type_info
	member name.

2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.abi/vmihint.C: New test.

2000-04-06  Neil Booth  <NeilB@earthling.net>

	* cpp-ifparen.c, cpp-missingop.c, cpp-missingparen.c,
	cpp-shift.c, cpp-shortcircuit.c, cpp-unary.c:  Add FSF
	copyright.

Wed Apr  5 22:51:36 2000  Hans-Peter Nilsson  <hp@axis.com>

	* gcc.c-torture/execute/960327-1.c (f): Add a letter to s[] to
	avoid stack-frame overwrite.

2000-04-05  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/compile/20000405-2.c: New test.
	* gcc.c-torture/compile/20000405-3.c: New test.

2000-04-05  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.c-torture/compile/20000405-1.c: New test.

2000-04-04  Geoff Keating  <geoffk@cygnus.com>

	* gcc.dg/cast-qual-1.c: Revert last change.

2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/cast-qual-1.c: Check casts through a pointer typedef.

2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp-redef-2.c, gcc.dg/cpp-tradwarn1.c,
	gcc.dg/cpp-unc.c: Add -fno-show-column to compiler options.

Mon Apr  3 02:35:34 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000403-2.c: New test.
	* gcc.c-torture/compile/20000403-1.c: New test.

Mon Apr  3 16:53:52 2000  Hans-Peter Nilsson  <hp@axis.com>

	* gcc.c-torture/execute/20000403-1.c: New test.

2000-04-03  Geoff Keating  <geoffk@cygnus.com>

	* gcc.c-torture/execute/20000402-1.c: New test.

Mon Apr  3 14:10:34 2000  Donald Lindsay  <dlindsay@cygnus.com>

	* gcc.c-torture/execute/va-arg-15.c: New test.
	* gcc.c-torture/execute/va-arg-16.c: New test.
	* gcc.c-torture/execute/va-arg-17.c: New test.
	* gcc.c-torture/execute/va-arg-18.c: New test.
	* gcc.c-torture/execute/va-arg-19.c: New test.

2000-04-02  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.c-torture/compile/981211-1.c: Move to...
	* gcc.dg/cpp-as1.c: ...here.
	* gcc.dg/cpp-as2.c: New file.

	* gcc.dg/cpp-tradwarn1.c: Change warning regexps to match the
	compiler.

2000-04-02  Neil Booth  <NeilB@earthling.net>

	* gcc.dg/cpp-cond.c  New tests.
	* gcc.dg/cpp-ifparen.c New tests.  Amend existing tests to make
	accidental success less likely.
	* gcc.dg/cpp-missingop.c  New tests.
	* gcc.dg/cpp-missingparen.c  New tests.
	* gcc.dg/cpp-shift.c  New tests.
	* gcc.dg/cpp-shortcircuit.c  New tests.
	* gcc.dg/cpp-unary.c  New tests.

Wed Mar 29 13:44:23 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000329-1.c: New test.

2000-03-26  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.c-torture/compile/20000326-1.c: New test.
	* gcc.c-torture/compile/20000326-2.c: New test.

2000-03-24  Geoff Keating  <geoffk@cygnus.com>

	* gcc.c-torture/execute/va-arg-14.c: New test for va_start where
	the first parameter is a function argument.

2000-03-23  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.ext/array4.C: New test.

2000-03-22  Geoff Keating  <geoffk@cygnus.com>

	* gcc.c-torture/execute/ieee/20000320-1.c: New test for denormals.

2000-03-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/noreturn-1.c: Check for another bogus noreturn case.

2000-03-19  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/compile/20000314-2.c: Use __SIZE_TYPE__, not size_t.

2000-03-19  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/compile/20000319-1.c: New test.

Tue Mar 14 08:58:37 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000314-3.c: New test.
	* gcc.c-torture/execute/20000314-2.c: New test.
	* gcc.c-torture/execute/20000314-1.c: New test.
	* gcc.c-torture/compile/20000314-2.c: New test.
	* gcc.c-torture/compile/20000314-1.c: New test.

2000-03-13  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.warn/inline.C: New test.

Fri Mar 10 01:15:19 2000  Hans-Peter Nilsson  <hp@bitrange.com>

	* gcc.c-torture/execute/divconst-2.c: Rewrite to check for
	standards-compliant result rather than specific constants.
	Put test-values in array.

2000-03-08  Jason Merrill  <jason@casey.cygnus.com>

	* lib/g++.exp (g++_init): Don't put { } around -fmessage-length=0.
	(g++_target_compile): Put test-specific options last.

2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.eh/vbase4.C: New test.

2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.bugs/900215_01.C: Adjust.

2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.brendan/misc12.C: Removed.
	* g++.old-deja/g++.pt/memtemp77.C: Constify.
	* g++.old-deja/g++.ext/pretty4.C: New test.

2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/string2.C: New test.

2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.warn/impint2.C: New test.

Sun Mar  5 23:25:12 2000  Hans-Peter Nilsson  <hp@bitrange.com>

	* gcc.c-torture/execute/20000224-1.c (main): Expected return-value
	is 1, not zero.

2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.warn/impint.C: New test.
	* g++.old-deja/g++.martin/sts_vectini.C: Add -w option.
	* g++.old-deja/g++.pt/explicit10.C: Specify -w option.
	* g++.old-deja/g++.pt/explicit12.C: Likewise.
	* g++.old-deja/g++.pt/explicit13.C: Likewise.
	* g++.old-deja/g++.pt/explicit17.C: Likewise.
	* g++.old-deja/g++.pt/explicit18.C: Likewise.
	* g++.old-deja/g++.pt/explicit19.C: Likewise.
	* g++.old-deja/g++.pt/explicit23.C: Likewise.
	* g++.old-deja/g++.pt/explicit31.C: Likewise.
	* g++.old-deja/g++.pt/explicit35.C: Likewise.
	* g++.old-deja/g++.pt/explicit6.C: Likewise.
	* g++.old-deja/g++.pt/memclass7.C: Likewise.

2000-03-01  Zack Weinberg  <zack@wolery.cumb.org>

	* gcc.dg/cpp-redef.c: New test.

2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/unify7.C: New test.

Sat Feb 26 19:46:09 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>

	* g++.old-deja/g++.ext/attrib5.C: XFAIL on Alpha since no link alias.
	* g++.old-deja/g++.pt/static3.C: Generalize system name for Alpha.

2000-02-25  Geoff Keating  <geoffk@cygnus.com>

	* gcc.c-torture/compile/20000224-1.c: New test.

2000-02-25  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.c-torture/compile/cpp-2.c: New test.
	* gcc.c-torture/compile/cpp-1.c: New test.

Fri Feb 25 21:44:49 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000225-1.c: New test.

2000-02-25  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/cpp-li2.c: New test.

	* gcc.dg/cpp-wi1.c: New test.

	* gcc.dg/cpp-li1.c: New test.

2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.other/sizeof5.C: New test.

2000-02-23  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

	* gcc.c-torture/execute/va-arg-13.c: New test.

Wed Feb 23 14:16:06 2000  Donald Lindsay  <dlindsay@cygnus.com>

	* gcc.c-torture/execute/va-arg-12.c: New test.

2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>

	* gcc.c-torture/execute/20000223-1.c: New test.

2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>

	* g++.old-deja/g++.pt/memtemp79.C: Fixed. Remove XFAIL.

2000-02-22  Mark Mitchell  <mark@codesourcery.com>

	* g++.old-deja/g++.abi/ptrmem.C: New test.

2000-02-19  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/compile/init-3.c: New.

2000-02-17  Mark Mitchell  <mark@codesourcery.com>

	* lib/g++.exp (g++_init): Add -fmessage-length=0 to
	ALWAYS_CXXFLAGS.

Fri Feb 11 12:35:40 2000  Robert Lipe <robertl@sco.com>

	* gcc.c-torture/compile/20000211-3.c: New test.

Fri Feb 11 12:35:40 2000  Martin Buchholz <martin@xemacs.org>

	* gcc.c-torture/compile/20000211-2.c: New test.

Fri Feb 11 12:35:40 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000211-1.c: New test.

2000-02-09  Jonathan Larmour  <jlarmour@redhat.co.uk>

	* gcc.dg/special/ecos.exp: Use -static when testing --gc-sections
	  on native targets

2000-02-08  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/cast5.C: New test.

2000-02-05  Alan Modra  <alan@SPRI.Levels.UniSA.Edu.Au>

	* gcc.c-torture/execute/20000205-1.c: New.

2000-02-03  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.jason/cast3.C: Return void.
	* g++.old-deja/g++.pt/dynarray.C: Don't be pedantic.

2000-02-02  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/unused-2.c: Use -Wreturn-type instead of -Wall.

	* gcc.dg/loop-1.c: New test.

2000-01-27  Jakub Jelinek  <jakub@redhat.com>

	* gcc.c-torture/compile/20000127-1.c: New test.
	* gcc.c-torture/execute/991228-1.c: New test.

2000-01-26  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/unused-2.c: New test.

	* gcc.dg/conv-1.c: New test.

2000-01-24  Mark Mitchell  <mark@codesourcery.com>

	* lib/g++.exp (g++init): Use g++, not xgcc, to invoke the C++
	compiler.
	(tool_option_proc): Fix typo.

2000-01-24  Geoff Keating  <geoffk@cygnus.com>

	* gcc.dg/special/ecos.exp (gcsec-1.c): Check the version
	of the ld on the host, not on the build machine.
	Also, don't crash if '--help' is not a supported option.

2000-01-24  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/ieee/fp-cmp-4.c: New.

Thu Jan 20 12:34:48 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000120-2.c: New test.
	* gcc.c-torture/execute/20000120-1.c: New test.

Thu Jan 13 02:29:32 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000113-1.c: New test.

Wed Jan 12 20:26:58 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/20000112-1.c: New test.

2000-01-11  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/20000111-1.c: New test.

Mon Jan 10 18:12:49 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990628-1.c: Tweak to work on targets
	with 16 bit integers.

2000-01-08  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/20000108-1.c: New test.

2000-01-05  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.ns/koenig8.C: New test.

2000-01-05  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/cast4.C: New test.

Wed Jan  5 00:26:20 2000  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/20000105-2.c: New test.
	* gcc.c-torture/compile/20000105-1.c: New test.

2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* g++.old-deja/g++.brendan/array1.C: Modify explicit external libc
	references to printf & atoi to conform to ANSI standard.
	* g++.old-deja/g++.brendan/code-gen1.C: Likewise.
	* g++.old-deja/g++.brendan/code-gen2.C: Likewise.
	* g++.old-deja/g++.brendan/code-gen3.C: Likewise.
	* g++.old-deja/g++.brendan/code-gen4.C: Likewise.
	* g++.old-deja/g++.brendan/code-gen6.C: Likewise.
	* g++.old-deja/g++.brendan/complex1.C: Likewise.
	* g++.old-deja/g++.brendan/copy1.C: Likewise.
	* g++.old-deja/g++.brendan/copy2.C: Likewise.
	* g++.old-deja/g++.brendan/copy3.C: Likewise.
	* g++.old-deja/g++.brendan/copy4.C: Likewise.
	* g++.old-deja/g++.brendan/copy5.C: Likewise.
	* g++.old-deja/g++.brendan/copy6.C: Likewise.
	* g++.old-deja/g++.brendan/copy7.C: Likewise.
	* g++.old-deja/g++.brendan/copy8.C: Likewise.
	* g++.old-deja/g++.brendan/crash11.C: Likewise.
	* g++.old-deja/g++.brendan/crash14.C: Likewise.
	* g++.old-deja/g++.brendan/ctors1.C: Likewise.
	* g++.old-deja/g++.brendan/ctors2.C: Likewise.
	* g++.old-deja/g++.brendan/delete2.C: Likewise.
	* g++.old-deja/g++.brendan/dtors1.C: Likewise.
	* g++.old-deja/g++.brendan/dtors2.C: Likewise.
	* g++.old-deja/g++.brendan/dtors3.C: Likewise.
	* g++.old-deja/g++.brendan/eh1.C: Likewise.
	* g++.old-deja/g++.brendan/groff1.C: Likewise.
	* g++.old-deja/g++.brendan/init3.C: Likewise.
	* g++.old-deja/g++.brendan/misc12.C: Likewise.
	* g++.old-deja/g++.brendan/misc7.C: Likewise.
	* g++.old-deja/g++.brendan/new2.C: Likewise.
	* g++.old-deja/g++.brendan/operators4.C: Likewise.
	* g++.old-deja/g++.brendan/operators5.C: Likewise.
	* g++.old-deja/g++.brendan/overload2.C: Likewise.
	* g++.old-deja/g++.brendan/overload7.C: Likewise.
	* g++.old-deja/g++.brendan/redecl2.C: Likewise.
	* g++.old-deja/g++.brendan/reference1.C: Likewise.
	* g++.old-deja/g++.brendan/sizeof5.C: Likewise.
	* g++.old-deja/g++.brendan/template24.C: Likewise.
	* g++.old-deja/g++.brendan/template3.C: Likewise.
	* g++.old-deja/g++.brendan/vtables1.C: Likewise.
	* g++.old-deja/g++.jason/inline3.C: Likewise.
	* g++.old-deja/g++.jason/opeq.C: Likewise.
	* g++.old-deja/g++.law/arg5.C: Likewise.
	* g++.old-deja/g++.law/arm7.C: Likewise.
	* g++.old-deja/g++.law/ctors11.C: Likewise.
	* g++.old-deja/g++.law/cvt8.C: Likewise.
	* g++.old-deja/g++.law/init9.C: Likewise.
	* g++.old-deja/g++.law/refs4.C: Likewise.
	* g++.old-deja/g++.law/template2.C: Likewise.
	* g++.old-deja/g++.law/visibility24.C: Likewise.
	* g++.old-deja/g++.law/vtable3.C: Likewise.
	* g++.old-deja/g++.mike/asm2.C: Likewise.
	* g++.old-deja/g++.mike/eh1.C: Likewise.
	* g++.old-deja/g++.mike/misc1.C: Likewise.
	* g++.old-deja/g++.mike/misc13.C: Likewise.
	* g++.old-deja/g++.mike/misc14.C: Likewise.
	* g++.old-deja/g++.mike/ns12.C: Likewise.
	* g++.old-deja/g++.mike/p1248.C: Likewise.
	* g++.old-deja/g++.mike/p3708.C: Likewise.
	* g++.old-deja/g++.mike/p3708a.C: Likewise.
	* g++.old-deja/g++.mike/p3708b.C: Likewise.
	* g++.old-deja/g++.mike/p646.C: Likewise.
	* g++.old-deja/g++.mike/p700.C: Likewise.
	* g++.old-deja/g++.mike/p783.C: Likewise.
	* g++.old-deja/g++.mike/p783a.C: Likewise.
	* g++.old-deja/g++.mike/p783b.C: Likewise.
	* g++.old-deja/g++.mike/p786.C: Likewise.
	* g++.old-deja/g++.mike/p789.C: Likewise.
	* g++.old-deja/g++.mike/p789a.C: Likewise.
	* g++.old-deja/g++.mike/p807a.C: Likewise.
	* g++.old-deja/g++.other/delete3.C: Likewise.
	* g++.old-deja/g++.other/dyncast1.C: Likewise.
	* g++.old-deja/g++.other/dyncast2.C: Likewise.
	* g++.old-deja/g++.other/dyncast3.C: Likewise.
	* g++.old-deja/g++.other/empty1.C: Likewise.
	* g++.old-deja/g++.other/temporary1.C: Likewise.
	* g++.old-deja/g++.pt/memtemp14.C: Likewise.
	* g++.old-deja/g++.pt/t16.C: Likewise.
	* g++.old-deja/g++.pt/tiemann2.C: Likewise.

1999-12-30  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.dg/991230-1.c: New test.

Wed Dec 29 23:48:49 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/991229-3.c: New test.
	* gcc.c-torture/compile/991229-2.c: New test.
	* gcc.c-torture/compile/991229-1.c: New test.

Wed Dec 29 20:54:46 1999  Greg McGary <gkm@eng.ascend.com>

	* gcc.c-torture/compile/labels-2.c: New test.

1999-12-27  Martin von Löwis  <loewis@informatik.hu-berlin.de>

	* gcc.c-torture/execute/991227-1.c: New test.

1999-12-22  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* g++.old-deja/g++.pt/instantiate6.C: Remove excess errors XFAIL.

1999-12-21  Martin von Löwis  <loewis@informatik.hu-berlin.de>

	* gcc.c-torture/execute/991221-1.c: New test.

1999-12-20  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/cast3.C: New test.

1999-12-16  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.c-torture/execute/991216-4.c: New test.

1999-12-16  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/991216-1.c: New test.
	* gcc.c-torture/execute/991216-2.c: New test.
	* gcc.c-torture/execute/991216-3.c: New test.

1999-12-14  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.dg/991214-1.c: Use "__asm__", not "asm".
	Actually make the test fail by using "-O2" for compilation.

1999-12-15  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.warn/cast-align1.C: New test.

1999-12-14  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.c-torture/compile/991214-1.c: New test.
	* gcc.c-torture/compile/991214-2.c: New test.

1999-12-14  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.dg/991214-1.c: New test.

Mon Dec 13 23:03:09 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/991213-3.c: New test.
	* gcc.c-torture/compile/991213-2.c: New test.
	* gcc.c-torture/compile/991213-1.c: New test.

Fri Dec 10 00:53:10 1999  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.dg/991209-1.c: New test.

Wed Dec  8 23:44:08 1999  Nathan Sidwell <nathan@acm.org>

	* gcc.c-torture/compile/991208-1.c: New test.

1999-12-06  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/ultrasp2.c: New test.

1999-12-05  Alex Samuel  <samuel@codesourcery.com>

	* g++.old-deja/g++.abi/align.C (main): Fix typo.

1999-12-02  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.c-torture/compile/991202-1.c: New test.
	* gcc.c-torture/execute/991202-1.c: New test.
	* gcc.c-torture/execute/991202-2.c: New test.
	* gcc.c-torture/execute/991202-3.c: New test.

1999-12-02  Alex Samuel  <samuel@codesourcery.com>

	* g++.old-deja/g++.abi/align.C: New test.
	* g++.old-deja/g++.abi/aggregates.C: Likewise.
	* g++.old-deja/g++.abi/bitfields.C: Likewise.

1999-12-01  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/991201-1.c: New.

1999-11-29  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.dg/991129-1.c: New test.

1999-11-27  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.c-torture/compile/991127-1.c: New test.

1999-11-22  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/warn4.C: New test.

1999-11-22  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.eh/cleanup2.C: New test.
	* g++.old-deja/g++.ext/pretty2.C: New test.
	* g++.old-deja/g++.ext/pretty3.C: New test.
	* g++.old-deja/g++.other/debug6.C: New test.

Wed Oct 20 16:18:23 1999  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/noncompile/noncompile.exp: For 940510-1.c, change
	compiler_output to look for one error message instead of two.

1999-11-19  Geoffrey Keating  <geoffk@cygnus.com>

	* gcc.c-torture/execute/991118-1.c: Also test case
	where the word boundary does not split a byte evenly.

1999-11-19  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.ext/restrict1.C: New test.

1999-11-18 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>

	* gcc.c-torture/execute/991118-1.c: New test.

1999-11-16  Geoffrey Keating  <geoffk@cygnus.com>

	* g77.f-torture/execute/u77-test.f (wd): Allow for longer
	working directory pathnames.

1999-10-13  Brendan Kehoe  <brendan@cygnus.com>

	* gcc.c-torture/execute/memcheck/memcheck.exp: Make sure a remote
	host is equipped with driver.h and driver.o so it can actually
	compile and run the tests.

Fri Oct  8 18:46:11 1999  Bernd Schmidt  <bernds@cygnus.co.uk>

	* gcc.c-torture/compile/991008-1.c: New test.

1999-11-08  Nick Clifton  <nickc@cygnus.com>

	* lib/gcc-dg.exp: Include target-supports.exp

1999-11-05  Nick Clifton  <nickc@cygnus.com>

	* lib/target-supports.exp: New file: Provide procs to test for
	features supported by the target.
	(check_weak_available): Moved here from ecos.exp.
	(check_alias_available): New proc: Determine of the target
	toolchain supports the alias attribute.

	* gcc.dg/special/ecos.exp: Move check_weak_available to
	target-supports.exp.
	(alias-1.c): Only perform the test if the target supports
	aliases.
	(wkali-1.c): Only perform the test if the target supports
	aliases.

	* gcc.dg/990506-0.c: Expect error messages from cross
	targets as well as native targets.

1999-11-02  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/ultrasp1.c: Removed xfail.
	* gcc.dg/struct-ret-2.c: Likewise.
	* gcc.dg/array-1.c: Likewise.

1999-11-01  Alexandre Oliva  <oliva@lsd.ic.unicamp.br>

	* gcc.dg/struct-ret-2.c: New test.

	* gcc.dg/array-1.c: New test.

Sat Oct 30 22:23:46 1999  Stephen L Moshier <moshier@mediaone.net>

	* gcc.c-torture/execute/991030-1.c: New test.

Tue Oct 26 20:25:42 1999  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/compile/991026-2.c: New test.

Tue Oct 26 00:45:56 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/991026-1.c: New test.

Sat Oct 23 23:36:03 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/991023-1.c: New test.

Tue Oct 19 02:11:29 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/991019-1.c: New test.

Sat Oct 16 00:05:48 1999  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/991016-1.c: New test.

Thu Oct 14 04:22:47 1999  Stephane Carrez  <stcarrez@worldnet.fr>

	* gcc.c-torture/execute/991014-1.c: New test.

Wed Oct 13 22:01:35 1999  J"orn Rennecke <amylaar@cygnus.co.uk>

	* g++.old-deja/g++.other/union2.C: New test.

1999-10-13  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/vaarg2.C: New test.
	* g++.old-deja/g++.other/vaarg3.C: New test.

1999-10-12  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/noncompile/19990905-1.f: Moved from being
	in compile/.

1999-10-04  Ulrich Drepper  <drepper@cygnus.com>

	* gcc.c-torture/execute/va-arg-11.c: New test.

Fri Oct  1 00:53:17 1999  Mark P. Mitchell  <mark@codesourcery.com>

	* lib/file-format.exp (gcc_target_object_format): Don't
	crash if objdump is unavailable.

Wed Sep 29 23:48:44 1999  Donn Terry <donn@interix.com>

	* gcc.misc-tests/mg.exp: delete extraneous redirection.

1999-09-28  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/compile/990928-1.c: New test.

Tue Sep 28 13:19:15 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/decl6.C: New test.

Tue Sep 28 01:19:09 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>

	* gcc.c-torture/execute/va-arg-10.c: New test.

Mon Sep 27 09:14:24 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.pt/memtemp77.C: Adjust expected
	__PRETTY_FUNCTION__.

1999-09-23  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/990923-1.c: New test.

1999-09-21  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/special/special.exp: Add FR30 to list of targets
	for which -fpic is inappropriate.

1999-09-21  Mark Mitchell  <mark@codesourcery.com>

	* g++.dg/ecos.exp: Don't supply -finit-priority to cc1plus.

Tue Sep 21 15:38:10 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/dyncast1.C: New test.
	* g++.old-deja/g++.other/dyncast2.C: New test.
	* g++.old-deja/g++.other/dyncast3.C: New test.
	* g++.old-deja/g++.other/dyncast4.C: New test.
	* g++.old-deja/g++.other/dyncast5.C: New test.
	* g++.old-deja/g++.eh/catch3.C: New test.
	* g++.old-deja/g++.eh/catch3p.C: New test.
	* g++.old-deja/g++.eh/catch4.C: New test.
	* g++.old-deja/g++.eh/catch4p.C: New test.
	* g++.old-deja/g++.eh/catch5.C: New test.
	* g++.old-deja/g++.eh/catch5p.C: New test.
	* g++.old-deja/g++.eh/catch6.C: New test.
	* g++.old-deja/g++.eh/catch6p.C: New test.
	* g++.old-deja/g++.eh/catch7.C: New test.
	* g++.old-deja/g++.eh/catch7p.C: New test.
	* g++.old-deja/g++.eh/catch8.C: New test.
	* g++.old-deja/g++.eh/catch8p.C: New test.
	* g++.old-deja/g++.eh/catch9.C: New test.
	* g++.old-deja/g++.eh/catch9p.C: New test.

Mon Sep 13 14:14:21 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/sizeof3.C: Remove XFAILS.
	* g++.old-deja/g++.other/sizeof4.C: Remove XFAILS.

Mon Sep 13 06:28:57 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/990913-1.c: New test.

Fri Sep 10 11:21:25 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.jason/rfg4.C: Revert erroneous change, add -w.
	* g++.old-deja/g++.jason/rfg5.C: Likewise.

Thu Sep  9 10:40:36 1999  Richard Henderson  <rth@cygnus.com>

	* g++.old-deja/g++.other/delete6.C: Use size_t with operator new.

Thu Sep  9 12:32:57 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/lookup11.C: New test.
	* g++.old-deja/g++.bugs/900428_01.C: Rework now we understand
	what is permitted and what we want.
	* g++.old-deja/g++.jason/rfg4.C: Rework to remove ill-formed
	overload use.
	* g++.old-deja/g++.jason/rfg5.C: Likewise

1999-09-08  Geoffrey Keating  <geoffk@cygnus.com>

	* gcc.c-torture/noncompile/noncompile.exp: Add poison-1.c.
	* gcc.c-torture/noncompile/poison-1.c: New file.

Wed Sep  8 09:39:56 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/sizeof3.C: New test.
	* g++.old-deja/g++.other/sizeof4.C: New test.
	* g++.old-deja/g++.other/ambig2.C: Mark XFAILs.
	* g++.old-deja/g++.other/lookup16.C: Mark XFAIL.

1999-09-07  Richard Henderson  <rth@cygnus.com>

	* gcc.dg/va-arg-1.c: New.

1999-09-06  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>

	* gcc.c-torture/execute/va-arg-9.c: New test.

1999-09-05  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/980519-2.f: New test.
	* g77.f-torture/compile/19990905-0.f: New test.
	* g77.f-torture/compile/19990905-1.f: New test.
	* g77.f-torture/compile/19990905-2.f: New test.

	* g77.f-torture/noncompile/19990826-4.f: Clarify who wrote what.

Fri Sep  3 10:39:38 BST 1999  Richard Earnshaw <rearnsha@arm.com>

	* gcc.c-torture/execute/990827-1.c: Fix typo.

Fri Sep 03 09:31:10 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/deref1.C: New test.

Thu Sep 02 09:27:34 BST 1999  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/ambig2.C: New test.
	* g++.old-deja/g++.other/cond5.C: New test.
	* g++.old-deja/g++.other/lookup16.C: New test.

Thu Sep  2 01:17:51 1999  Marc Espie <espie@cvs.openbsd.org>

	* gcc.dg/980414-1.c: Fix assembler syntax to work with old
	assemblers too.

Tue Aug 31 17:57:49 1999  Jeffrey A Law  (law@cygnus.com)

	* lib/c-torture.exp: Avoid the "compare executables" optimization
	when testing native.

Sun Aug 29 14:35:41 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990829-1.c: New test.
	* gcc.c-torture/compile/990829-1.c: New test.

1999-08-27  Paul Burchard  <burchard@pobox.com>

	* g++.old-deja/g++.pt/derived3.C: Renamed from lss-001.C.
	* g++.old-deja/g++.pt/ttp56.C: Renamed from lss-002.C.
	* g++.old-deja/g++.pt/decl4.C: Renamed from lss-003.C.
	* g++.old-deja/g++.pt/memtemp85.C: Renamed from lss-004.C.
	* g++.old-deja/g++.pt/memtemp86.C: Renamed from lss-005.C.
	* g++.old-deja/g++.pt/memtemp87.C: Renamed from lss-006.C.
	* g++.old-deja/g++.pt/static10.C: Renamed from lss-007.C.
	* g++.old-deja/g++.pt/memtemp88.C: Renamed from lss-008.C.
	* g++.old-deja/g++.pt/memtemp89.C: Renamed from lss-009.C.
	* g++.old-deja/g++.pt/memtemp90.C: Renamed from lss-010.C.
	* g++.old-deja/g++.pt/memtemp91.C: Renamed from lss-011.C.

Fri Aug 27 01:24:16 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990827-1.c: New test.

1999-08-26  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/noncompile/19990826-4.f: New test.

	* g77.f-torture/compile/19990826-3.f: New test.

	* g77.f-torture/execute/19990826-2.f: New test.

	* g77.f-torture/compile/19990826-1.f: New test.

	* gcc.c-torture/execute/990826-0.c: New test.
	* g77.c-torture/execute/19990826-0.f: New test.

	* g77.f-torture/noncompile/970626-2.f: New test.

1999-08-25  Paul Burchard  <burchard@pobox.com>

	* g++.old-deja/g++.pt/lss-001.C, lss-002.C, lss-003.C, lss-004.C,
	lss-005.C, lss-006.C, lss-007.C, lss-008.C, lss-009.C, lss-010.C,
	lss-011.C: New tests.

1999-08-25  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/decl5.C: New test.

1999-08-24  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* noncompile/noncompile.exp: Load_lib c-torture.exp.
	(postbase_with_opts): New proc to loop over TORTURE_OPTIONS and
	call `postbase' for each one.  All callers of `postbase' changed
	to call this instead.

1999-08-11  Richard Earnshaw (rearnsha@arm.com)

	* gcc.c-torture/execute/990811-1.c: New test.

1999-08-09  Nick Clifton  <nickc@cygnus.com>

	* gcc.misc-tests/m-un-2.c: Expect the warnings for all builds, not
	just native ones.

	* gcc.dg/990413-1.c: Expect the parse error for all builds, not
	just native ones.

1999-08-05  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/local3.C: Removed XFAIL.

Wed Aug  4 01:17:17 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/970312-1.c: Delete duplicate test.

1999-08-04  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.eh/spec6.C: Add more tests. Remove XFAILS.

Wed Aug  4 01:17:17 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990804-1.c: New test.

1999-08-03  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.brendan/crash63.C: Expect a POD warning
	* g++.old-deja/g++.brendan/crash64.C: Likewise
	* g++.old-deja/g++.brendan/overload8.C: Likewise

1999-08-03  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/struct1.C: New test.

1999-08-03  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/enum2.C: New test.

Mon Aug  2 13:35:12 1999  Richard Henderson  <rth@cygnus.com>

	Adapted from tests from Franz Sirl:
	* gcc.c-torture/execute/va-arg-7.c: New test.
	* gcc.c-torture/execute/va-arg-8.c: New test.

Sun Aug  1 22:29:34 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/990801-2.c: New test.

	* gcc.c-torture/compile/990801-1.c: New test.

1999-07-27  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/ieee/fp-cmp-2.c: New file, clone from
	fp-cmp-1.c, converting double to float.

	* gcc.c-torture/execute/ieee/fp-cmp-3.c: New file, clone from
	fp-cmp-1.c, converting double to long double.

	* gcc.c-torture/noncompile/920507-1.c (x): Rename asm register
	from fr1 to unknown_register, since fr1 is a legitimate register
	on some machines.

Sun Jul 25 21:41:37 1999  Jeffrey A Law  (law@cygnus.com)

	* README: More listname related changes.

1999-07-08  Catherine Moore  <clm@cygnus.com>

	* gcc.c-torture/execute/920501-5.c: Fix typo.  Change | to ||.

1999-07-05  Manfred Hollstein  <mhollstein@cygnus.com>

	* gcc.dg/990703-1.c (y): Terminate definition syntactically correctly.

1999-07-05  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/null1.C: Define l<long> for 64bit hosts.

1999-07-04  Zack Weinberg  <zack@rabi.columbia.edu>

	* gcc.dg/990703-1.c: New test.

1999-06-29  Nick Clifton  <nickc@cygnus.com>

	* lib/file-format.exp: New file: Move definition of proc
	gcc_target_object_format to here from
	gcc.dg/special/ecos.exp.

	* lib/c-torture.exp: Include lib file-format.exp.
	* lib/gcc-dg.exp: Include lib file-format.exp.

	* gcc.dg/special/ecos.exp: Remove definition of proc
	gcc_target_object_format.

Mon Jun 28 08:20:51 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990628-1.c: New test.

Fri Jun 25 05:28:40 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/990625-2.c: New test.

	* gcc.c-torture/compile/990625-1.c: New test.

1999-06-23  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/compile/dll.c: New test case.  Check that dll
	attributes compile.
	* gcc.c-torture/compile/dll.x: Only support the dll.c test on
	ports that use the COFF/PE file format.

Thu Jun 17 13:48:16 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/990617-1.c: New test.

1999-06-17  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/decl4.C: New test.

1999-06-14  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/bitfld3.C: New test.

1999-06-08  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.eh/catch1.C: New test.

Mon Jun  7 23:39:16 1999  Jeffrey A Law  (law@cygnus.com)

	* g++.old-deja/g++.mike/p6610a.C: Expect failure on freebsd-elf.

	* gcc.c-torture/execute/ieee/rbug.x: Expect failure on freebsd.
	* gcc.c-torture/execute/ieee/mzero.x: New file.  Likewise.

1999-06-05  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19990502-0.f: Replace with new,
	shorter, test that still fails after recent changes.

Fri Jun  4 02:25:04 1999  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* gcc.c-torture/execute/990604-1.c: New test.

Mon May 31 00:34:51 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990531-1.c: New test.

Thu May 27 02:38:36 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>

	* gcc.c-torture/compile/990527-1.c: New test.

Thu May 27 02:18:51 1999  Joern Rennecke <amylaar@cygnus.com>

	* gcc.c-torture/execute/990527-1.c: New test.

1999-05-25  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/bf-sign-2.c: Explicitly declare signed
	bitfields as signed.

1999-05-25  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19990525-0.f: New test.

Tue May 25 01:21:16 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990525-2.c: New test.

	* gcc.c-torture/execute/990525-1.c: New test.

1999-05-24  Nathan Sidwell  <nathan@acm.org>

	* g++.old-deja/g++.other/anon3.C: New test.
	* g++.old-deja/g++.other/anon4.C: New test.
	* g++.old-deja/g++.ext/anon1.C: Inhibit -pedantic option.
	* g++.old-deja/g++.g++.robertl/eb131.C/: Remove unrequired ERROR tag,
	after downgrade to warning (cp/ChangeLog: 1999-05-20 Jason
	Merrill).

Mon May 24 00:01:52 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990524-1.c: New test.

	* gcc.dg/990524-1.c: New test.

Sun May 23 21:18:12 1999  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>

	* gcc.c-torture/compile/990523-1.c: New test.

Wed May 19 02:56:18 1999  Raja R Harinath <harinath@cs.umn.edu>

	* gcc.c-torture/compile/990519-1.c: New test.

1999-05-17  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* gcc.c-torture/compile/990517-1.c: New test.

	* gcc.c-torture/execute/990326-1.c: Force bitfields to be aligned.
	(e4, f4): New tests.
	(main): Call them.

1999-05-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/noreturn-1.c: New test.

Thu May 13 02:02:46 1999  Andreas Schwab <schwab@issan.cs.uni-dortmund.de>

	* gcc.c-torture/execute/990513-1.c: New test.

1999-05-10  Richard Henderson  <rth@cygnus.com>

	* g++.old-deja/g++.other/null1.C (g): Add overload for long.

1999-05-10  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/erfc.f: Use small single-precision
	values, to avoid problems on Alphas when not -mieee.

1999-05-08  Craig Burley  <craig@jcb-sc.com>

	* gcc.dg/990506-0.c: New test.

1999-05-08  Richard Henderson  <rth@cygnus.com>

	* g++.old-deja/g++.benjamin/p12475.C: Use LONG_MAX to find
	the constant to test.  Don't XFAIL 64-bit targets.

	* g++.old-deja/g++.jason/thunk3.C: Don't XFAIL Alpha.
	* g++.old-deja/g++.law/profile1.C: Likewise.

	* g++.old-deja/g++.other/delete4.C: Define size_t; use it in all
	operator new instances.
	* g++.old-deja/g++.other/delete5.C: Likewise.

1999-05-03  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f (main): Declare ABORT as
	intrinsic.

1999-05-03  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f: Reverse order of two
	arguments to CTIME_subr, DTIME_subr, ETIME_subr, and TTYNAM_subr.

1999-05-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* gcc.dg/compare1.c: New test.

1999-05-02  Joseph S. Myers  <jsm28@cam.ac.uk>

	* gcc.dg/cast-qual-1.c, gcc.dg/return-type-1.c, gcc.dg/unused-1.c:
	New tests.

1999-05-02  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19990502-1.f: New test.

1999-05-02  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19990502-0.f: New test.

Sun May  2 01:38:50 1999  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f (main): Declare FTELL as
	intrinsic.

Sun May  2 01:13:37 1999  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f (main): List libU77
	intrinsics not currently tested.
	Add tests for TIME8, CTIME_subr, IARGC, TTYNAM_subr,
	GETENV, FDATE_subr, DTIME_subr, ETIME_subr, DATE, ITIME,
	FTELL_subr, MCLOCK, MCLOCK8, and CPU_TIME.
	Trim blanks off the ends of some printed strings.

Sun May  2 00:06:45 1999  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f (main): Just warn about
	FSTAT gid disagreement, as it's expected on some systems.

Sat May  1 23:57:18 1999  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f: Generalize sum-checking to
	use a new function, which allows for some slop.
	Clean up some commentary.
	(issum): The new function.
	(sgladd): Deleted subroutine.

1999-05-01  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f: Modify to be more like
	libf2c/libU77 version, bringing patches to that version here.
	Add suitable commentary.

Sun Apr 25 12:28:59 1999  Richard Henderson  <rth@cygnus.com>

	* gcc.dg/990424-1.c: New test.

1999-04-24  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/u77-test.f (main): Bug involving
	LSTAT has been fixed, so turn back on full checking.

1999-04-20  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19990419-0.f: New test.
	* g77.f-torture/execute/19990419-1.f: New test.

Sat Apr 17 16:56:48 1999  Richard Henderson  <rth@cygnus.com>

	* gcc.dg/uninit-9.c (func): Use __builtin_alloca instead of alloca
	to avoid the need for a prototype to supress a warning.

Wed Apr  7 23:08:59 1999  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/execute/920501-7.c (main): Delete __I960__ ifndef.

Sun Apr  4 04:02:53 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990404-1.c: New test.

1999-04-03 10:35 -0500  Zack Weinberg  <zack@rabi.columbia.edu>

	* gcc.dg/cpp-if1.c: Adjust regexps to accommodate cccp.
	* gcc.dg/cpp-if3.c: Don't use -pedantic.
	* gcc.misc-tests/m-un-2.c: Adjust regexps for new format of
	missing initializer warnings.

Sun Mar 28 00:49:41 1999  Jeffrey A Law  (law@cygnus.com)

	* lib/objc-torture.exp: Replace "77" with "Obj-C" in pattern
	matching strings.

Fri Mar 26 00:50:46 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990326-1.c: New test from Charles Hannum.

1999-03-26  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/19990325-0.f: New test.
	* g77.f-torture/execute/19990325-1.f: New test.

Wed Mar 24 22:50:50 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990324-1.c: New test.

Mon Mar 22 14:55:58 1999  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/execute/bf-sign-2.c (main): Replace struct sizeof
	test with 4.

Wed Mar 17 12:22:39 1999  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/ieee/980619-1.x: New.  Expected fail on x86.

1999-03-13  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/19990313-2.f: New test.
	* g77.f-torture/execute/19990313-3.f: New test.

1999-03-13  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/19990313-0.f: New test.
	* g77.f-torture/execute/19990313-1.f: New test.

Fri Mar 12 16:17:28 1999  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/execute/970312-1.c, execute/980605-1.c (f): Change
	printf to sprintf.
	* gcc.c-torture/execute/bf-sign-2.c (struct X): Add u15 field.
	(main): Add check for u15.  Conditionalize u31 check depending on
	whether ints are <32 bits or >=32 bits.

1999-03-08  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/19981119-0.f: Improve testiness.

1999-03-08  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19990305-0.f: New test.
	* g77.f-torture/execute/19981119-0.f: New test.

1999-03-08  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/970625-2.f: call ABORT if final
	result is not correct, instead of just printing it.
	Add this checking via newly introduced obfuscation, to
	trip up buggy front ends.

1999-03-07  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/960317-1.f: Moved from being
	in execute/.  (Somehow I didn't notice "SUBROUTINE...".)

1999-03-06  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/execute/960317-1.f: New (old) test.
	* g77.f-torture/execute/970625-2.f: Ditto.

1999-03-01 Zack Weinberg  <zack@rabi.columbia.edu>

	* gcc.c-torture/noncompile/noncompile.exp (951025-1.c): Accept an error
	message on line 1 or line 2; cccp and cpplib do this differently.

Mon Mar  1 23:29:14 1999  Jeffrey A Law  (law@cygnus.com)

	* g++.old-deja/g++.law/weak1.C: New test.

1999-02-28 17:59 -0500  Zack Weinberg  <zack@rabi.columbia.edu>

	* gcc.c-torture/execute/990119-1.c: Renamed to...
	* gcc.dg/990119-1.c: this, so it will only be tested once
	(it's a preprocessor test, it doesn't need to be run at
	multiple optimization levels).

1999-02-27 13:34 -0500  Zack Weinberg  <zack@rabi.columbia.edu>

	* lib/g++.exp: Don't add incdir=$base_dir/../include to
	  ALWAYS_CXXFLAGS.

1999-02-24  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/noncompile/19981216-0.f: Renamed from...
	* g77.f-torture/compile/19981216-0.f: ...as it is expected
	to not be compilable by current g77.

1999-02-24  Nick Clifton  <nickc@cygnus.com>

	* lib/c-torture.exp: Add -O3 to TORTURE_OPTIONS list.

Mon Feb 22 01:15:08 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990222-1.c: New test.

1999-02-19  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19990218-0.f: New test.
	* g77.f-torture/noncompile/19990218-1.f: New test.

1999-02-18  Craig Burley  <craig@jcb-sc.com>

	* g77.f-torture/compile/19981216-0.f: New test.

Sun Feb 14 01:26:29 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/990214-1.c: New test.

Sat Feb 13 00:43:52 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/990213-2.c: New test.

	* gcc.dg/990213-1.c: New test.

Fri Feb 12 11:04:35 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/990106-2.c: Update to work on targets with 16bit
	ints.

1999-02-11  Nick Clifton  <nickc@cygnus.com>

	* lib/gcc.exp (proc gcc_target_compile): Add support for timeout
	specified by target.

	* lib/chill.exp: Fix typo: doesn'timeout -> doesn't

Thu Feb 11 01:12:12 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990211-1.c: New test from Nathan SIdwell.

Wed Feb 10 13:08:12 1999  Jonathan Larmour  <jlarmour@cygnus.co.uk>

	* gcc.dg/special/ecos.exp: New test driver for new tests with
	special requirements.

	* gcc.dg/special/alias-1.c: New test.
	* gcc.dg/special/gcsec-1.c: New test.
	* gcc.dg/special/weak-1.c: New test.
	* gcc.dg/special/weak-1a.c: Accompanying file to weak-1.c.
	* gcc.dg/special/weak-2.c: New test.
	* gcc.dg/special/weak-2a.c: Accompanying file to weak-2.c.
	* gcc.dg/special/weak-2b.c: Accompanying file to weak-2.c.
	* gcc.dg/special/wkali-1.c: New test.
	* gcc.dg/special/wkali-2.c: New test.
	* gcc.dg/special/wkali-2a.c: Accompanying file to wkali-2.c.
	* gcc.dg/special/wkali-2b.c: Accompanying file to wkali-2.c.

Wed Feb 10 12:15:35 1999  Felix Lee  <flee@cygnus.com>

	  * lib/c-torture.exp (c-torture-compile): Pull out code for
	  analyzing gcc error messages.
	  (c-torture-execute): Likewise.  Fix some (harmless) false
	  positives.
	  * lib/gcc.exp (gcc_check_compile): New function.

Mon Feb  8 21:42:57 1999  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/990208-1.c: New test.

1999-02-07  Jonathan Larmour  <jlarmour@cygnus.co.uk>

	* g++.dg/special/ecos.exp: New driver for new tests with special
	requirements

	* g++.dg/special/conpr-1.C: New test
	* g++.dg/special/conpr-2.C: New test
	* g++.dg/special/conpr-2a.C: New test
	* g++.dg/special/conpr-3.C: New test
	* g++.dg/special/conpr-3a.C: New test
	* g++.dg/special/conpr-3b.C: New test

	* lib/g++-dg.exp: New driver file, based on lib/gcc-dg.exp to
	allow g++ to use the dg driver

	* README: Add comment about g++.dg directory

Sat Feb  6 18:00:38 1999  Jeffrey A Law  (law@cygnus.com)

	* README: Update email addresses.

1999-02-03  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/memcheck/blkarg.c (foo): Use 10 leading
	arguments in order to force structure S onto the stack even on
	the alpha.
	(test): Pass 10 leading arguments to function foo as well as the
	structure S.

	* gcc.c-torture/execute/memcheck/blkarg.x: New file: Expected
	failure for all targets.

	* gcc.c-torture/execute/memcheck/driver.c (main): Use exit or
	abort to terminate program execution.

Sat Jan 30 16:22:47 1999  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/990130-1.c: New test.

Sat Jan 30 11:10:06 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/990130-1.c: New test.

1999-01-28  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/990128-1.c: New test.

1999-01-27  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/990127-{1,2}.c: New tests.

1999-01-27  Felix Lee  <flee@cygnus.com>

	* lib/c-torture.exp (c-torture-compile): pull out code for
	analyzing gcc error messages.
	(c-torture-execute): ditto, and fix some (harmless) false
	positives.
	* lib/gcc.exp (gcc_check_compile): new function.

Sun Jan 17 00:02:33 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/990117-1.c: New test.

	* gcc.c-torture/compile/990117-1.c: New test from Horst von Brand.

	* gcc.c-torture/execute/990117-1.c: New test from HJ Lu.

Fri Jan 15 02:52:00 1999  Jeffrey A Law  (law@cygnus.com)

	* g77.f-torture/compile/990115-1.f: New test.

Thu Jan  7 23:39:47 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/990107-1.c: New test

Wed Jan  6 02:21:59 1999  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/990106-2.c: New test.

	* gcc.c-torture/execute/990106-1.c: New test.

Wed Dec 30 23:05:28 1998  Zack Weinberg <zack@rabi.columbia.edu>

	* gcc.c-torture/compile/981223-1.c: New test.

Tue Dec 29 11:33:25 1998  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/bcp-1.c (bad10): Rename from opt3.
	(opt3): Rename from opt4 and disable.

1998-12-20  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/ptrmem5.C: New test.

1998-12-15  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/conv5.C: New test.

1998-12-14  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/920501-4.c (main): Fix typo: replace | with ||.

Fri Dec 11 10:25:57 1998  Jeffrey A Law  (law@cygnus.com)

	* g++.old-deja/g++.benjamin/p12475.C: Expect failure on mips64 targets.

Fri Dec 11 01:12:45 1998  Zack Weinberg <zack@rabi.columbia.edu>

	* gcc.c-torture/compile/981211-1.c: New test.

1998-12-09  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* gcc.dg/ultrasp1.c: Empty dg-options, avoid `long long' warnings.

	* g++.old-deja/g++.pt/instantiate6.C: Linker error, not	crash.

Tue Dec  8 22:50:04 1998  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>

	* gcc.special/930510-1.c: Make C9X safe.
	* gcc.misc-tests/gcov-1.c Similarly.
	* gcc.misc-tests/gcov-2.c Similarly.

1998-12-06  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* gcc.dg/ultrasp1.c: New test.

Sun Dec  6 00:40:12 1998  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/981206.c: New test.

1998-12-06  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.ns/template7.C: New test.

	* g++.old-deja/g++.other/expr1.C: New test.

	* g++.old-deja/g++.eh/tmpl3.C: New test.

	* g++.old-deja/g++.eh/tmpl2.C: New test.

1998-12-04  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/using5.C: Usified using[567].C here.
	* g++.old-deja/g++.other/using6.C: Removed.
	* g++.old-deja/g++.other/using7.C: Mark Mitchel removed it.

	* g++.old-deja/g++.pt/spec20.C: Re-insert non-bogus ERROR marks.

1998-12-03  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/overload8.C: New test.

	* g++.old-deja/g++.pt/overload7.C: New test.

	* g++.old-deja/g++.pt/spec20.C: ERROR marks were bogus.

	* lib/old-dejagnu.exp (old-dejagnu): Ignore collect recompiling
	and relinking messages.
	* lib/g++.exp (g++_target_compile): Remove .rpo file when
	compiling with -frepo.

1998-12-01  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/lookup6.C: New test.

1998-11-30  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/981130-1.c: New test.
	* gcc.c-torture/execute/981130-1.x: New test failure expectations.

1998-11-27  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/explicit76.C: New test.

	* g++.old-deja/g++.pt/friend38.C: New test.

	* g++.old-deja/g++.ns/crash2.C: New test.

	* g++.old-deja/g++.pt/defarg8.C: New test.

	* g++.old-deja/g++.pt/instantiate6.C: New test.

	* g++.old-deja/g++.pt/static6.C: New test.

	* g++.old-deja/g++.pt/decl2.C: New test.

1998-11-26  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/lookup5.C: New test.  Not sure the
	problem is actually related with name lookup, but so what? :-)

	* g++.old-deja/g++.pt/friend37.C: New test.

1998-11-25  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/u77-test.f (main): Avoid testing [f]statb
	element, which fails on some systems.

	* g77.f-torture/execute/labug1.f: New test.

Sat Nov 21 21:41:05 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980526-1.c: Do nothing if NO_LABEL_VALUES
	is defined.

1998-11-18  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/compile/981117-1.f: New test.

1998-11-16  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.eh/throw2.C: New test.  CV-qualifiers are not
 	properly discarded.

Sun Oct 11 05:04:28 1998  Ken Raeburn  <raeburn@cygnus.com>

	* gcc.c-torture/execute/memcheck: New directory of tests for
	-fcheck-memory-usage.

1998-11-07  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>

	* README: New file, general information about the testsuite and
	new description of the various C++ test subdirectories.
	* README.g++: Eliminate obsolete information, update and move most
	relevant stuff to README.

Sat Nov  7 02:55:55 1998  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/compile/981107-1.c: New test.

Mon Nov  2 11:16:03 1998  Doug Evans  <devans@canuck.cygnus.com>

	* execute/memcpy-bi.c: New testcase.

1998-10-31  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/sizeof3.C: A similar testcase not involving
	base classes.

	* g++.old-deja/g++.pt/sizeof2.C: Incorrect specialization of base
	template is selected.

	* g++.old-deja/g++.ext/arrnew2.C: If new T[n](i) is accepted for
	classes, it should be accepted for all types.

	* g++.old-deja/g++.eh/sjlj1.C: Test checked sjlj-exception.

	* g++.old-deja/g++.pt/spec24.C: Ensure that template
	specializations start with template headers.

1998-10-29  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/dcast2.C: Cannot dynamic downcast &x.

	* g++.old-deja/g++.other/init9.C: Test cross initialization of
	non-POD types.

1998-10-27  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* lib/old-dejagnu.exp (old-dejagnu): Document `Additional sources'.

Thu Oct 22 16:01:44 1998  Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>

	* compile/981022-1.c, compile/981022-1.x: New test and driver.

Mon Oct 19 14:03:07 1998  Jeffrey A Law  (law@cygnus.com)

	* 981019-1.c: New test.

Wed Oct 14 21:11:19 1998  Robert Lipe <robertl@dgii.com>

	* lib/objc-torture.exp (objc-torture-execute): Add -I so we can
 	find objc headers.

1998-10-14  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* compile/981001-4.c: Remove use of GCC extension that triggers a
	compiler bug.

1998-10-13  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* lib/old-dejagnu.exp (old-dejagnu): Support `Additional sources:'.

1998-10-12  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/explicit74.C: New test.  Explicit
 	instantiation of template produces incorrect code for delete
 	expression.

	* g++.old-deja/g++.pt/instantiate5.C: New test.  `global
	constructors' name is not unique.
	* g++.old-deja/g++.pt/instantiate5.cc: Ditto.
	* g++.old-deja/g++.pt/instantiate5-main.cc: Ditto.

	* g++.old-deja/g++.other/init8.C: New test.  Uninitialized
 	automatic array of const is ill-formed.

	* g++.old-deja/g++.pt/ttp53.C: New test.  Incorrect substitution
	of template parameter?

	* g++.old-deja/g++.other/conv3.C: New test.  Conversion discards
	const.

	* g++.old-deja/g++.other/pmf2.C: New test.  Invalid
	pointer-to-member expression.

	* g++.old-deja/g++.other/friend5.C: New test.  Bogus friend
	declaration causes ICE.

1998-10-11  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.ns/main1.C: New test.  main() should only be
 	reserved in the global namespace.

	* g++.old-deja/g++.pt/instantiate4.C: New test: -frepo does not
	generate needed virtual table.

	* lib/old-dejagnu.exp (old-dejagnu): Support `Build then link:'.

1998-10-10  Dariush Eslimi  <eslimi@loran.com>

	* g++.old-deja/g++.ext/typeof1.C: New test; typeof based on
	template-dependent type

1998-10-10  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.brendan/parse3.C: XFAILs, not ERRORs.
	* g++.old-deja/g++.brendan/parse5.C: XFAILs, not ERRORs.
	* g++.old-deja/g++.brendan/parse6.C: XFAILs, not ERRORs.

	* g++.old-deja/g++.other/using5.C: New test; using decl from base
 	class should be usable as argument of member function.
	* g++.old-deja/g++.other/using6.C: New test; using decl from base
 	class should be usable as return type of member function.
	* g++.old-deja/g++.other/using7.C: New test; using decl from base
 	class should be usable as type of data member.

	* g++.old-deja/g++.ns/extern1.C: Fix XFAIL mark.

Fri Oct  9 19:19:19 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/special/920521-1.c: Fix bogus test.

Thu Oct  8 19:14:05 1998  Nick Clifton  <nickc@cygnus.com>

	* gcc.dg/dll-?.c Add thumb to target list.
	Fix assembler scan patterns to match current assembler output.

1998-10-08  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/expr6.C: New test.  operator?: breaks
	matching of template brackets.

	* g++.old-deja/g++.other/using4.C: New test.  Test using
 	declarations of methods from base classes.

	* g++.old-deja/g++.ns/extern1.C: New test.  Extern declarations
 	within functions should introduce names into the innermost
 	enclosing namespace.

	* g++.old-deja/g++.other/init7.C: New test.  Retry initialization
 	of static locals if first initialization throws.

Wed Oct  7 12:00:20 1998  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/compile/981007-1.c: New test for irix6 -O0 core dump.

1998-10-06  Ken Raeburn  <raeburn@cygnus.com>

	* gcc.c-torture/special/981006-1.c: New test.  Make sure gcc doesn't
	lose track of the possible targets of tablejump insns.
	* special/special.exp: Run it.

1998-10-06  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/friend35.C: New test.  A template function
 	must be declared before its specializations can be named in friend
 	declarations.

1998-10-05  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/u77-test.f: Add regression test for RAND.

	* g77.f-torture/execute/io1.f: New test.

1998-10-04  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/overload5.C: New test; initialize variable
 	with pointer to template function, for which no argument deduction
 	is possible.

	* g++.old-deja/g++.pt/overload4.C: New test; passing pointer to
	specialization of template function as argument to template
	function.

	* g++.old-deja/g++.other/access2.C: New test; Inner class
	shouldn't have privileged access to Outer's names.

1998-10-03  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/friend34.C: New test; name injection of
	friend template declared within template class conflicts with
	nested class of the same name.

	* g++.old-deja/g++.other/badopt1.C: New test; post-increment
 	is ignored.

	* g++.old-deja/g++.other/decl1.C: New test; incorrect parsing of
	object with direct initializer as function declaration.

	* g++.old-deja/g++.other/decl2.C: New test; duplicate
	initializers.

	* g++.old-deja/g++.other/null2.C: New test; conditional operator
 	involving const pointer and NULL produces incorrect result.

	* g++.old-deja/g++.other/typename1.C: New test; template-dependent
 	type name without `typename' should be rejected with -pedantic.

Fri Oct  2 21:55:58 1998  Richard Henderson  <rth@cygnus.com>

	* g++.old-deja/g++.other/addrof1.C: New test.

Thu Oct  1 17:15:26 1998  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/compile/981001-1.c: New test.
	* gcc.c-torture/execute/981001-1.c: New test.

Thu Oct  1 19:05:20 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/981001-2.c: New test.
	* gcc.c-torture/compile/981001-3.c: New test.
	* gcc.c-torture/compile/981001-4.c: New test.

1998-10-01  Robert Lipe  <robertl@dgii.com>

	* lib/objc.exp (objc_target_compile): Add -L during compiles for
	multilibbed hosts.   Idea grafted from g77.exp.

1998-09-30  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/u77-test.f (main): Excise `hostnm' to
	avoid losing on systems which need -lsocket.

1998-09-28  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/bitfld1.C: Expected failure.
	* g++.old-deja/g++.other/nested2.C: Ditto.
	* g++.old-deja/g++.robertl/eb132.C: No longer an expected
	failure.

1998-09-26  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/bitfld1.C: Built-in operator!= should be
	preferred over template operator!= for enum bitfields.

1998-09-18  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/nested2.C: Different virtual base classes
 	that happen to have the same base name, but in different scopes,
 	are incorrectly rejected.

1998-09-16  Richard Henderson  <rth@cygnus.com>

	* g++.old-deja/g++.brendan/array1.C: Size array via arithmetic based
	on the native word size instead of an integer literal.

1998-09-15  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/static2.C: Invocation of static data
 	member of type pointer-to-function denoted as non-static member.

	* g++.old-deja/g++.other/typedef5.C: Add some more tests involving
	checks involving function types and aliases.

1998-09-12  Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/typedef5.C: Check whether typedefs can be
 	redefined to the same non-trivial type.

	* g++.old-deja/g++.pt/explicit73.C: Test for proper
 	namespace-qualification of template specializations declared in
 	other namespaces.

	* g++.old-deja/g++.other/friend4.C: Check whether it is possible
	to declare a subset of the specializations of a template function
	as friends of specializations of a template class.

	* g++.old-deja/g++.pt/explicit71.C: Make sure specializations of
 	member templates that do not fully specialize the enclosing
 	template class are rejected.

1998-09-11  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/u77-test.f: Fix bad consistency checks.

1998-09-08  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/u77-test.f (main): New file, somewhat
	altered from libf2c/libU77 version.

1998-09-06  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/io0.f: Test formatted direct i/o too.

1998-09-04  Reid M. Pinchback  <reidmp@MIT.EDU>, Alexandre Oliva  <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.pt/explicit72.C: Ensure that char and
	(un)signed char are different types for template specialization
	purposes.

Thu Sep  3 00:40:32 1998  Ovidiu Predescu  <ovidiu@aracnet.com>

	* lib/{objc.exp,objc-torture.exp}: New files for objc testing harness.
	* objc: ObjC testsuite.

Mon Aug 31 12:00:00 1998  Catherine Moore  <clm@cygnus.com>

	* gcc.c-torture/execute/941014-1.x:  New file.

Mon Aug 31 15:19:32 1998  Nick Clifton  <nickc@cygnus.com>

	* lib/c-torture.exp: Add support for
	torture_eval_before_compile and torture_eval_before_execute
	variables.

Sun Aug 30 17:38:20 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/980626-1.c: Delete this test.  We've declared the warning
	this test triggers valid.

Thu Aug 27 23:59:18 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/980827-1.c: New test.

Wed Aug 26 16:10:00 1997  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.c-torture/execute/loop-4b.c: New test.

Wed Aug 26 16:25:38 1998  Nick Clifton  <nickc@cygnus.com>

	* lib/c-torture.exp: Add support for
	torture_eval_before_compile and torture_eval_before_execute
	variables.

Tue Aug 25 19:42:13 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/980825-1.c: New test.

Mon Aug 24 14:20:32 1998  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/bcp-1.c (main): Fix optimize test loop to
	count number tests in opt_t0 not good_t0.

Mon Aug 24 16:38:52 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/930326-1.x: Fix typo.

1998-08-23  Mark Mitchell  <mark@markmitchell.com>

	* lib/old-dejagnu.exp: Make it possible to XFAIL a test that
	causes an ICE.

Fri Aug 21 23:59:18 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/unsorted/memtst.c: Reduce size of array when
	STACK_SIZE is defined.
	* gcc.c-torture/unsorted/stuct.c: Similarly.

	* gcc.c-torture/compile/980821-1.c: New test.

Fri Aug 21 03:14:04 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980526-2.c: Disable for targets with 16bit ints.

1998-08-19  Mark Mitchell  <mark@markmitchell.com>

	* lib/old-dejagnu.exp (old-dejagnu): Remove sig6/sig11 handling
	code.

1998-08-09  Mark Mitchell  <mark@markmitchell.com>

	* lib/old-dejagnu.exp: Revise handling of `Internal compiler
	error'.

Tue Aug 18 19:19:50 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/*.x: Some updates for the h8300 targets.

Sun Aug 16 01:29:19 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/980816-1.c: New test.

	* gcc.dg/980816-1.c: New test.

Thu Aug 13 00:13:55 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/ieee/ieee.exp: Pass -ffloat-store to
	compiler for ieee tests.

1998-08-01  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/compile/980729-0.f: New test.

1998-07-30  Ken Raeburn  <raeburn@cygnus.com>

	* gcc.c-torture/special/eeprof-1.c: New test, for
	-finstrument-functions.
	* gcc.c-torture/special/special.exp: Run it.

Wed Jul 29 00:17:18 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/980729-1.c: New test.

Mon Jul 27 11:05:07 1998  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/ieee/930529-1.c (main): Check to see if
	__thumb__ is defined, and test for ARM style doubles if so.

1998-07-26  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/noncompile/980615-0.f: New test.

Sun Jul 26 01:15:56 1998  H.J. Lu  (hjl@gnu.org)

	* gcc.dg/980312-1.c: Do link instead of compile.
	* gcc.dg/980313-1.c: Likewise.

Sun Jul 26 01:05:02 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/980726-1.c: New test.

1998-07-25  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/io0.f: New test.

Fri Jul 24 11:02:43 1998  Nick Clifton  <nickc@cygnus.com>

	* gcc.c-torture/execute/comp-goto-1.c (main): Make main() return
	an int.

Thu Jun 18 15:12:30 1998  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/980618-{1,2}.c: New tests that showed up
	m32r bugs.

Fri Jul 17 14:19:32 1998  Nick Clifton  <nickc@cygnus.com>

	* gcc.dg/980626-1.c: Expect failures for all toolchains until
	c-decl.c:grokdeclarator can handle mode attributes.

Thu Jul 16 21:42:50 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980716-1.c: New test.

Mon Jul 13 22:26:37 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/920715-1.x: No longer expected to fail on
	the mn10200.
	* gcc.c-torture/execute/strct-varg-1.x: New file.  Expect failure on
	the mn10200.
	* gcc.c-torture/execute/va-arg-3.x: Similarly.
	* gcc.c-torture/compile/930326-1.x: Similarly.

1998-07-13  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/auto0.f, g77.f-torture/execute/auto1.f:
	New test from Craig.

1998-07-12  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/noncompile/980616-0.f: New test.

	* g77.f-torture/execute/970816-3.f:  New test from Craig.

Fri Jul 10 23:43:33 1998 Martin von Loewis <martin@mira.isdn.cs.tu-berlin.de>

	*  g++.other/singleton.C: Return error value instead of taking
	SIGSEGV.

Fri Jul 10 10:02:03 1998  Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>

	*  g++.other/singleton.C: New test.   Warning is under dispute.
	Runtime crash is not.

Thu Jul  9 23:07:45 1998  Martin von Loewis <martin@mira.isdn.cs.tu-berlin.de>

	* g++.ns/{alias2.C, alias5.C, koenig4.C, lookup3.C ns13.C,
	ns14.C, ns15.C, template3.C, undef1.C, using4.C, using5.C,
	using6.C, using7.C}:  New namespace tests.

Thu Jul  9 22:44:49 1998  Alexandre Oliva   <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/partspec1.C: Test matching of partial
	specialization with typedef'ed names used as array indexes.

Thu Jul  9 00:38:51 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980709-1.c: New test.

	* gcc.dg/980709-1.c: New test.

Tue Jul  7 13:41:27 1998  Richard Henderson  <rth@cygnus.com>

	* gcc.c-torture/execute/bcp-1.c: New test.

Tue Jul  7 11:49:04 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980707-1.c: New test.

Mon Jul  6 18:20:27 1998  Kamil Iskra  <iskra@student.uci.agh.edu.pl>

	* gcc.c-torture/compile/980706-1.c: New test.

1998-07-01  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/980701-0.f,
	g77.f-torture/execute/980701-1.f: New test from Craig.

Wed Jul  1 00:52:51 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/compile/980701-1.c: New test.

	* gcc.c-torture/execute/980701-1.c: New test.

Tue Jun 30 11:51:42 1998  Klaus-Georg Adams  <Klaus-Georg.Adams@chemie.uni-ka
rlsruhe.de>

	* g++.old-deja/g++.robertl/eb132.C: New test.
	* g++.old-deja/g++.robertl/eb133.C: Likewise.

1998-06-29  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/980628-7.f,
	g77.f-torture/execute/980628-8.f,
	g77.f-torture/execute/980628-9.f,
	g77.f-torture/execute/980628-10.f: New tests from Craig.

	* g77.f-torture/execute/980628-3.f: Remove mail headers.

Sun Jun 28 12:49:02 1998  Jeffrey A Law  (law@cygnus.com)

	* g77.f-torture/execute/980628-4.f: New test from Craig.
	* g77.f-torture/execute/980628-5.f: Likewise.
	* g77.f-torture/execute/980628-2.f: Likewise.
	* g77.f-torture/execute/980628-0.f: Likewise.
	* g77.f-torture/execute/980628-1.f: Likewise.
	* g77.f-torture/execute/980628-3.f: Likewise.
	* g77.f-torture/execute/980628-6.f: Likewise.

Sun Jun 28 00:37:26 1998  Jeffrey A Law  (law@cygnus.com)

	* lib/g77.exp (default_g77_version): Tweak to make it work in a build
	directory when nothing has been installed yet.

Sat Jun 27 23:23:18 1998  Carlo Wood  <carlo@runaway.xs4all.nl>

	* gcc.c-torture/special/special.exp: Handle newer versions of
	dejagnu.

Fri Jun 26 17:57:40 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/980626-1.c: New test.

Fri Jun 19 23:26:12 1998  Bruno Haible <haible@ilog.fr>

	* gcc.misc-tests/m-un-2.c: New test.
	* g++.old-deja/g++.other/warn01.c: Likewise.

Fri Jun 19 14:06:36 1998  Robert Lipe  <robertl@dgii.com>

	* gcc.dg/980414-1.c: Move comments outside of ASM to improve
	compatibility with assmblers with a different comment character.
	Eliminate use of GAS-specific extensions.

Fri Jun 19 02:05:14 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/ieee/980619-1.c: New test.

Fri Jun 19 00:58:11 1998  Robert Lipe  <robertl@dgii.com>

	*lib/g77.exp: Replace search for libf2c.a with search for newly
	renamed libg2c.a

Wed Jun 17 18:53:12 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980617-1.c: New test.

Fri Jun 12 01:08:49 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980612-1.c: New test.

Mon Jun  8 02:13:42 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/980523-1.c: Only test on ppc-linux.
	* gcc.dg/980526-1.c, gcc.dg/switch-1.c: Likewise.

	* gcc.c-torture/execute/980608-1.c: New test.

Fri Jun  5 21:54:26 1997  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.c-torture/execute/980605-1.c: New test.

Thu Jun  4 01:39:24 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980604-1.c: New test.

Tue Jun  2 20:51:43 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/980602-1.c: New test.
	* gcc.c-torture/execute/980602-2.c: Likewise.

1998-06-02  Dave Love  <d.love@dl.ac.uk>

	* 970125-0.f: Fix per JCB.  Add commentary.

Sun May 31 23:23:29 1998  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/ieee/mzero2.c: New test to better test
	IEEE -0 support.

Fri May 29 01:10:12 1998  Peter Leven <leven@lpr.e-technik.tu-muenchen.de>

	* gcc.c-torture/execute/ieee/fp-cmp-1.c: Set up signal handler
	earlier.

Thu May 28 00:17:42 1998  Catherine Moore <clm@cygnus.com>

	* gcc.c-torture/execute/980526-3.c: New test.

1998-05-27  Manfred Hollstein  <manfred@s-direktnet.de>

	* g++.old-deja/g++.jason/thunk2.C: Setup this test to be expected to
	fail on m68k-motorola-sysv and m88k-motorola-sysv3.
	* g++.old-deja/g++.jason/thunk3.C: Add m68k-motorola-sysv and
	m88k-motorola-sysv3 to XFAIL.

Tue May 26 23:58:03 1998  Franz Sirl <Franz.Sirl-kernel@lauterbach.com>

	* gcc.dg/980526-1.c: New test.
	* gcc.c-torture/execute/980526-2.c: New test.

Tue May 26 23:40:40 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/980523-1.c: Change "ppc" to "powerpc".

	* gcc.c-torture/execute/980526-1.c: New test.

1998-05-26  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/alpha2.f: Add runtime test.

1998-05-24  Jason Merrill  <jason@yorick.cygnus.com>

	* g++.old-deja/old-deja.exp: Strip leading directories.

	* lib/old-dejagnu.exp: All tests fail if we got an internal compiler
	error for the line.  Don't run multiple tests for the same line.

Sat May 23 23:27:10 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/980523-1.c: New test.

1998-05-23  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/compile/970915-0.f: New test.

1998-05-23  Jason Merrill  <jason@yorick.cygnus.com>

	* lib/old-dejagnu.exp: Ignore C++ "instantiated from" mesages.

Thu May 21 23:23:21 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/980520-1.c: New test.

Wed May 20 14:37:15 1998  Manfred Hollstein  <manfred@s-direktnet.de>

	* gcc.dg/980502-1.c: Fix return type.

Wed May 20 11:29:48 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/{980502-1.c, clobbers.c}: New tests.
	* gcc.c-torture/compile/{980504-1.c, 980506-1.c}: Likewise.
	* gcc.c-torture/compile/{980506-2.c, 980611-1.c}: Likewise.
	* gcc.c-torture/execute/{980505-1.c, 980505-2.c, 980506-1.c}: Likewise.
	* gcc.c-torture/execute/{980506-2.c, 980506-3.c}: Likewise.

1998-05-20  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/980520-1.f: New test.

1998-05-15  Dave Love  <d.love@dl.ac.uk>

	* lib/mike-g77.exp: New file.

	* g77.f-torture/noncompile/noncompile.exp,
	g77.f-torture/noncompile/check0.f: New files.

1998-05-14  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/short.f, g77.f-torture/execute/le.f,
	g77.f-torture/execute/exp.f, g77.f-torture/execute/erfc.f,
	g77.f-torture/execute/dnrm2.f, g77.f-torture/execute/dcomplex.f,
	g77.f-torture/execute/cpp.F, g77.f-torture/execute/complex_1.f,
	g77.f-torture/execute/claus.f, g77.f-torture/execute/cabs.f: Call
	abort where appropriate.

Tue May  5 19:20:13 1998  Michael Meissner  <meissner@cygnus.com>

	* lib/c-torture.exp (TORTURE_OPTIONS): Add -Os to options.
	* lib/f-torture.exp (TORTURE_OPTIONS): Ditto.

1998-04-29  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/compile/980419-1.f: Removed since doesn't compile.

1998-04-27  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/compile/980427-0.f: New test.

1998-04-24  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/compile/980424-0.f: New test.

1998-04-19  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/compile/980419-2.f (main): New test.
	* g77.f-torture/compile/970125-0.f: New test.
	* g77.f-torture/compile/980419-1.f: New test.

Wed Apr  8 13:09:15 1998  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/execute/980407-1.c: Delete test.  Is duplicate
	of loop-4.c.

Tue Apr  7 12:01:24 1998  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/execute/980407-1.c: New test from Joern Rennecke.

Fri Apr  3 12:27:49 1998  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/compile/980329-1.c: New test.

Wed Mar 18 16:22:22 1998  Jim Wilson  <wilson@cygnus.com>

	* gcc.dg/980313-1.c: New test for fp conditional move on PPro.
	* gcc.dg/980312-1.c: Fix typo in -march command.

Mon Mar 16 20:01:30 1998  H.J. Lu  (hjl@gnu.org)

	* gcc.dg/980312-1.c: New test for fp conditional move on PPro.

Wed Mar 11 13:08:48 1998  Robert Lipe  <robertl@dgii.com>

	* g77.f-torture/execute/980310-5.f: Deleted.  Craig Burley and
	Dave Love agree the Fortran source is bogus.

Wed Mar 11 00:03:49 1998  Robert Lipe  <robertl@dgii.com>

	* g77.f-torture/compile/980310-1.f, g77.f-torture/compile/980310-2.f
	g77.f-torture/compile/980310-3.f, g77.f-torture/compile/980310-4.f
	g77.f-torture/compile/980310-6.f, g77.f-torture/compile/980310-7.f
	g77.f-torture/compile/980310-8.f: New tests from egcs-bugs archives.
	* g77.f-torture/execute/980310-5.f: New test from egcs-bugs archives.

Tue Mar 10 00:31:51 1998  Alexandre Oliva   <oliva@dcc.unicamp.br>

	* g++.old-deja/g++.other/friend1.C: New test.

1998-02-18  Dave Love  <d.love@dl.ac.uk>

	* g77.f-torture/execute/dnrm2.f (dnrm2): Avoid uninitialized (and
	possibly uninitialized) variables and declare dnrm2.

Mon Feb 23 15:16:53 1998  Robert Lipe <robertl@dgii.com>

	From Bruno Haible <haible@ilog.fr>:
	* gcc.c-torture/execute/980223.c: New test.

Fri Feb 13 00:36:07 1998  Jeffrey A Law  (law@cygnus.com)

	* gcc.dg/ifelse-1.c: New test.

Mon Feb  9 02:08:47 1998  H.J. Lu  (hjl@gnu.org)

	* lib/g77.exp (g77_target_compile): Fix multilibs for libf2c.

	  * lib/old-dejagnu.exp (old-dejagnu): Added the
	  "execution test - XFAIL *-*-*" handling in the spirit of
	  "excess errors test -". Changed the "execution test fails"
	  handling to be like "excess errors test fails".
	  * Update various tests accordingly.

Fri Feb  6 14:30:48 1998  Jim Wilson  <wilson@cygnus.com>

	* gcc.c-torture/execute/980205.c: New test.

Sun Jan 18 01:33:59 1998  Jeffrey A Law  (law@cygnus.com)

	* lib/c-torture.exp: Look for .x files instead of .cexp files.
	* lib/f-torture.exp: Similarly.
	* gcc.c-torture: Rename all .cexp files to .x files.

Mon Dec  8 23:55:26 1997  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.c-torture/noncompile/noncompile.exp (921102-1.c): Fixed comment.
	(940510-1.c): Removed duplicate.
	(971104-1.c): New test.

Tue Nov 25 16:18:51 1997  Kate Hedstrom  (kate@ahab.rutgers.edu)

	  * lib/f-torture.exp: Improve error and loop detection.

Wed Nov 19 14:27:04 1997  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/950221-1.c (filler): If STACK_SIZE is defined,
	use that to size the filler array.

Fri Sep 26 10:50:53 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/c-torture.exp(c-torture-execute): Fix typo.

	* lib/old-dejagnu.exp(old-dejagnu): Use a name derived from the
	testcase as the executable name. Keep the executable around if
	the test fails.

Fri Sep 19 17:19:53 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/c-torture.exp (TORTURE_OPTIONS): Removed unnecessary
 	changes.  Only test one -g option, and move it to the end of the
 	list of options to test.

Fri Sep 19 17:58:00 1997  Michael Meissner  <meissner@cygnus.com>

	* lib/c-torture.exp (TORTURE_OPTIONS): Check for the environment
	variable GCC_TORTURE_OPTIONS to supply default switches separated
	by colons.  If no environment variable, run tests with -O0 -g, -O1
	-g, and -O2 -g as well.

Wed Sep 17 10:12:26 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/plumhall.exp: Don't set PHSRC in this file. Add a few
	explanatory comments. Fix indentation.

Mon Sep 15 00:36:53 1997  Jeffrey A Law  (law@cygnus.com)

	* lib/g++.exp (g++_init): Look for xgcc in $basedir too.

Thu Sep 11 13:54:47 1997  Jeffrey A Law  (law@cygnus.com)

	* g++.old-deja/g++.brendan/scope4.C: No longer expected to fail.
	* g++.old-deja/g++.mike/p7325.C: Likewise.
	* g++.old-deja/g++.mike/eh51.C: No longer expected to fail on the PA.

Thu Sep 11 10:00:03 1997  Alexandre Oliva  (oliva@dcc.unicamp.br)

	* g++.old-deja/g++.brendan/crash20.C: Rework to avoid libg++.
	* g++.old-deja/g++.brendan/crash30.C: Likewise.
	* g++.old-deja/g++.brendan/crash39.C: Likewise.
	* g++.old-deja/g++.law/operators4.C: Likewise.

Thu Sep 11 09:53:40 1997  Joe Buck  (jbuck@synopsys.com)

	* g++.old-deja/g++.mike/p658.C: eliminate <bool.h> use.
	* g++.old-deja/g++.mike/p784.C: Ditto.
	* g++.old-deja/g++.mike/p785.C: Ditto.

Fri Sep  5 00:21:42 1997  Jeffrey A Law  (law@cygnus.com)

	  * gcc.c-torture/execute/cbrt.c: Tweak to work on more targets.

Wed Sep  3 17:29:35 1997  Bob Manson  <manson@charmed.cygnus.com>

	* gcc.c-torture/execute/ieee/ieee.exp: Check for ieee_multilib_flags
	target feature; pass this to c-torture-execute as needed.

Wed Sep  3 17:15:00 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/c-torture.exp(c-torture-execute): If the previous and the
 	current executables being tested are identical, we don't need to
 	run the executable again. Try to make the executable names
 	unique. Add an optional argument for passing additional compiler
 	flags.

Tue Sep  2 16:34:31 1997  Doug Evans  <dje@canuck.cygnus.com>

	* lib/gcc-dg.exp (gcc-dg-test): Fix typos setting compile_type.

Fri Aug 29 12:48:09 1997  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/921007-1.c: Make strcmp static.

Thu Jul 31 12:17:24 1997  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/920501-9.c: Fix to work on targets with
	32bit or larger longs.

	* gcc.c-torture/execute/961017-2.c: Fix to work on targets which
	have either a 32bit long or 32bit int.

Tue Jul 29 00:40:38 1997  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.c-torture/execute/conversion.c (test_float_to_integer):
	Make double precision tests dependent on sizeof (double).

Wed Jul  9 15:15:40 1997  Bob Manson  <manson@charmed.cygnus.com>

	* gcc.prms/5403.c: Allow CRLFs to occur at the start of the output
	too.

Tue Jun 17 22:11:16 1997  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.c-torture/compile/961203-1.cexp: New script.

Mon Jun 16 15:27:06 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/g++.exp(g++_init): Use g++_include_flags instead of making
	up the includes ourselves.

Wed Jun 11 17:33:21 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/plumhall.exp: Remove random include, and add a few
	verbose messages for debugging.

Fri Jun  6 14:23:24 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/g++.exp: Use g++_link_flags from libgloss.exp, instead
	of trying to do it ourselves.

Wed Jun  4 03:38:50 1997  J"orn Rennecke <amylaar@cygnus.co.uk>

	* gcc.c-torture/execute/ieee/ieee.exp: Set -mieee for SH.

Wed Jun  4 18:43:55 1997  Bob Manson  <manson@charmed.cygnus.com>

	* gcc.prms/5403.c: Made regexp a bit less strict.

Tue Jun  3 15:12:39 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/mike-gcc.exp: Don't use global exec_output anymore. Output
	is returned from remote_load instead.
	* lib/plumhall.exp: Ditto.
	* lib/mike-g++.exp: Ditto.
	* lib/old-dejagnu.exp: Ditto.
	* lib/c-torture.exp: Ditto.

Fri May 30 23:15:15 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/g++.exp: Use build_wrapper procedure.
	* lib/gcc.exp: Ditto.

Tue May 20 15:23:27 1997  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/*.c: Include stdlib.h instead of using
	an old-style decl for malloc.  Fixes tests to work when
	sizeof (int) != sizeof (size_t).

Thu May 15 14:00:04 1997  Mike Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/va-arg-3.c: If NO_VARARGS is defined, nop test.

	* gcc.c-torture/execute/strct-varg-1.c: If NO_VARARGS is defined,
	use stdargs.h interface.

Thu May 15 14:10:39 1997  Mike Meissner  <meissner@cygnus.com>

	* lib/gcc.exp (gcc_target_compile): If gcc,no_varargs, define
	NO_VARARGS when compiling.

Thu May  1 14:49:19 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/plumhall.exp(ph_includes): New procedure.
	(ph_make): Use it.
	(ph_compiler): Ditto.

	* lib/g++.exp: Rename test-glue.c to testglue.c.
	* lib/gcc.exp: Ditto.

Thu Apr 10 14:50:26 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/g++.exp(g++init): Don't try to be smart, always run g++_init
 	to completion when it's called.

Fri Mar 21 16:34:52 1997  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/920501-7.c (main,x): If NO_LABELS_VALUES
	is defined, don't do test.

Thu Mar 20 09:50:32 1997  Doug Evans  <dje@canuck.cygnus.com>

	* lib/plumhall.exp (ph_make): Comment out errorCode=NONE test
	for object files.
	(ph_summary): Mark skipped testcases as untested, not unresolved.

	* lib/plumhall.exp (ph_make): If unresolved because of bad
	errorCode, record errorCode in log file.
	(*): Replace send_log/verbose with verbose -log.

Wed Mar 19 13:06:26 1997  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/ieee/rbug.c (main): Don't do long long to
	double conversion if double isn't at least 8 bytes.

	* gcc.c-torture/execute/cvt-1.c: Make all functions use long, not
	int to work with targets where int is 16 bits.

	* gcc.c-torture/execute/920715-1.c (main): If double isn't at least
	8 bytes, just exit, since 4 byte doubles don't have enough bits of
	precision for the test to complete.

Fri Mar 14 17:51:02 1997  Michael Meissner  <meissner@cygnus.com>

	* gcc.c-torture/execute/920715-1.cexp (d10v-*-*): Expect to fail
	if d10v is not compiled with the -mdouble64 flag.
	* gcc.c-torture/execute/ieee/rbug.cexp (d10v-*-*): Ditto.

	* gcc.c-torture/execute/cvt-1.cexp (d10v-*-*): Expect to fail if
	d10v is not compiled with the -mint32 flag.

Thu Mar 13 16:09:28 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/plumhall.exp: Use incr_count.

Wed Mar 12 10:01:33 1997  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture: Update to c-torture-1.45.

Sun Feb 23 18:12:04 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/gcc.exp(gcc_init): Add args parameter (which will contain
 	the name of the expect testcase file).

	* lib/g++.exp(g++_init): Ditto.

Thu Feb 20 13:53:05 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/g++.exp(g++_exit): $gluefile lives on the build, not
	the host.

	* lib/gcc.exp(gcc_exit): New procedure.

Wed Feb 19 15:16:16 1997  Bob Manson  <manson@charmed.cygnus.com>

	* g++.old-deja/g++.rfg/*: Added "Build don't link" and ERROR
	specs where appropriate.

	* g++.old-deja/g++.arm/*: Added additional ERROR checks
	because of new "candidates are" messages, and removed a few

	* Converted all non-old-style g++ testcases to old-style, and
	moved into g++.old-deja.

Fri Feb 14 11:46:46 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/old-dejagnu.exp(old-dejagnu): Add various "skip if"
	options.

	* lib/gcc.exp(gcc_init): Don't set gluefile unless the compile
	succeeded.

	* lib/g++.exp(g++_init): Don't unset gluefile unless it exists.

Thu Feb 13 17:30:46 1997  Michael Meissner  <meissner@cygnus.com>

	* lib/gcc.exp (gcc_target_compile): Add support for defining
	NO_TRAMPOLINES and NO_LABEL_VALUES if the baseboard file indicates
	the machine doesn't have those features.

Tue Feb 11 12:57:11 1997  Bob Manson  <manson@charmed.cygnus.com>

	* g++.law/operators4.exp: Don't use LIBS.

Sat Feb  8 14:45:55 1997  Bob Manson  <manson@charmed.cygnus.com>

	* g++.law/virtual1.exp: Don't use CXX_FLAGS.

	* lib/mike-g++.exp: Don't set the compiler to be tested here.
	* lib/g++.exp: Set it here instead. Also, allow use of the
	--tool_exec and --tool_opt options. Change CXX to
	GXX_UNDER_TEST.

	* g++.old-deja/old-deja.exp: Change CXX to GXX_UNDER_TEST.

	* lib/gcc.exp: Allow use of --tool_exec and --tool_opt.

Fri Feb  7 12:55:45 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/old-dejagnu.exp: Use prune_warnings instead of
 	prune_system_crud.
	* lib/mike-g++.exp: Ditto.
	* lib/gcc.exp: Ditto.
	* lib/g++.exp: Ditto.

	* lib/g++.exp: Include both libstdc++ and libstdc++/stl.

Fri Feb  7 10:41:53 1997  Jeffrey A Law  (law@cygnus.com)

	  * 941014-2.c: Include stdlib.h
	  * 960327-1.c: Include stdio.h
	  * dbra.c, index-1.c: Don't assume ints are 32bits.

Tue Feb  4 12:51:09 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/gcc.exp: Add gcc,stack_size target feature.

	* lib/g++.exp(g++_target_compile): Add the include and link
	paths here, not in two other places. And, it's $options, not
	options.

	* lib/mike-g++.exp(postbase): Remove the code that determines
	the correct include and link paths.
	* g++.old-deja/old-deja.exp: Ditto.

Mon Feb  3 19:00:07 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/g++.exp(g++_init): target_compile no longer returns the
	filename of the result.

Sun Feb  2 14:42:34 1997  Bob Manson  <manson@charmed.cygnus.com>

	* gcc.misc-tests/gcov.exp: Add -nocomplain to the
	call to glob.

	* gcc.c-torture/special/special.exp: Change call to
 	gcc_target_compile to include the object file.

Sun Feb  2 17:11:50 1997  Ian Lance Taylor  <ian@cygnus.com>

	* gcc.c-torture/special/special.exp: Correct misspelling in last
	change.

Sat Feb  1 12:34:23 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/plumhall.exp(ph_summary): Log the entire output of the
 	executable. Return -1 if there were any failures, 0 otherwise.
	(ph_execute): Return -1 if there were any failures, 0 otherwise.
	(ph_make): Clean up objects and executables that were built
	if the tests succeeded.

Thu Jan 30 13:45:56 1997  Bob Manson  <manson@charmed.cygnus.com>

	* g++.old-deja/old-deja.exp: Add -L and -I flags so we include
	libraries and includes in the build tree as appropriate.

Wed Jan 29 17:19:34 1997  Bob Manson  <manson@charmed.cygnus.com>

	* lib/c-torture.exp: Instead of looking for the global variable
	NO_LONG_LONG, check to see if that's a feature of the target.

Wed Jan 29 00:36:25 1997  Bob Manson  <manson@charmed.cygnus.com>

	* config/default.exp: Minimize. Delete the remainer of the files in
	config;	this functionality is now in devo/dejagnu/config.

	g++.*/*: Pass any additional flags used to compile to postbase;
	delete CXXFLAGS.

	gcc.c-torture/*: Remove calls to gcc_init and gcc_finish; this
	is now done by runtest.exp. Use gcc_target_compile instead of
	compile.

	lib/c-torture.exp: Use gcc_target_compile instead of compile.
	Remove references to CFLAGS. Use remote_file instead of
	calling rm -f.
	(c-torture): Take a list of arguments to use to compile this
	testcase.

	lib/g++.exp: Simplify. Use target_compile instead of compile.
	lib/gcc-dg.exp: Ditto.
	lib/gcc.exp: Ditto.
	lib/mike-{gcc,g++}.exp: Ditto.
	lib/old-dejagnu.exp: Ditto.
	lib/plumhall.exp: Ditto.

Wed Jan  8 14:43:07 1997  Jim Wilson  <wilson@cygnus.com>

	* lib/plumhall.exp (ph_make): Use CFLAGS and ANSICFLAGS when linking.
	(ph_linker): Likewise.

Wed Nov 13 16:04:19 1996  Joern Rennecke <amylaar@cygnus.com>

	  * gcc.c-torture/execute/{loop-2e.c,loop-2f.c}: Only use
	MAP_ANON / MAP_ANONYMOUS if defined;
	else try to map from /dev/zero .

Tue Nov 12 23:30:12 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/{loop-2e.c,loop-2f.c}:  If MAP_ANON
	isn't defined, then define it to MAP_ANONYMOUS.

Tue Nov 12 11:57:49 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture: Update to c-torture-1.42 release.

Mon Nov 11 12:45:31 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture: Update to c-torture-1.41 release.

Sun Oct 27 18:56:18 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/enum-1.c: New test.  Will be in next
	c-torture release.

Thu Aug 15 11:09:36 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/gcc.exp (gcc_init): Always append the target_info to CFLAGS
	and LDFLAGS.  Fix second case to append the target_info ldflags
	onto LDFLAGS, not CFLAGS.
	* lib/g++.exp (g++_init): Add target_info stuff.
	* lib/old-dejagnu.exp (old-dejagnu-init): Likewise.  Add inclusion
	of libgloss and newlib flags for !native.

	* config/proelf.exp: Load remote.exp and do `push_target hppro'.
	(GDB): Fix relative path to go up another dir for finding gdb.

Thu Aug  8 17:03:27 1996  Rob Savoye  <rob@chinadoll.cygnus.com>

	* lib/gcc.exp(gcc_init): Set CFLAGS and LDFLAGS to their new
	versions in the target_info array, if they don't exist.

Fri Aug  2 15:39:03 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* config/vx.exp (${tool}_load): Fix syntax of `$shell_id < 0'.

Mon Jul  8 15:45:58 1996  Jim Wilson  <wilson@cygnus.com>

	* lib/g++.exp: Change all uses of $base_dir/ to $base_dir/../.
	* lib/gcc.exp, lib/old-dejagnu.exp: Likewise.

Mon Jul  1 15:53:00 1996  Bob Manson  <manson@charmed.cygnus.com>

	* lib/old-dejagnu.exp: Don't remove the output file before we've
	actually tested it. Don't append pwd to the path of the executable
	we're testing.

Sun Jun 30 14:37:50 1996  Doug Evans  <dje@canuck.cygnus.com>

	* lib/g++.exp (default_g++_start): Don't pass LDFLAGS, LIBS if -c.

Wed Jun 26 14:15:55 1996  Bob Manson  <manson@charmed.cygnus.com>

	* lib/old-dejagnu.exp (old-dejagnu): Add $tmpdir to specify a
 	temporary directory for compiler files, and set it to a default
 	value of /tmp. Set $output as the name of the output file from
 	compiling the testcase. Add a -o option to $cflags_var so the
 	compiler writes the final output file as $output. Set $executable
 	to $output.

	* lib/mike-g++.exp (postbase): Add $tmpdir to specify a temporary
 	directory for compiler files, and set it to /tmp if it doesn't
 	already have a value. Set $output_file to the name of the output
 	file from compiling the testcase. Add a -o option to CXXFLAGS so
 	the compiler writes the final output file as $output. Use $output
 	as the executable to be tested.

Mon Jun 24 17:12:16 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/g++.exp: Also add -Wl,-rpath,... for linux.

Sat Jun  8 15:12:24 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture/execute/pending-1.c: New test.  Still
	pending in Tege's queue.

Wed Apr 24 18:13:45 1996  Jim Wilson  <wilson@chestnut.cygnus.com>

	* lib/plumhall.exp (ph_summary): Add arguments name and exec_status.
	Add variables local_failcnt and local_unresolvedcnt.  Call gcc_fail
	if there were failures.  Call unresolved if there were unresolved
	testcases.  Call gcc_fail if program did not run to completion.
	(ph_make): Pass additional argument name to ph_execute.
	(ph_execute): Add new argument.  Pass additional arguments to
	ph_summary.  Call gcc_fail is there is no execution output.

Wed Apr 24 13:39:23 1996  Jeffrey A Law  (law@cygnus.com)

	* lib/plumhall.exp (proc_summary): Output relavent summary
	lines into the log so specific failures in plumhall can be
	investigated.

Wed Apr 10 13:23:45 1996  Jeffrey A Law  (law@cygnus.com)

	* lib/c-torture.exp: Provide a default value for $NO_LONG_LONG.
	(c-torture-execute): Don't try to execute tests which use
	"long long" types if $NO_LONG_LONG is nonzero.

Mon Apr  8 08:52:29 1996  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.c-torture/execute/ieee/ieee.exp: Run c-torture-execute,
	not c-torture.

	* gcc.ieee: Move from here.
	* gcc.c-torture/execute/ieee: To here.

Tue Mar 26 23:41:18 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture: Update to c-torture-1.41 release.

Fri Mar 22 15:49:24 1996  Jeffrey A Law  (law@cygnus.com)

	* lib/c-torture.exp (c-torture-execute): Remove "$executable",
	not "$output".

Thu Mar  7 12:37:08 1996  Doug Evans  <dje@charmed.cygnus.com>

	* lib/gcc.exp (default_gcc_start): Don't pass $LDFLAGS $LIBS if
	-c present.

Sat Mar  2 22:36:37 1996  Jeffrey A Law  (law@cygnus.com)

	* config/proelf.exp: Handle connecting to a simulator.

Wed Jan 31 00:58:15 1996  Jeffrey A Law  (law@cygnus.com)

	* config/proelf.exp: New file.  Enough framework that we can
	run c-torture tests on the proelf targets (or any other target
	that gdb can connect to for that matter).

Mon Jan 29 08:57:46 1996  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.c-torture/special/special.exp: Delete libs arg to dg-runtest.
	* gcc.ph/testing/limits/limits.exp: Likewise.  Don't pass $CFLAGS.

	* lib/plumhall.exp (ph_execute): Always call ph_summary if
	exec_output exists.

Sun Jan 28 11:28:43 1996  Doug Evans  <dje@charmed.cygnus.com>

	* config/sim.exp (SIM_TIME_LIMIT): New user settable variable.
	(${tool}_load): Use 240 seconds if SIM_TIME_LIMIT not set.

	* config/*.exp: Update FSF address.  Change result of ${tool}_load
	to pass/fail/unresolved/unsupported/untested.  Caller must now
	call unresolved/unsupported/untested.
	* lib/*.exp: Update FSF address.  Update to handle new results of
	${tool}_load.
	* lib/chill.exp (verbose): Delete.

Sat Jan 27 12:28:07 1996  Doug Evans  <dje@charmed.cygnus.com>

	* lib/gcc.exp (default_gcc_start): Change order of args to
	$LDFLAGS $CFLAGS $LIBS.
	* lib/gcc-dg.exp (gcc-dg-test): Arguments have changed, update.
	Save/set/restore CFLAGS.  Pass single arg to gcc_start.
	* gcc.dg/dg.exp: Delete libs arg in call to dg-runtest.
	(CC,CFLAGS,LIBS): Delete references. Don't pass $CFLAGS to dg-runtest.
	* gcc.misc-tests/dg-test.exp: Likewise.
	* gcc.misc-tests/msgs.exp: Likewise.
	* gcc.prms/prms.exp: Likewise.
	* gcc.misc-tests/gcov.exp: Delete libs arg in call to dg-runtest.
	(CFLAGS,LIBS): Delete references.  Don't pass $CFLAGS to dg-runtest.

	* lib/dg.exp: Deleted, moved to dejagnu/lib.

Wed Jan 24 18:37:00 1996  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* g++.old-deja/old-deja.exp: Add passing of $mathlib to old-dejagnu.

	* g++.old-deja/old-deja.exp: Move setting of runshlib from here...
	* lib/old-dejagnu.exp (old-dejagnu-init): ...to here.

	* lib/g++.exp (g++_init): Take out use of -rpath for the sun4, not
	necessary.

Sat Jan 20 17:22:08 1996  Brendan Kehoe  <brendan@cygnus.com>

	* g++.old-deja/old-deja.exp: Move setting of runshlib out of the
	global for loop; add use of $mathlib.
	* lib/old-dejagnu.exp (old-dejagnu-init): Put the runshlib
	settings here; set mathlib for anything but VxWorks.

Mon Jan 22 16:31:57 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture: Update to c-torture-1.40 release.

Wed Jan  3 00:54:33 1996  Jeffrey A Law  (law@cygnus.com)

	* gcc.ph/testing/limits/limits.exp: Load ${tool}-dg.exp, not
	dg.exp.

Sun Dec  3 16:17:42 1995  Jeffrey A. Law  <law@sethra.cygnus.com>

	* lib/c-torture.exp (c-torture-execute): Declare "output" as
	global.

Fri Nov 17 20:01:19 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/g++.exp (LIBS): Define if not already.
	* lib/gcc-dg.exp (gcc-dg-test): Set executable file as a.out.
	(gcc-dg-prune): Call prune_gcc_output.
	* lib/gcc.exp (prune_gcc_output): New proc.
	* gcc.c-torture/special (921210-1.c): Call prune_system_crud and
	prune_gcc_output.

Thu Nov 16 09:15:40 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/c-torture.exp (c-torture-compile): Fix calls to `unsupported'.
	(c-torture-execute): Likewise.	Rename `name' to `testcase'.

Wed Nov 15 23:04:36 1995  Jeffrey A Law  (law@cygnus.com)

	* gcc.c-torture: Update to c-torture-1.39 release.

Sat Nov  4 12:52:05 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/c-torture.exp (c-torture-execute): Don't return if one option
	fails, try others as well.

Thu Nov  2 09:28:35 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/c-torture.exp (c-torture-execute): This proc's result is `void'.
	If compilation fails, mark execute tests as `untested'.
	If test is marked as unsupported, don't mark compilation and
	execute tests as failed.

Wed Oct 25 20:57:55 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/g++.exp (g++_init): Don't link in libg++, and look to
	libstdc++ for whether or not we want to be doing shared
	libraries.  Delete link_curses since we don't need it anymore.
	* lib/mike-g++.exp (postbase): Don't link in libg++.
	* g++.old-deja/old-deja.exp: Likewise.

Mon Oct 23 13:05:11 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/g++.exp (CXX): Default to run `c++' instead of `g++'.

Tue Oct 17 15:24:47 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/g++.exp (g++_init): Also check for libg++.sl for the hppa.
	For that, add `-Wl,-a,shared_archive'.
	* g++.old-deja/old-deja.exp: Likewise.

Tue Oct 17 13:09:06 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/c-torture.exp (c-torture-execute): Ensure CFLAGS restored.

Mon Oct 16 23:13:32 1995  Brendan Kehoe  <brendan@cygnus.com>

	* lib/mike-g++.exp (postbase): Pay attention to the status of
	g++_load.

Mon Oct 16 19:28:32 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	  * g++.old-deja/old-deja.exp: Add $LIBS at the end of the args.

Mon Oct 16 13:48:58 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/gcc.exp (default_gcc_start): No longer need to log program
	being executed or its output, execute_anywhere does that now.
	* lib/g++.exp (default_g++_version): Call execute_anywhere.
	(default_g++_start): Likewise.  Delete calls to verbose/send_log.

Thu Oct 12 10:34:58 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* g++.old-deja/old-deja.exp: Updated the shared libg++ tests to be
	the same as those in lib/g++.exp.

Tue Oct 10 13:47:27 1995  Jeff Law  (law@hurl.cygnus.com)

	* gcc.c-torture: Update to c-torture-1.38 release.
	* gcc.ieee: Related changes.

Fri Oct  6 12:39:17 1995  Rob Savoye  <rob@darkstar.cygnus.com>

	* mike-gcc.exp, mike-g++.exp: Use "execute_anywhere" rather than
	"exec". Minor reformatting changes.

	* config/rom68k.exp (${tool}_load): Make it work in a canadian
	cross. This means all "exec" calls now work on a remote host as
	well.
	* lib/c-torture.exp (c-torture-compile): Make work for a canadian
	cross. Filter out the extra "\r\n" stuff that expect puts in.
	(c-torture-execute): Filter out the bogus warnings like
	c-torture-compile does. Add support for canadian cross.
	* lib/gcc.exp (default_gcc_version, default_gcc_start)
	Use execute_anywhere rather than calling exec directly. Now it
	works for canadian cross testing.

Thu Oct  5 10:06:45 1995  Brendan Kehoe  <brendan@rtl.cygnus.com>

	* lib/g++.exp: Add -nocomplain flag to glob.  Use catch to put the
	results into a variable, and check that rather than using file exists.

Wed Oct  4 16:31:02 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/g++.exp: Use glob to see libg++.so.2.7.0, since sun4 doesn't
	create a libg++.so.  For sunos4.1.*, also add -ltermcap.

Tue Sep 26 10:15:14 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* g++.old-deja/old-deja.exp: Create and pass runshlib and
	lib_curses if there's a shared libg++ in the build tree.

Fri Sep 22 10:47:24 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/mike-{gcc,g++}.exp (postbase): Restore CFLAGS, CXX_FLAGS, LIBS
	if not supported target.

Fri Sep 22 09:22:07 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/g++.exp (g++_init): Move empty setting of runshlib and
	link_curses up to always happen, not just for native builds.

Thu Sep 21 10:23:32 1995  Jeff Law  (law@snake.cs.utah.edu)

	* gcc.c-torture: Update to c-torture-1.36 release.
	* gcc.failure: Related changes.

Wed Sep 20 10:56:26 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/plumhall.exp (PHSRC, PHDST): Allow config files to override.

Tue Sep 19 17:26:07 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/g++.exp (g++_init): Put the shared and math lib stuff in here.
	* lib/mike-g++.exp (postbase): Not in here.  Still reference
	runshlib, link_curses, and mathlib for link and run.

	* lib/mike-g++.exp (postbase): If we've built a libg++.so, then
	pass the runtime shared library options for Solaris, OSF/1, and
	Irix5, and link with -lcurses to avoid unresolved references.

Wed Sep 13 15:28:10 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/gcc.exp (gcc_init): Return if gcc_initialized is 1, so we
	only run once.

Wed Sep 13 10:51:52 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/c-torture.exp (c-torture-compile): Don't alter CFLAGS.

Mon Sep 11 11:02:03 1995  Jeff Law  (law@snake.cs.utah.edu)

	* gcc.c-torture: Update to c-torture-1.35 release.  Note we
	do not have a framework for the "compat" tests yet.

Sat Sep  9 16:15:20 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/mike-g++.exp (postbase): New local variable `mathlib',
	set to null if we're testing vxworks5.1.  Use that instead of
	`-lm' in the setting of LIBS for link and run.

Fri Sep  8 13:53:38 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* config/rom68k.exp (${tool}_load): Major changes to make it
	work.  Verified that it does in fact return the stuff in
	exec_output properly.  Catch any Emul or any TRAP other than 0.

Thu Sep  7 23:04:06 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* lib/mike-g++.exp (prebase): Call g++_init at the end to set
	LDFLAGS properly for targets that need stuff from libgloss.
	* lib/g++.exp (g++_init): Return if gpp_initialized is 1, so we
	only run once.
	(gpp_initialized): New variable.

Wed Sep  6 21:56:13 1995  Rob Savoye  <rob@darkstar.cygnus.com>

	* config/rom68k.exp: Load libgloss.exp.
	* lib/gcc.exp (gcc_init): get proper flags for newlib and libgloss
	so we can produce a fully linked binary.
	* lib/g++.exp (g++_init): get proper flags for newlib and libgloss
	so we can produce a fully linked binary.

Sun Sep  3 13:25:26 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/plumhall.exp (ph_section): Watch for expected failures.
	Add missing `else'.

	* lib/c-torture.exp (c-torture-execute): Look for .cexp files to
	run the testcase.
	(c-torture): Likewise.

Mon Aug 28 11:23:38 1995  Doug Evans  <dje@cygnus.com>

	* gcc.dg/dg.exp (scan-assembler, scan-assembler-not): New procs.

	* lib/mike-g++.exp (mike_cleanup): New proc.
	(prebase): New globals compiler_result, not_compiler_result,
	target_regexp.
	(postbase): Likewise.  Call mike_cleanup.  Pass "--" to regexp to
	allow leading "-" in pattern.  Watch for unsupported tests.
	If $compiler_result is set, pattern match assembler code,
	and ditto for $not_compiler_result.
	* lib/mike-gcc.exp: Likewise.

	* lib/plumhall.exp (ph_execute): Only call ph_summary if
	execution "succeeded".

Mon Aug 14 14:03:53 1995  Doug Evans  <dje@canuck.cygnus.com>

	* config/win32.exp: New file.
	* lib/c-torture.exp (c-torture-execute): Handle $exe_ext.

Fri Aug  4 15:39:54 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/gcc-dg.exp (gcc-dg-prune): Mark testcases that fill ram as
	unsupported.
	* lib/mike-{gcc,g++}.exp (postbase): Likewise.
	* lib/{c-torture.exp,old-dejagnu.exp}: Likewise.
	* lib/{gcc,g++}.exp (${tool}_check_untested_p): New proc.

	* lib/mike-g++.exp (postbase): Delete alpha-*-* checking of
	"... without exceptions was ...".  That is now handled by
	prune_system_crud.
	* lib/old-dejagnu.exp (old-dejagnu): Likewise.

Tue Aug  1 11:09:33 1995  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.misc-tests/{acker1.c,dhry.c,dhry.h,matrix1.c,optbench.c,
	sieve.c,sort2.c}: New files.
	* gcc.misc-tests/{acker1.exp,dhry.exp,matrix1.exp,optbench.exp,
	sieve.exp,sort2.exp}: Drivers for them.

	* lib/mike-gcc.exp (program_output): New user settable variable.
	(postbase): Call prune_system_crud.  Also prune extraneous compiler
	messages.
	* lib/mike-g++.exp (program_output): New user settable variable.

	* gcc.misc-tests/mg.exp (compiler_output): Handle multiple lines.

	* config/sh.exp: Deleted (use sim.exp instead).

Fri Jul 28 11:33:46 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* config/vx.exp: Declare CHECKTASK as global.
	* config/vxworks29k.exp: Reduce to only set CHECKTASK, and load vx.exp.
	* lib/mike-g++.exp: Load [pwd]/a.out, not `./a.out'.
	* lib/old-dejagnu.exp: Load [pwd]/$executable.

Wed Jul 26 19:45:39 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>

	* config/vxworks29k.exp: New file, for the a29k-vxworks5.1
	target. Like vx.exp, only includes `vx29k.exp' instead of
	`vxworks.exp'.

Sun Jul 23 17:38:52 1995  Ian Lance Taylor  <ian@cygnus.com>

	* config/sim.exp: Increase time limit from 120 seconds to 240.

Thu Jul  6 11:07:38 1995  Jeffrey A. Law  <law@rtl.cygnus.com>

	* gcc.c-torture/execute/950628-1.c: New test.

Sat Jun 10 18:51:41 1995  Jeff Law  (law@snake.cs.utah.edu)

	* gcc.c-torture: Update with changes/additions from
	c-torture-1.34.

Mon Jun  5 17:58:07 1995  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.prms/prms.exp: Pass LDFLAGS to dg-test.

Sun Jun  4 05:13:57 1995  Jeff Law  (law@snake.cs.utah.edu)

	* gcc.c-torture/compile/funcptr-1.c: Test case for 7107.

Thu Jun  1 00:06:19 1995  Jeff Law  (law@snake.cs.utah.edu)

	* gcc.c-torture/compile/950512-1.c: New test.
	* gcc.c-torture/execute/strct-pack-4.c, strct-pack-5.c}: Likewise.
	* gcc.dg/struct-ret-1.c: Likewise.

Wed May 31 14:25:13 1995  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.c-torture/execute/{920410-1.c,921113-1.c,921208-2.c,
	  930106-1.c,memcpy-1.c}: Use STACK_SIZE if defined.

Tue May 30 11:19:54 1995  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.c-torture/special/920411-1.c: Deleted.
	* gcc.c-torture/special/special.exp: Delete 920411-1.c.

Mon May 22 16:55:11 1995  Doug Evans  <dje@chestnut.cygnus.com>

	* config/sim.exp (${tool}_load): Hack in call to bash to get a
	cpu limit.

Fri May 12 18:57:54 1995  Torbjorn Granlund  <tege@rtl.cygnus.com>

	* gcc.c-torture/execute/{950511-1.c,950512-1.c}: New tests.

Thu May  4 14:23:54 1995  Torbjorn Granlund  <tege@adder.cygnus.com>

	From kenner;
	* gcc.c-torture/execute/va-arg-2.c (f[0-9], f1[0-5]): Verify format
	is the proper length.
	* va-arg-3.c: Likewise.

Sun Apr 30 16:02:59 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/dg.exp: Moved to dejagnu/lib.  Copy kept here (for awhile).
	* lib/gcc-dg.exp: New file, gcc interface to dg.exp.

	* lib/gcc.exp (default_gcc_start): Delete old cruft.  Delete result.
	* lib/g++.exp (default_g++_start): Delete old cruft.

Tue Apr 25 17:20:18 1995  Torbjorn Granlund  <tege@cygnus.com>

	* gcc.c-torture/execute/memcpy-1.c: Decrease stack requirements from
	(2 * (1 << 18)) to (2 * (1 << 17)).

	* gcc.c-torture/execute/arith-rand.c: Avoid -0x80000000/-1.

Thu Apr 20 12:21:13 1995  J.T. Conklin  <jtc@rtl.cygnus.com>

	* config/rom68k.exp: Renamed from config/idp.exp

Tue Apr 18 13:33:26 1995  Torbjorn Granlund  <tege@rtl.cygnus.com>

	* c-torture/compile/921109-2.c

Tue Apr 18 10:45:12 1995  Mike Stump  <mrs@cygnus.com>

	* lib/old-dejagnu.exp: We expect Execution test failure if we expected
	excess errors.

Sat Apr 15 11:16:58 1995  Doug Evans  <dje@chestnut.cygnus.com>

	* lib/gcc.exp (default_gcc_start): Handle leading "-" in compiler
	output.
	* lib/g++.exp (default_g++_start): Likewise.

Wed Mar 29 16:34:03 1995  Torbjorn Granlund  <tege@adder.cygnus.com>

	* gcc.c-torture/compile/950329-1.c: New test.

Tue Mar 28 16:10:33 1995  J.T. Conklin  <jtc@rtl.cygnus.com>

	  * config/bug.exp (${tool}_load): Updated to use new remote_open
	  and remote_close procs.
	* config/idp.exp: New file.

Wed Mar 22 15:01:58 1995  Torbjorn Granlund  <tege@rtl.cygnus.com>

	* gcc.c-torture/execute/950322-1.c: New test.

Tue Mar 21 21:24:49 1995  Doug Evans  <dje@canuck.cygnus.com>

	* config/vx.exp (${tool}_load): Clean up testing of return code from
	vxworks_ld and vxworks_spawn.

Tue Mar 21 17:01:42 1995  Doug Evans  <dje@deneb.cygnus.com>

	* lib/c-torture.exp (c-torture-execute): Pass same text to pass/fail.

Mon Mar 13 14:49:42 1995  Mike Stump  <mrs@cygnus.com>

	* lib/old-deja.exp: Add `excess errors test - ' error, now one
	can mark excess errors on a machine by machine basis.  Note, the
	default is to not expect any excess errors, even when excess
	errors test - is given, so you will want to put an XFAIL ... on
	these lines.  For example, // excess errors test - XFAIL hppa*-*-*
	mips-*-* alpha-*-* m68k-*-* is how to expect excess errors on
	those 4 machines, but no others.

Fri Mar 10 12:33:04 1995  J.T. Conklin  <jtc@rtl.cygnus.com>

	* gcc.c-torture/execute/execute.exp (c-torture-execute): from here.
	* lib/c-torture.exp: to here.

Fri Mar 10 10:38:15 1995  Torbjorn Granlund  <tege@adder.cygnus.com>

	* gcc.c-torture/execute/950221-1.c: New test.
	* gcc.c-torture/execute/struct-ret-1.c: New test.
	* gcc.c-torture/compile/950221-1.c: New test.

	* gcc.c-torture/execute/941101-1.c (f): Fix typo, == was !=.

Fri Mar  3 16:28:35 1995  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.c-torture/execute/arith-1.c (main): Return 0.
	* gcc.c-torture/execute/arith-rand.c (main): Return 0.

Wed Mar  1 02:08:29 1995  Gerald Baumgartner  (gb@lorenzo.cs.purdue.edu)

	* g++.gb: New directory of tests, derived from my signature and
	class scoping tests.

	* g++.gb/{sig01.C, sig02.C, sig03.C, sig04.C}: New tests.
	* g++.gb/{sig05.C, sig06.C, sig07.C, sig08.C}: Likewise.
	* g++.gb/{sig09.C, sig10.C, sig11.C, sig12.C}: Likewise.
	* g++.gb/{sig13.C, sig14.C, sig15.C, sig16.C}: Likewise.
	* g++.gb/{sig17.C, sig18.C, sig19.C, sig20.C}: Likewise.
	* g++.gb/{sig21.C, sig22.C, sig23.C, sig24.C}: Likewise.
	* g++.gb/sig25.C: Likewise.

	* g++.gb/{sig01.exp, sig02.exp, sig03.exp, sig04.exp}: Run them.
	* g++.gb/{sig05.exp, sig06.exp, sig07.exp, sig08.exp}: Likewise.
	* g++.gb/{sig09.exp, sig10.exp, sig11.exp, sig12.exp}: Likewise.
	* g++.gb/{sig13.exp, sig14.exp, sig15.exp, sig16.exp}: Likewise.
	* g++.gb/{sig17.exp, sig18.exp, sig19.exp, sig20.exp}: Likewise.
	* g++.gb/{sig21.exp, sig22.exp, sig23.exp, sig24.exp}: Likewise.
	* g++.gb/sig25.exp: Likewise.

	* g++.gb/{scope01.C, scope02.C, scope03.C, scope04.C}: New tests.
	* g++.gb/{scope05.C, scope06.C, scope07.C, scope08.C}: Likewise.
	* g++.gb/{scope09.C, scope10.C, scope11.C, scope12.C}: Likewise.
	* g++.gb/scope13.C: Likewise, this test still fails.

	* g++.gb/{scope01.exp, scope02.exp, scope03.exp, scope04.exp}: Run 'em.
	* g++.gb/{scope05.exp, scope06.exp, scope07.exp, scope08.exp}: Ditto.
	* g++.gb/{scope09.exp, scope10.exp, scope11.exp, scope12.exp}: Ditto.
	* g++.gb/scope13.exp: Ditto.

	* g++.gb/README: New file, explains what these tests are about.

Tue Feb 28 10:37:52 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/dg.exp (dg-do): Support `preprocess'.
	(dg-test): Likewise.

Mon Feb 13 15:18:10 1995  J.T. Conklin  <jtc@rtl.cygnus.com>

	* config/udi.exp: change "continue -expect" to "exp_continue".

Sat Feb 11 00:25:20 1995  Torbjorn Granlund  (tege@tiny.cygnus.com)

	* gcc.c-torture/execute/{921025-1.c, 930525-1.c}:
	Delete redundant tests.

	* gcc.c-torture/execute/{941014-1.c, 941014-2.c}: New tests.
	* gcc.c-torture/execute/{941015-1.c, 941021-1.c}: New tests.
	* gcc.c-torture/execute/{941025-1.c, 941031-1.c}: New tests.
	* gcc.c-torture/execute/{941101-1.c, 941110-1.c}: New tests.
	* gcc.c-torture/execute/{941202-1.c, arith-1.c}: New tests.
	* gcc.c-torture/execute/{arith-rand.c, complex-3.c}: New tests.
	* gcc.c-torture/execute/{inst-check.c, loop-1.c}: New tests.
	* gcc.c-torture/execute/{memcpy-1.c, va-arg-2.c}: New tests.

	* gcc.c-torture/execute/920302-1.c: Use void * instead of long for
	storing label pointers.
	* gcc.c-torture/execute/921019-1.c: Likewise.
	* gcc.c-torture/execute/920501-8.c: Add prototype for sprintf.
	* gcc.c-torture/execute/930513-1.c: Provide full declaration for
	parameter fp.
	* gcc.c-torture/execute/va-arg-1.c (main): Add L suffix to all
	constants.

	* gcc.c-torture/compile/{920501-14.c, 931127-1.c}:
	Delete obsolete tests.

	* gcc.c-torture/compile/{940409-1.c, 940718-1.c}: New tests.
	* gcc.c-torture/compile/{941014-1.c, 941014-2.c}: New tests.
	* gcc.c-torture/compile/{941014-3.c, 941014-4.c}: New tests.
	* gcc.c-torture/compile/{941019-1.c, 941111-1.c}: New tests.
	* gcc.c-torture/compile/{941113-1.c, 950122-1.c}: New tests.
	* gcc.c-torture/compile/950124-1.c: New test.

	* gcc.c-torture/compile/920902-1.c: Delete 2:nd parameter.

Wed Feb  8 15:30:17 1995  Jason Merrill  <jason@phydeaux.cygnus.com>

	* lib/mike-g++.exp: Add -lm to LIBS.

Tue Feb  7 17:09:50 1995  Doug Evans  <dje@canuck.cygnus.com>

	* lib/c-torture.exp (c-torture): Allow relative pathname in $srcdir.

Mon Jan 30 14:33:25 1995  Jason Merrill  <jason@phydeaux.cygnus.com>

	* lib/mike-g++.exp: Add -lstdc++ to LIBS.

Thu Jan 12 16:41:34 1995  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.misc-tests/dg-test.exp: Only run if $DG_TEST=yes.

Mon Jan  2 11:50:10 1995  Jeff Law  (law@snake.cs.utah.edu)

	* g++.law/{arg9.C, arg10.C, arg11.C, arm15.C, arm16.C}: New tests.
	* g++.law/{bad-error3.C, bad-error4.C, bad-error5.C}: Likewise.
	* g++.law/{bad-error6.C, bad-error7.C}: Likewise.
	* g++.law/{bit-fields3.C, casts2.C, casts3.C}: Likewise.
	* g++.law/{enum8.C, enum9.C, friend5.C}: Likewise.
	* g++.law/{nest2.C, nest3.C, nest4.C, nest5.C}: Likewise.
	* g++.law/{nest6.C, next7.C, operators30.C}: Likewise.
	* g++.law/{operators31.C, operators32.C,
	* g++.law/{operators33.C, operators34.C}: Likewise.
	* g++.law/{pic1.C, refs2.C}: Likewise.
	* g++.law/{refs3.C, refs4.C, static-mem3.C}: Likewise.
	* g++.law/{static-mem4.C, static-mem5.C, typeck4.C}: Likewise.
	* g++.law/{vbase1.C, visibility27.C, visibility28.C}: Likewise.
	* g++.law/{vtable2.exp, vtable3.exp}: Likewise.

	* g++.law/{arg9.exp, arg10.exp, arg11.exp, arm15.exp}: Run them.
	* g++.law/{arm16.exp, bad-error3.exp, bad-error4.exp: Likewise.
	* g++.law/{bad-error5.exp, bad-error6.exp}: Likewise.
	* g++.law/{bad-error7.exp, bit-fields3.exp}: Likewise.
	* g++.law/{casts2.exp, casts3.exp, enum8.exp}: Likewise.
	* g++.law/{enum9.exp, friend5.exp}: Likewise.
	* g++.law/{nest3.exp, nest4.exp}: Likewise.
	* g++.law/{nest5.exp, nest6.exp, nest7.exp}: Likewise.
	* g++.law/{operators30.exp, operators31.exp}: Likewise.
	* g++.law/{operators32.exp, operators33.exp}: Likewise.
	* g++.law/{operators34.exp}: Likewise.
	* g++.law/{pic1.exp, refs2.exp, refs3.exp refs4.exp}: Likewise.
	* g++.law/{static-mem3.exp, static-mem4.exp}: Likewise.
	* g++.law/{static-mem5.exp, typeck4.exp, vbase1.exp}: Likewise.
	* g++.law/{visibility27.exp, visibility28.exp}: Likewise.
	* g++.law/{vtable2.exp, vtable3.exp}: Likewise.

	* g++.law/{union4.exp, visibility17.exp}: Fix expected output.
	No longer expected to fail.
	* g++.law/missed-error3.C: Tweak for recent bool changes.

Sun Dec  4 20:54:33 1994  Doug Evans  <dje@canuck.cygnus.com>

	* config/emb-unix: Deleted.
	* config/unix.exp (${tool}_load): Use new proc rsh_exec to perform
	remote execution.  Do final link on remote host if REMOTE_LINK is set.

Thu Dec  1 08:43:05 1994  Doug Evans  <dje@canuck.cygnus.com>

	* lib/dg.exp (dg-test): Fix typo in last patch.

Wed Nov 30 13:25:32 1994  Doug Evans  <dje@canuck.cygnus.com>

	* lib/dg.exp (dg-test): Fix pattern that searches for expected output
	(handles multiple occurrences).

Thu Nov 24 19:48:38 1994  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.c-torture/*/*.exp: Pass full pathname to c-torture.
	* gcc.c-torture/execute/execute.exp (c-torture-execute): Remove
	$srcdir from pathname in pass/fail messages (but ensure $subdir *is*
	printed).
	* lib/c-torture.exp (c-torture-compile): Likewise.
	(c-torture): Prepend full path if missing.
	* lib/gcc.exp (gcc_pass): Pass entire pathname of testcase.
	(gcc_fail): Likewise.
	* lib/dg.exp (dg-test): Don't delete $subdir from pathname in messages.

Wed Nov 23 13:56:00 1994  J.T. Conklin  <jtc@rtl.cygnus.com>

	* lib/netware.exp: Only attach to NetWare i386 systems.

Wed Nov 16 11:27:00 1994  Doug Evans  <dje@canuck.cygnus.com>

	* lib/dg.exp (dg-test): Don't print $subdir (or above) in pass/fail
	messages.  Add test name to "output pattern match" pass/fail message.

Sat Nov 12 22:11:52 1994  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.dg: New testsuite.
	* gcc.dg/dg.exp: New file.

	* gcc.misc-tests/{misc.exp,inst-check.c,test-ior.c,test-consts.c,
	test-switch.c}: Deleted.

	* gcc.misc-tests/msgs.exp: New testcase driver.

Wed Nov  9 14:23:09 1994  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.c-torture/execute/execute.exp (c-torture_execute): New proc.
	Watch for illegal return values from ${tool}_load.
	* config/unix.exp (${tool}_load): Fix pass/fail detection for
	cross targets.  Coerce return value >0 to 1.

Tue Nov  8 14:10:33 1994  Doug Evans  <dje@canuck.cygnus.com>

	* config/unix.exp (${tool}_load): Call program rsh, not proc.

	* config/emb-unix.exp: New file.

	* config/sim.exp: Error if variable $SIM not defined.
	(${tool}_load): Mark test as "untested" if simulator missing.

	* config/unix.exp: Load remote.exp to get rcp_download.
	* lib/c-torture.exp: Use different option lists for testcases with
	and without loops.
	* gcc.c-torture/execute/execute.exp: Likewise.

Wed Nov  2 14:47:58 1994  Doug Evans  <dje@canuck.cygnus.com>

	* config/*.exp: Clarify return code from ${tool}_load.
	Call `unresolved' or `untested' instead of `warning' or `perror'
	(sometimes you still want to call both though).
	Add comment that `shell_id' is local to each file.
	* config/udi.exp (timeout): Set to 30.
	Don't print warning if connection fails, $connectmode has already
	printed an error.
	(${tool}_load): Move verbose messages to level 2.
	Rework pattern for "Process started" message.
	Pass `shell_id' to ${connectmode}_download.
	Retry twice upon timeout.  Make resetting of target more robust.
	(${tool}_exit): Remove /tmp/soc_name. if connected ok (bug in mondfe).
	Pass `shell_id' to exit_$connectmode.
	Only call exit_$connectmode if connected.
	* config/unix.exp (${tool}_load): Check return codes better.
	* config/vrtx.exp (${tool}_load): Likewise.
	* config/vx.exp (${tool}_load): Likewise.
	Delete unneeded global's.
	* lib/dg.exp (dg-test): Update to reflect clarified return codes
	from ${tool}_load.
	(dg-stat): Delete.
	(dg-init): Delete recording of pass/fail counts.
	* lib/old-dejagnu.exp (old-dejagnu): Likewise.
	(old-dejagnu-init): Likewise.
	(old-dejagnu-stat): Delete contents, empty proc now.
	* lib/c-torture.exp (TORTURE_OPTIONS): New global.
	(c-torture): Delete references to lcnt, lpass, lfail.
	Get option list from TORTURE_OPTIONS.
	Delete -funroll[-all]-loops if no loops.
	* lib/g++.exp (g++_init): Delete references to lcnt, lpass, lfail.
	(g++_stat): Delete contents (empty proc now).
	* lib/gcc.exp (gcc_init): Delete references to pass/fail counts.
	(gcc_finish): Likewise.
	(gcc_stat): Deleted.
	* lib/mike-gcc.exp (postbase): Delete references to lcnt, lpass, lfail.
	* gcc.*/*.exp: Delete calls to gcc_stat, dg-stat.
	* gcc.c-torture/execute/execute.exp: Likewise.
	Split tests into two parts: compile, execute.
	Get option list from TORTURE_OPTIONS.  Delete -funroll[-all]-loops if
	no loops.  Update to reflect clarified return codes from ${tool}_load.

Fri Oct 21 23:10:16 1994  Doug Evans  <dje@canuck.cygnus.com>

	* lib/old-dejagnu.exp (process-option): Append ".*" to pattern
	to grep for.
	(old-dejagnu): Likewise (where necessary).

Fri Oct 14 17:54:58 1994  Doug Evans  <dje@canuck.cygnus.com>

	* gcc.misc-tests/gcov.exp: New file, for gcov testing.

	* lib/dg.exp (dg-process-target): Fix processing of selector.
	Add comment regarding use of `error'.

	* lib/gcc.exp (prune_system_crud): Define if missing.
	* lib/g++.exp (prune_system_crud): Likewise.

	* lib/{c-torture.exp,dg.exp,mike-g++.exp,old-dejagnu.exp}:
	Call prune_system_crud.
	* lib/dg.exp (dg-runtest): New proc.
	Use perror instead of send_user for tcl errors in testcase.
	Don't return any value, it's never used.
	Don't clobber previous definition of `unknown'.
	Print tcl errors in `dg-final'.

Wed Oct 12 13:05:37 1994  Doug Evans  <dje@canuck.cygnus.com>

	* lib/dg.exp (dg-process-target): Improve syntax error messages.
	(dg-test): Don't print errorInfo, it contains stack backtrace.

Mon Sep 26 12:18:53 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/g++.exp (runtest_file_p): Define if missing.

Sat Sep 24 15:29:23 1994  Doug Evans  (dje@cygnus.com)

	* lib/mike-g++.exp: Comment out loading of g++.exp.
	* lib/g++.exp: Update copyright.  Test for existence of $CXX at start.
	(default_g++_version): Always print something.
	(default_g++_start): Comment out call to `which'.
	(g++_start, g++_load): Deleted (must be defined in config file).
	* lib/gcc.exp: Test for existence of $CC at start.
	Delete check for tmpdir (done in gcc_init).
	(default_gcc_version): Always print something.
	(default_gcc_start): Comment out call to `which'.
	* config/*.exp: Major cleanup - make cross targets work at least a
	little better for g++ (by not being "--tool gcc" specific).
	Rename gcc_xxx to ${tool}_xxx.
	* g++.old-deja/old-deja.exp: utils.exp is loaded by runtest.exp.
	* lib/old-dejagnu.exp: ${tool}.exp is loaded by config file.

Thu Sep 22 11:39:17 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/c-torture.exp (c-torture-compile): Rework compiler
	message processing.

	* gcc.c-torture/compile/initbug1.{c,exp}: Deleted, not part of
	c-torture.

Wed Sep 21 09:49:43 1994  Doug Evans  (dje@canuck.cygnus.com)

	* gcc.wendy/wendy.dis: Renamed from wendy.exp to disable the testsuite.

	* lib/dg.exp (dg-process-target): Support { target native }.

Tue Sep 20 17:16:55 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/dg.exp (dg-test): Clean up some comments.  Delete code that
	looked for "... program xxx got fatal signal".
	Correct regsub munging of `comp_output'.
	Ignore compiler messages "path prefix not used" and "linker input
	file unused".

Wed Sep 14 11:44:40 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/gcc.exp (runtest_file_p): Define if missing.
	* gcc.prms/template.c: Example to work from.

Tue Sep 13 10:30:48 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/gcc.exp (gcc_finish): Delete code to update `testcnt'.
	* lib/dg.exp (dg-test): Call unsupported testcases as such.

	* gcc.prms/{3324.c,3565.c}: Moved from compile/940713-[12].c.
	* gcc.prms/1883.c: Moved from compile/940714-1.c.
	* gcc.prms/{5012.c,4453.c,4723.c,2541.c}: Moved from
	execute/{940712-1.c,940712-2.c,940713-1.c,940714-1,c}.

	* lib/dg.exp (user option docs): Clean up docs on target/xfail option.
	(dg-process-target): No longer a varargs proc.
	Return S/N for target, P/F for xfail.  All callers changed.
	(user option procs): More argument checking.
	(dg-do): `dg-do-what' now contains 3 elements {what flag P/F}.
	(dg-output): `dg-output-text' now contains 2 elements {P/F text}.
	(dg-test): Skip test if not running on selected target in `dg-do'.
	Update handling of `dg-do-what', `dg-output-text'.
	Separate execution pass/fail from output pattern match pass/fail.
	Delete BUILD/XBUILD support (duplicate of LOSE/XLOSE).

Mon Sep 12 13:47:35 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)

	* gcc.c-torture/special/special.exp: Don't expect failure for mips
	target for 920510-1.c.

Mon Sep 12 12:44:39 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/gcc.exp (gcc_init): Move initialized message to verbose level 3.
	Clean up comment regarding use of passcnt, etc.
	(gcc_stat): Don't update `testcnt' here.
	(gcc_finish): Do it here.
	Might as well reset `but_id' here too.
	* gcc.c-torture/code_quality/code_quality.exp: Call `runtest_file_p'
	to determine if the file should be tested.
	* gcc.c-torture/compile/compile.exp: Likewise.
	* gcc.c-torture/execute/execute.exp: Likewise.
	* gcc.c-torture/unsorted/unsorted.exp: Likewise.
	* gcc.misc-tests/dg-test.exp: Likewise.
	* gcc.prms/prms.exp: Likewise.
	* gcc.wendy/wendy.exp: Likewise.
	* g++.old-deja.exp: Likewise.
	Move "Testing file" message to verbose level 1.

Fri Sep  9 10:21:18 1994  Doug Evans  (dje@canuck.cygnus.com)

	* gcc.wendy/t.c: Add DEJAGNU_CFLAGS:"-DNOPAUSE".

Thu Sep  8 16:52:43 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/gcc.exp: Ensure CFLAGS, LIBS, and LDFLAGS are set.
	(default_gcc_start): Accept optional second list element
	of compiler flags.  Print compiler output at verbosity level 2.
	Remove setting of CFLAGS, LIBS, LDFLAGS from here.
	(gcc_init): Delete globals lcnt, lpass, lfail, lxpass, lxfail.
	Save current values of framework globals passcnt, failcnt, xpasscnt,
	and xfailcnt in gcc_passcnt, gcc_failcnt, gcc_xpasscnt, and
	gcc_xfailcnt.  Set global `tmpdir' to /tmp if it doesn't exist.
	(gcc_stat): Use framework globals passcnt, failcnt, xpasscnt, and
	xfailcnt to compute stats.  Update framework global `testcnt' from
	pass/fail counts.
	(gcc_finish): New proc.  Clean up test environment.
	(gcc_cpass, gcc_cfail): Rename to gcc_pass/gcc_fail.
	(gcc_epass, gcc_efail): Delete.
	* lib/dg.exp (dg-error, dg-warning, dg-bogus): Accept optional 5th
	argument of line number.
	(dg-init): If the tool has an init routine, call it.
	(dg-test): Remove args `cflags_var' and `libs_var'.
	Pass all compiler options to ${tool}_start.
	Handle missing line number.
	(dg-finish): New function.
	* gcc.c-torture/code_quality/code_quality.exp: Add support for testing
	particular files.  Call gcc_finish at end.  Move "skipping test"
	message to verbosity level 3.
	* gcc.c-torture/compile/compile.exp: Likewise.
	* gcc.c-torture/unsorted/unsorted.exp: Likewise.
	* gcc.c-torture/execute/execute.exp: Likewise.
	Delete setting of prms_id, bug_id, lcnt, lfail, lpass.
	Print testcase being tried at verbosity level 1.
	* gcc.c-torture/special/special.exp: Unset xfail.
	Delete setting of prms_id, bug_id, lcnt, lfail, lpass.
	* gcc.c-torture/compile/initbug1.exp: Call gcc_finish.
	* gcc.c-torture/noncompile/noncompile.exp: Likewise.
	* gcc.failure/failure.exp: Likewise.
	* gcc.ieee/ieee.exp: Likewise.
	* gcc.misc-tests/dg-test.exp: Delete LDFLAGS.
	Update call to dg-test.  Call dg-finish at end.
	* gcc.misc-tests/mg.exp: Call gcc_finish at end.  Unset orig_flags.
	Delete setting of prms_id, bug_id, lcnt, lfail, lpass.
	* gcc.misc-tests/misc.exp: Call gcc_finish at end.
	* gcc.prms/prms.exp: Delete loading of utils.exp (redundant).
	Delete LDFLAGS.  Update call to dg-test.  Call dg-finish at end.
	* gcc.wendy/wendy.exp: Add copyright.
	Delete setting of tmpdir (done by gcc_init).
	Call gcc_pass/gcc_fail instead of gcc_[ce]pass/fail.
	Pass compiler flags to gcc_start.  Call gcc_finish at end.
	* lib/c-torture.exp: Call gcc_pass/gcc_fail instead of
	gcc_[ce]pass/fail.

Wed Sep  7 11:09:08 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/g++.exp (g++_start): Rename arg to `prog' to avoid varargs
	confusion.
	(g++_load): Likewise.

	* config/*.exp (gcc_load): Some were varargs fns and some were not.
	Rename argument to `prog' to remove the confusion.
	Varargs fns behave differently too!
	(g++_load): Likewise.

	* lib/dg.exp (dg-stat): Correct calculation of npass, nfail.

	* config/unix.exp (gcc_load): Rename `args' to `prog' because that's
	what it is.  Delete (always) printing of status value for !native.
	Simplify verbose code, and include status and exec_output.
	(g++_load): Use gcc_load.

Sun Sep  4 13:59:27 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)

	* gcc.c-torture/noncompile/920928-1.c: Delete obsolete file.
	* gcc.c-torture/noncompile/noncompile.exp: Delete support for
	920928-1.c, 921017-1.c, 940712-1.c, 940714-1.c, 940714-2.c,
	940714-3.c as these testcases don't exist anymore.  Make
	va-arg-1.c expected to pass.

Fri Aug 19 12:27:07 1994  Doug Evans  (dje@canuck.cygnus.com)

	* gcc.misc-tests/misc.exp: Only run specific testcases.
	* gcc.misc-tests/dg-test.exp: New file.  Tests dg.exp.
	* gcc.misc-tests/dg-[1-9].c: New files.

	* lib/dg.exp: New testsuite driver.
	* gcc.prms/prms.exp: Use it.

	* README.gcc: New file.

	* lib/gcc.exp (gcc_init): Delete srcdir, no longer referenced.
	Document and reset `lxpass' and `lxfail'.
	Simplify "initialized" message.
	(gcc_stat): Clean up comments a little.

Tue Aug 16 11:16:46 1994  Doug Evans  (dje@canuck.cygnus.com)

	* gcc.prms/prms.exp: New driver for gcc.prms testsuite directory.

Mon Aug 15 21:20:36 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/old-dejagnu.exp (process-option): New proc.
	(old-dejagnu-init, old-dejagnu-stat): Likewise.
	(old-dejagnu): Simplify.
	* g++.old-deja/old-deja.exp: Update to new version of old-dejagnu.

Sun Aug 14 09:23:53 1994  Jeff Law  (law@snake.cs.utah.edu)

	* lib/c-torture.exp (c-torture): Only call setup_xfail if $xfail
	exists and is not an empty string.

	* gcc.c-torture/special/special.exp (920520-1.c, 930510-1): Set
	$xfail rather than calling setup_xfail.  Clear $xfail when test is
	finished.
	(920717-x.c): Add $srcdir/$subdir as "gcc_start" does not do it
	automatically.

	* gcc.c-torture/noncompile/noncompile.exp (940712-1 test): No
	longer expected to fail.

	* gcc.c-torture/execute/strct-pack-3.c: Add missing argument to
	"f" function call.

	* gcc.misc-tests/mg.exp: Call gcc_stat when finished.

	* gcc.c-torture/execute/{920202-1.c, 931208-1.c, 931228-1.c,
	940115-1.c, 940122-1.c, bf-pack-1.c, bf64-1.c, comp-goto-1.c,
	complex-2.c, packed-1.c, strct-pack-2.c	strct-pack-3.c,
	struct-ini-2.c, struct-ini-3.c, va-arg-1.c}: Import from
	c-torture-1.29.

	* gcc.c-torture/execute/{nest-stdar-1.c, struct-ini-1.c,
	strct-pack-1.c, strct-varg-1.c}: Renamed to match c-torture-1.29.

	* gcc.c-torture/execute/920612-2.c: Update to c-torture-1.29.

	* gcc.c-torture/noncompile/{931203-1.c, 940112-1.c, 940227-1.c,
	940510-1.c, init-1.c, init-2.c}: Import from c-torture-1.29

	* gcc.c-torture/compile/{920928-6.c, 931203-1.c, 940611-1.c,
	940712-1.c, calls.c, combine-hang.c, goto-1.c, init-2.c,
	labels-1.c, packed-1.c, zero-strct-1.c}: Import from c-torture-1.29.

Tue Jul 12 12:49:44 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)

	* gcc.execute/{940712-1.c, 940712-2.c, 940713-1.c, 940714-1.c},
	gcc.noncompile/{940712-1.h, 940712-1a.h, 940712-1b.h, 940712-1.c,
	940714-1.c, 940714-2.c, 940714-3.c},
	gcc.compile/{940713-1.c, 940713-2.c, 940714-1.c},
	gcc.misc-tests/{mg.c,mg.exp}:
	New tests.
	* gcc.noncompile/noncompile.exp: Change accordingly.

Thu Jul  7 14:20:33 1994  Doug Evans  (dje@canuck.cygnus.com)

	* config/sim.exp, lib/c-torture.exp, lib/gcc.exp:
	Undo previous clobberage.

Mon Jul  4 17:00:59 1994  Jeff Law  (law@snake.cs.utah.edu)

	* gcc.compile/{931102-1.c, 931102-2.c, 931031-1.c}:
	* gcc.special/{930510-1.c, special.exp}:
	* gcc.execute/{931031-1.c, 931110-1.c, 931110-2.c, 931102-1.c,
	931102-2.c, struct-pack-1.c, divmod-1.c, complex-1.c,
	struct-varargs-1.c}: New tests from c-torture-1.26.

Tue Jun 28 17:39:42 1994  J.T. Conklin  (jtc@phishhead.cygnus.com)

	* gcc.wendy/wendy.exp: add --'s so that -1 isn't parsed as an
	  argument to switch.

Sat May 21 10:39:38 1994  Bill Cox  (bill@rtl.cygnus.com)

	* Revert the previous changes.  Please see Rob's directory
	  (/lisa/test/rob/progressive/gcc/testsuite) for testing
	  fixes.

Thu May 19 18:00:03 1994  Bill Cox  (bill@rtl.cygnus.com)

	* config/sim.exp, config/udi.exp, config/unix.exp, config/vx.exp,
	    g++.brendan/alignof.exp, g++.brendan/arm3.exp, g++.brendan/code-gen5.exp,
	    g++.brendan/crash29.exp, g++.brendan/crash5.exp, g++.brendan/cvt3.exp,
	    g++.brendan/delete1.exp, g++.brendan/nest12.exp, g++.brendan/nest13.exp,
	    g++.brendan/overload3.exp, g++.brendan/redecl1.exp, g++.brendan/visibility2.exp,
	    g++.jason/cond.exp, g++.jason/hmc1.exp, g++.jason/report.exp,
	    g++.law/access1.exp, g++.law/access2.exp, g++.law/arg6.exp,
	    g++.law/arg7.exp, g++.law/arg8.exp, g++.law/arm1.exp,
	    g++.law/arm10.exp, g++.law/arm4.exp, g++.law/arm5.exp,
	    g++.law/ctors15.exp, g++.law/ctors19.exp, g++.law/cvt1.exp,
	    g++.law/cvt12.exp, g++.law/cvt13.exp, g++.law/cvt18.exp,
	    g++.law/cvt22.exp, g++.law/cvt3.exp, g++.law/cvt5.exp,
	    g++.law/cvt6.exp, g++.law/cvt8.exp, g++.law/dtors3.exp,
	    g++.law/except1.exp, g++.law/except3.exp, g++.law/except4.exp,
	    g++.law/except5.exp, g++.law/except6.exp, g++.law/init5.exp,
	    g++.law/init8.exp, g++.law/inline4.exp, g++.law/memoized1.exp,
	    g++.law/missing1.exp, g++.law/operators14.exp, g++.law/operators18.exp,
	    g++.law/operators9.exp, g++.law/scope2.exp, g++.law/temps2.exp,
	    g++.law/temps3.exp, g++.law/temps5.exp, g++.law/typeck2.exp,
	    g++.mike/misc4.exp, g++.mike/misc6.exp, g++.niklas/t118.exp,
	    g++.niklas/t128.exp, g++.niklas/t138.exp, g++.niklas/t139.exp,
	    g++.niklas/t140.exp, g++.niklas/t141.exp, gcc.code_quality/code_quality.exp,
	    gcc.compile/compile.exp, gcc.dje/dje.exp, gcc.execute/execute.exp,
	    gcc.failure/failure.exp, gcc.ieee/ieee.exp, gcc.noncompile/noncompile.exp,
	    gcc.special/special.exp, gcc.unsorted/unsorted.exp, lib/c-torture.exp,
	    lib/chill.exp, lib/g++.exp, lib/gcc.exp, lib/mike-g++.exp, lib/mike-gcc.exp,
	    lib/old-dejagnu.exp: Checkin Rob's 94Q1 testing changes.

Tue May 17 14:55:09 1994  Bill Cox  (bill@rtl.cygnus.com)

	* config/udi.exp, gcc.execute/execute.exp, gcc.wendy/wendy.exp,
	    lib/g++.exp, lib/old-dejagnu.exp: Replace error proc calls
	  with perror calls.

Mon May  2 17:41:13 1994  Jason Merrill  (jason@deneb.cygnus.com)

	* config/unix.exp (g++_load): Fix syntax.

Thu Apr 14 12:22:10 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)

	* gcc.compile/initbug1.exp (CFLAGS): Add space at beginning.
	* gcc.noncompile/921017-1.c: Deleted obsolete test.
	* gcc.noncompile/noncompile.exp: Remove code for deleted test.
	Don't expect va-arg-1.c to fail.  Correct expected output for
	920928-1.c.
	* gcc.wendy/d.c, msgs.c, prolog.c, subs.c, z.c: Deleted.
	* gcc.wendy/hbm4.c: Correct typo.
	* gcc.wendy/tad1.c, tad2.c: Correct expected output.

Mon Mar 28 13:29:37 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/gcc.exp (gcc_[ce]{pass,fail}): Remove output/executable argument.
	* gcc.wendy/wendy.exp (wendy_try): Remove `output' argument of
	gcc_[ce]{pass,fail}.  Explicitly remove executable if test passes.
	* lib/c-torture.exp (c-torture-compile): Ditto.

	Reduce volume of output (remove all the -I's and such).
	* lib/c-torture.exp (c-torture-compile): New argument OPTION.
	Call gcc_cpass, gcc_cfail.
	(c-torture): Pass testing option to c-torture-compile.

Mon Mar 21 12:40:33 1994  Doug Evans  (dje@cygnus.com)

	Bring patches over from progressive.
	* config/default.exp: Exit remote shell cleanly.
	(g++_exit, g++_start): Add default versions.
	* config/sim.exp (gcc_load): Use perror, not error.

Sun Mar 20 12:05:32 1994  Doug Evans  (dje@canuck.cygnus.com)

	* lib/gcc.exp: Don't set CFLAGS if CC not set.  It clobbers the	value
	set in site.exp.

Mon Mar 14 19:30:28 1994  Doug Evans  (dje@cygnus.com)

	* gcc.wendy/wendy.exp (wendy_first_line): New proc to fetch
	DEJAGNU_OUTPUT and DEJAGNU_CFLAGS.
	(wendy_try): New proc to run testcase.
	(main loop): Call 'em.
	* gcc.wendy/*.c: Clean up pass to correct expected output.

	* lib/gcc.exp: Minor cleanup work.
	(gcc_cpass, gcc_cfail, gcc_epass, gcc_efail): New procs.

Wed Mar  9 15:22:54 1994  Doug Evans  (dje@canuck.cygnus.com)

	* config/sim.exp (gcc_load): Document return codes better.
	Don't pass -v to simulator.

Thu Feb 24 07:15:18 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)

	  * gcc.special/920717-x.c: Fix typo.
	  * gcc.special/special.exp (920717-x.c): Use $srcdir/$subdir to
	  get at sources.

	* lib/mike-gcc.exp: Fix typo.

Tue Feb 15 15:41:47 1994  Rob Savoye  (rob@darkstar.cygnus.com)

	* lib/gcc.exp: Minor cleanup work. Find the proper gcc or g++
	binary to use, transform the name.
	* config/*.exp: rename everything. Nuke any g++ specific files,
	it's now a special case of gcc that requires no special support.
	Add a default.exp for unsupported targets.

Fri Feb 11 12:59:54 1994  Rob Savoye  (rob@poseidon.cygnus.com)

	* g++.jason/report.exp, g++.old-deja/old-deja.exp,
	lib/old-dejagnu.exp: Fix a few patterns to work with the new
	version of Tcl.

Wed Feb  9 21:35:47 1994  Rob Savoye  (rob@darkstar.cygnus.com)

	* lib/c-torture.exp: Made "file prefix*never used a pass, rather
	than a warning.

Sun Feb  6 16:52:13 1994  Jeffrey A. Law  (law@snake.cs.utah.edu)

	* lib/mike-gcc.exp: Add in recent changes from mike-g++.exp.

Mon Jan  3 17:28:25 1994  Jim Wilson  (wilson@sphagnum.cygnus.com)

	* gcc.execute/execute.exp: Combine opt_list and foption_list into
	option_list.  Compile every file with only 4/6 option choices
	(same as C torture) instead of with 12/18 different option
	choices.
	* lib/c-torture.exp: Likewise.

	* lib/gcc.exp: Set LIBS, CFLAGS, and LDFLAGS to empty strings if
	not already set.

Thu Dec 30 17:17:07 1993  Mike Stump  (mrs@rtl.cygnus.com)

	* lib/old-deja.exp: Add `excess errors test fails' error, now one
	can put an XFAIL *-*-* on excess errors.

Sun Dec 19 21:45:34 1993  Jeffrey A. Law  (law@snake.cs.utah.edu

	* g++.law: Add more tests derived from g++-bugs snapshots.

	* g++.law/init11.{c,exp}: Delete test.  Brendan sez it's
	equivalent to g++.law/init9.

	* lib/mike-gcc.exp (postbase): Delete the .o file after we've
	compiled it, and the a.out file after we've run it.

Fri Dec 17 11:29:56 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)

	* lib/mike-g++.exp (postbase): Delete the .o file after we've
	compiled it, and the a.out file after we've run it.

Fri Dec 17 10:18:16 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)

	* g++.law/*.exp: Avoid losing arguments added via "append" commands.

Wed Dec 15 20:36:40 1993  Rob Savoye  (rob@darkstar.cygnus.com)

	* lib/gcc.exp, lib/g++.exp: Use catch rather than exec to get the
	version number.

Sun Dec 12 21:10:04 1993  Jeffrey A. Law  (law@snake.cs.utah.edu)

	* g++.law: New directory of g++ tests derived from the g++-bugs
	snapshots.

Thu Dec 09 16:50:41 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* gcc.compile: initbug1.c initbug1.exp testcase added

Mon Dec 06 11:09:52 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* gcc.dje/sizetype-1.exp, dje.exp: minor clean ups
	* gcc.execute/execute.exp: minor cleanups. added gcc_stat calls. added
	  fixes submitted by Jeff Law (law@cs.utah.edu)
	* gcc.noncompile/noncompile.exp, lib/mike-gcc.exp: new files from
	  Jeff Law (law@cs.utah.edu)


Tue Nov 30 16:34:07 1993  Mike Stump  (mrs@cygnus.com)

	* config/unix-g++.exp: Follow the gcc way of doing things.
	* g++.old-deja/old-deja.exp: Minor updates.
	* lib/g++.exp: New file, follow the gcc way of doing things.
	* lib/old-dejagnu.exp: Minor updates.
	* lib/mike-g++.exp: Always unset errorInfo.

Sat Nov  6 11:34:51 1993  Mike Stump  (mrs@cygnus.com)

	* lib/gcc.exp: Fix some errors with the below change, CC and
	CFLAGS should be global when setting, not local.

Wed Nov  3 11:16:26 1993  Rob Savoye  (rob@darkstar.cygnus.com)

	* lib/gcc.exp: Transform tool name.

Wed Oct 27 23:57:29 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* gcc.*/*.exp: Fixd some de-stablizing changes. Sorry.

Wed Oct 27 14:45:50 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* lib/gcc.exp: change gcc_done to gcc_stat

Wed Oct 27 09:57:51 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* Upgraded gcc testsuite to c-torture version 1.25

Sun Oct 24 10:58:03 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* lib/gcc.exp: added reporting code. Changed verbose compile message.
	* lib/c-torture: added hooks for new reporting code.

Thu Oct 21 18:45:32 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* config/sh-gcc.exp: check if sh-sim exists in the path

Mon Oct 18 11:13:22 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* gcc.code_quality/code_quality.exp: Initial changes for new logic.
	* gcc.compile/compile.exp: Initial changes for new logic.
	* gcc.dje/dje.exp, sizetype-1.exp: Initial changes for new logic.
	* gcc.failure/failure.exp: Initial changes for new logic.
	* gcc.ieee/ieee.exp: Initial changes for new logic.
	* gcc.misc-tests/misc.exp: Initial changes for new logic.
	* gcc.noncompile/non_compile.exp: Initial changes for new logic.
	* gcc.unsorted/unsorted.exp: Initial changes for new logic.
	* lib/c-torture.exp: Initial changes for new logic.
	* lib/gcc.exp: Initial changes for new logic.

Fri Oct 15 00:19:42 1993  Mike Stump  (mrs@cygnus.com)

	* lib/mike-g++.exp, lib/old-dejagnu.exp: Make the message not
	depend upon failure or success.  Fully qualify names in failure
	and success messages.  Always remove a.out before starting
	compile, just in case.  Pay more attention to error text output by
	the compiler.  Handle testcases with no known past errors just
	like all others, so that things are uniform.  Other miscellaneous
	improvements.

Wed Oct 13 15:04:51 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* gcc.cpp: new directory for cpp tests

Mon Oct  4 09:03:41 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* lib/chill.exp: Code reformatted, removed unused code.
	* config/unix-chill.exp: Code reformatted, removed unused code.
	* chill.execute/execute.exp: Code reformatted, removed unused code.
	* chill.execute/oe/orient.exp: Code reformatted, removed unused code.

Mon Oct  4 06:19:26 1993  Ian Lance Taylor  (ian@cygnus.com)

	* config/mips-gcc.exp, config/mips-g++.exp: New files.  Execution
	routines not written.

Mon Sep 27 21:07:44 1993  Rob Savoye  (rob@darkstar.cygnus.com)

	* config/bug-gcc.exp: Use new procs from bug.exp.

Tue Sep 21 18:21:12 1993  Rob Savoye  (rob@darkstar.cygnus.com)

	* config/vx-gcc.exp: Use new vxworks_ld proc, so files get loaded
	via ftp, rather than depending on NFS.
	* config/vx-gcc.exp: Use new vxworks_spawn proc to execute test
	case.

Thu Sep  9 23:09:15 1993  Rob Savoye  (rob@darkstar.cygnus.com)

	* config/bug-gcc.exp: Use new download proc.

Tue Sep 14 19:23:58 1993  Jeffrey Wheat  (cassidy at deneb.cygnus.com)

	* chill.execute/execute.exp: cleanups, handles errors better
	* chill.compile/compile.exp: rewrite, based on execute.exp
	* chill.noncompile/noncompile.exp: rewrite, based on execute.exp
	* lib/chill.exp: major changes to diff proc and compile and link
	  procs. added chill_fail and chill_pass wrappers to pass and
	  fail. added more comments, and handle error codes better.
	  Added a hack to capture stderr from exec, so noncompile tests
	  can work.

Sat Sep 11 15:30:10 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* chill.execute/execute.exp: rewrite of testsuite driver
	* lib/chill.exp: rewrite of testsuite driver
	* config/unix-chill.exp: rewrite of testsuite driver

Wed Aug 25 14:11:13 1993  Bill Cox  (bill@rtl.cygnus.com)

    In chill.execute:
	* iexpr.ch: Standardize uppercase.
	* tuples.dat: Standardize uppercase.
	* vary.ch: standardize.  Correct varying string assignments.
	* vary.dat: Add new output lines.

Tue Aug 24 13:45:49 1993  Bill Cox  (bill@rtl.cygnus.com)

    In chill.execute:
	* chprintf.ch: Standardize use of uppercase.
	* tuples.ch: Standardize and turn arr2 into a DCL,
	  rather than a SYN.
	* pinits.ch: Standardize.

Mon Aug 23 17:26:58 1993  Per Bothner  (bothner@kalessin.cygnus.com)

	* rts.c:  Get malloc() from <stdlib.h>, not <malloc.h>.
	* Makefil: Renamed to Makefile.in.
	* configure.in: New.

Mon Aug 23 14:24:13 1993  Bill Cox  (bill@rtl.cygnus.com)

    In chill.execute:
	* .cvsignore: Add result/output files.
	* Makefile: Fix up variables at start.  Use MFLAGS
	  everywhere.  Correct bool_loc, built_ins entries.
	  Add entry for vary1.ch.
	* bitarray.ch: Standardize upper-case usage.
	* bitexpr.ch: Standardize, add output of b1.
	* params.ch: Use arrayt in along PROC parameters, to
	  avoid novelty problems.
	* sets.ch: Tiny cleanup.
	* vary1.ch: Re-indent.

Tue Aug 17 15:42:07 1993  Bill Cox  (bill@rtl.cygnus.com)

	  * Add PR-related files to Makefiles, .cvsignore files, etc.

Mon Aug  2 15:46:05 PDT 1993  Jeff Wheat  (cassidy@cygnus.com)

	* gcc.unsorted: flow.c and loop.c - renamed to avoid conflicts
	  with compiler objects. New names are test-flow.c and test-loop.c

Tue Jul 27 10:08:08 PDT 1993  Jeff Wheat  (cassidy@cygnus.com)

	* Upgraded c-torture tests from 1.19 to 1.20

	* new files:
	* gcc.compile: 930609-1.c 930611-1.c 930618-1.c 930621-1.c
	* gcc.compile: 930623-1.c 930623-2.c
	* gcc.noncompile: 930622-1.c 930622-2.c
	* gcc.failure: 920411-1.c 920627-2.c
	* gcc.ieee: 920518-1.c 920810-1.c 930529-1.c

Tue Jul 20 15:19:44 PDT 1993  Jeff Wheat  (cassidy@cygnus.com)

	* chill.compile/compile.exp chill.execute/execute.exp lib/chill.exp
	  More changes to get testsuite working properly. Needs more work.
	  Added some support for POSIX IEEE Std 1003.3-1991 error messages.

Mon Jul 19 18:40:31 PDT 1993  Jeff Wheat  (cassidy@cygnus.com)

	* chill.compile/compile.exp chill.execute/execute.exp lib/chill.exp
	  More changes to get testsuite working properly. Needs more work.

Tue Jul 13 18:38:56 PDT 1993 Jeff Wheat  (cassidy@cygnus.com)

	* chill.compile/compile.exp: Added for Dejagnu support
	* chill.execute/execute.exp: Added for Dejagnu support
	* lib/chill.exp config/unix-chill.exp  : Added for Dejagnu support

Sat Jun 19 07:13:05 1993  Bill Cox  (bill@rtl.cygnus.com)

    This should complete moving the CHILL test files.
	* chill.noncompile(.cvsignore printf.grt
	    in-printf.grt chprintf.grt chprintf.ch):
	    Added test-support files.
	  (Makefile): Modified further.
	* chill.compile (emptymod.ch gdbme.ch neg_range.ch
	    signal.ch): Added test files.
	  * chill.execute (.cvsignore printf.grt printr.c
	    in-printf.grt rts.c chprintf.grt rts.h): Added
	  test-support files.
	    (Makefile): More corrections.

Fri Jun 18 23:40:54 1993  Bill Cox  (bill@rtl.cygnus.com)

	* chill.compile, chill.execute, chill.nocompile: Add CHILL
	  test cases, ready for DejaGnu.

Thu Jun 17 19:14:40 MDT 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* Upgraded c-torture tests from 1.18 to 1.19

	* gcc.compile: added test(s):
	  930607-1.c
	* gcc.execute: added test(s):
	  930603-1.c 930603-2.c 930603-3.c 930608-1.c conversion.c inst-check.c

	* added new subdirectory for misc tests: gcc.misc-tests
	* gcc.misc-test(s): added tests:
	  inst-check.c test-consts.c test-ior.c test-switch.c

Wed Jun  9 16:53:26 1993  Brendan Kehoe  (brendan@lisa.cygnus.com)

	* lib/mike-g++.exp: Load `./a.out', not `a.out'.

Mon Jun  7 16:18:40 1993  Ian Lance Taylor  (ian@cygnus.com)

	* g++.old-deja/old-deja.exp: Don't delete all the .o files.

Thu Jun  3 13:13:36 MDT 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* Upgraded c-torture tests from 1.17 to 1.18

Wed Jun  2 19:02:40 MDT 1993  Jeffrey Wheat  (cassidy@cygnus.com)

	* Upgraded c-torture tests from 1.12 to 1.17

Fri Apr 30 09:38:41 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* lib/old-dejagnu.exp:
	  Fixed handling of XFAIL target triplets to correctly
	  recognize wildcard characters.  Removed code that
	  appended a unique id tag to the end of the file name
	  printed out by the result of the testcases within a
	  given test file.

Thu Apr 29 19:06:29 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* lib/old-dejagnu.exp:
	  Reworked expected failure handling to trigger off of XFAIL
	  keyword in keyphrase embeded in testcase source code. The
	  XFAIL keyword must be at the end of the keyphrase line. It
	  may optionally be followed by one or more target triplets.
	  It has just occured that the handling of wildcards in the
	  target triplet may not be correct.

Fri Apr 23 13:16:20 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* g++.old-deja/tests:
	  Moved all subdirectories up one level into g++.old-deja .

	* lib/old-dejagnu.exp:
	  Fixed problem with CXXFLAGS not being properly reset, and being
	  corrupted with extraneous "-c" compiler option.  This was
	  causing binaries to not be generated for test that needed them.
	  Modified strings passed to "pass" and "fail" so that individual
	  tests from the same test file would be distinguished by an
	  identifier appended to the test file name in the summary logs;
	  this corrected a problem with erroneous diff logs.  Added code
	  to search testcases for expected fail and unexpected pass keywords.

Tue Apr 20 18:27:58 1993  Rob Savoye  (rob at darkstar.cygnus.com)

	* lib/c-torture.exp: Ignore "file path prefix*unused" message.

Thu Apr 15 11:01:59 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* g++.old-deja/tests/g++.sun/g++.frag/1045608.C:
	  Removed extraneous text from end of "Special g++ Options"
	  keyphrase.

	* lib/old-dejagnu.exp: Added pattern matching to look for new
	  keywords, embedded in testcases comments, which will trigger
	  calls to xpass and xfail.

Wed Apr 14 14:28:01 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* lib/old-dejagnu.exp: Cleaned up pattern matching for keyphrase
	  comments embedded in the testcases, especially the one looking for
	  special compiler options, as well as the pattern matching for the
	  compiler output again.

Mon Apr 12 15:15:37 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* lib/old-dejagnu.exp: Do a proper check of the return value for
	  execute tests. Fixed several problems with the pattern matching
	  of the compiler output which gave erroneous test results.
	  Changed several of the test result messages to be more descriptive.
	* config/unix-g++.exp: Proc g++_load now actually works and
	  executes the tests passed to it and returns a usable return
	  value.

Sun Apr 11 17:22:37 1993  Rob Savoye  (rob at darkstar.cygnus.com)

	  * lib/gcc.exp: Exits gracefully if $CC is bogus.

Fri Apr  9 09:41:59 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* lib/old-dejagnu.exp , g++.old-deja/old-deja.exp:
	  Modified both files to properly execute the old style
	  dejagnu tests. The previous versions of these files were
	  experimental and did not function anything near correctly.

Mon Apr  5 21:08:24 1993  Rob Savoye  (rob@cygnus.com)

	* Removed all Makefile.in and configure.in files. No configuration
	needed now.

Fri Apr  2 12:15:17 1993  Mike Werner  (mtw@deneb.cygnus.com)

	* lib: relocated old-dejagnu.exp from devo/dejagnu/lib

Sun Mar 28 11:17:48 1993  Ken Raeburn  (raeburn@kr-pc.cygnus.com)

	* gcc.compile/configure.in, gcc.unsorted/configure.in,
	gcc.special/configure.in, gcc.noncompile/configure.in,
	gcc.execute/configure.in, gcc.code_quality/configure.in,
	g++.other/configure.in, g++.old-deja/configure.in,
	g++.niklas/configure.in, g++.mike/configure.in: Remove extra quote
	in srcname setting.

Thu Mar 25 20:07:55 1993  Rob Savoye  (rob at darkstar.cygnus.com)

	* lib/udi.exp:  Fixed mondfe and mondfe_download.
	* config/udi-gcc.exp: Fixed misc bugs, works with expect 4.x.
	* config/abug-gcc.exp: Fixed misc bugs, works with expect 4.x.

Thu Mar 25 13:06:41 1993  Ian Lance Taylor  (ian@cygnus.com)

	* config/udi-gdb.exp: Check $shell_id after connecting to target.
	(gdb_exit): Don't remove *_soc files.

Mon Mar 22 14:28:46 1993  Ian Lance Taylor  (ian@cygnus.com)

	* lib/c-torture.exp: Don't look for main; instead always use -w
	-c.  This is how the c-torture tests work.  Remove the object
	file if the compilation succeeds.
	* gcc.execute/execute.exp: Remove executable if test passes.
	* gcc.noncompile/noncompile.exp: Every test is an expected
	failure.
	* gcc.special/special.exp: Added tests from c-torture 1.11,
	corrected use of existing test.
	* gcc.execute/920302-1.c, gcc.execute/920501-8.c,
	gcc.execute/920625-1.c: Updated to c-torture 1.11.
	* gcc.compile/921103-1.c, gcc.compile/921109-1.c,
	gcc.compile/921109-2.c, gcc.compile/921109-3.c,
	gcc.compile/921111-1.c, gcc.compile/921116-2.c,
	gcc.compile/921118-1.c, gcc.compile/921126-1.c,
	gcc.compile/921202-1.c, gcc.compile/921202-2.c,
	gcc.compile/921203-1.c, gcc.compile/921203-2.c,
	gcc.compile/921206-1.c, gcc.execute/921029-1.c,
	gcc.execute/921104-1.c, gcc.execute/921110-1.c,
	gcc.execute/921112-1.c, gcc.execute/921113-1.c,
	gcc.execute/921117-1.c, gcc.execute/921123-1.c,
	gcc.execute/921123-2.c, gcc.execute/921124-1.c,
	gcc.execute/921202-1.c, gcc.execute/921202-2.c,
	gcc.execute/921204-1.c, gcc.execute/921207-1.c,
	gcc.execute/921208-1.c, gcc.execute/921208-2.c,
	gcc.execute/921215-1.c, gcc.execute/921218-1.c,
	gcc.execute/921218-2.c, gcc.noncompile/921102-1.c,
	gcc.noncompile/921116-1.c, gcc.unsorted/x.c: Added from
	c-torture 1.11.
	* gcc.noncompile/921021-1.c, gcc.unsorted/x11bug.c: Removed to
	correspond to c-torture	1.11.

	* New file.