aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/ChangeLog
blob: f1076f6ffdc80db501356358a248d3dfa43a32f6 (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
2011-02-19  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/47348
	* trans-array.c (get_array_ctor_all_strlen): Move up in file.
	(get_array_ctor_var_strlen): Add block dummy and add call to
	get_array_ctor_all_strlen instead of giving up on substrings.
	Call gcc_unreachable for default case.
	(get_array_ctor_strlen): Add extra argument to in call to
	get_array_ctor_var_strlen.

2011-02-19  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/47348
	* gfortran.dg/array_constructor_36.f90 : New test.
	* gfortran.dg/bounds_check_10.f90 : Change dg-output message to
	allow for comparison between different elements of the array
	constructor at different levels of optimization.

2011-02-19  H.J. Lu  <hongjiu.lu@intel.com>

	* gcc.target/i386/pr31167.c: Require int128 instead of lp64.
	* gcc.target/i386/pr32280-1.c: Likewise.

2011-02-19  Jakub Jelinek  <jakub@redhat.com>

	PR target/47800
	* gcc.target/i386/pr47800.c: New test.

2011-02-18  Iain Sandoe  <iains@gcc.gnu.org>

	* objc/execute/exceptions/foward-1.x: New.
	
2011-02-18  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47789
	* gfortran.dg/derived_constructor_comps_4.f90: New.

2011-02-18  Tobias Burnus

	PR fortran/47775
	* gfortran.dg/func_result_6.f90: New.

2011-02-18  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/47795
	* g++.dg/cpp0x/lambda/lambda-ice3.C: New.

2011-02-18  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47750
	* lib/gfortran.exp (gfortran_init): Set gcc_error_prefix and
	gcc_warning_prefix.
	* lib/gfortran-dg.exp (gfortran-dg-test): Update regexp for
	normalizing the error/warning output.
	* gfortran.dg/Wall.f90: Update dg-error/warning.
	* gfortran.dg/argument_checking_15.f90: Update dg-error/warning.
	* gfortran.dg/argument_checking_3.f90: Update dg-error/warning.
	* gfortran.dg/argument_checking_6.f90: Update dg-error/warning.
	* gfortran.dg/bounds_temporaries_1.f90: Update dg-error/warning.
	* gfortran.dg/class_30.f90: Update dg-error/warning.
	* gfortran.dg/continuation_1.f90: Update dg-error/warning.
	* gfortran.dg/continuation_9.f90: Update dg-error/warning.
	* gfortran.dg/do_check_5.f90: Update dg-error/warning.
	* gfortran.dg/entry_17.f90: Update dg-error/warning.
	* gfortran.dg/entry_19.f90: Update dg-error/warning.
	* gfortran.dg/fmt_error.f90: Update dg-error/warning.
	* gfortran.dg/fmt_read_2.f90: Update dg-error/warning.
	* gfortran.dg/g77/12632.f: Update dg-error/warning.
	* gfortran.dg/g77/970625-2.f: Update dg-error/warning.
	* gfortran.dg/g77/980615-0.f: Update dg-error/warning.
	* gfortran.dg/generic_actual_arg.f90: Update dg-error/warning.
	* gfortran.dg/global_references_1.f90: Update dg-error/warning.
	* gfortran.dg/goto_8.f90: Update dg-error/warning.
	* gfortran.dg/initialization_1.f90: Update dg-error/warning.
	* gfortran.dg/io_constraints_1.f90: Update dg-error/warning.
	* gfortran.dg/io_constraints_2.f90: Update dg-error/warning.
	* gfortran.dg/io_constraints_3.f90: Update dg-error/warning.
	* gfortran.dg/iostat_3.f90: Update dg-error/warning.
	* gfortran.dg/public_private_module.f90: Update dg-error/warning.
	* gfortran.dg/volatile3.f90: Update dg-error/warning.
	* gfortran.dg/warning-directive-2.F90: Update dg-error/warning.
	* gfortran.dg/warnings_are_errors_1.f: Update dg-error/warning.
	* gfortran.dg/whole_file_1.f90: Update dg-error/warning.
	* gfortran.dg/whole_file_2.f90: Update dg-error/warning.
	* gfortran.dg/whole_file_3.f90: Update dg-error/warning.

2011-02-18  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47768
	* gfortran.dg/proc_ptr_comp_30.f90: New.

2011-02-18  Jakub Jelinek  <jakub@redhat.com>

	PR debug/47780
	* gcc.target/i386/pr47780.c: New test.

2011-02-18  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47767
	* gfortran.dg/class_40.f03: New.

2011-02-18  Dodji Seketeli  <dodji@redhat.com>

	PR c++/47208
	* g++.dg/cpp0x/auto21.C: New test.

2011-02-17  Iain Sandoe  <iains@gcc.gnu.org>

	* objc.dg/special/unclaimed-category-1.h: Updated for
	new ABI support.
	* objc.dg/special/unclaimed-category-1.m: Same.
	* objc.dg/zero-link-1.m: Same.
	* objc.dg/lookup-1.m: Same.
	* objc.dg/torture/strings/const-str-9.m
	* objc.dg/torture/strings/const-str-10.m: Same.
	* objc.dg/torture/strings/const-str-11.m: Same.
	* objc.dg/torture/forward-1.m: Same.
	* objc.dg/zero-link-2.m: Same.
	* objc.dg/encode-7-next-64bit.m: Same.
	* objc.dg/method-4.m: Same.
	* objc.dg/next-runtime-1.m: Same.
	* objc.dg/image-info.m: Same.
	* objc.dg/pr23214.m: Same.
	* objc.dg/symtab-1.m: Same.
	* obj-c++.dg/basic.m: Same.
	* obj-c++.dg/proto-lossage-3.m: Same.
	* obj-c++.dg/torture/strings/const-str-10.m: Same.
	* obj-c++.dg/torture/strings/const-str-11.m: Same.
	* obj-c++.dg/torture/strings/const-str-9.m: Same.
	* obj-c++.dg/method-11.m: Same.
	* objc/execute/enumeration-1.m: Same.
	* objc/execute/object_is_class.m: Same.
	* objc/execute/formal_protocol-2.m: Same.
	* objc/execute/formal_protocol-4.m: Same.
	* objc/execute/formal_protocol-6.m: Same.
	* objc/execute/bycopy-3.m: Same.
	* objc/execute/exceptions/catchall-1.m: Same.
	* objc/execute/exceptions/finally-1.m: Same.
	* objc/execute/exceptions/local-variables-1.m: Same.
	* objc/execute/exceptions/foward-1.m: Same.
	* objc/execute/bf-common.h
	* objc/execute/enumeration-2.m: Same.
	* objc/execute/formal_protocol-1.m: Same.
	* objc/execute/formal_protocol-3.m: Same.
	* objc/execute/formal_protocol-5.m: Same.
	* objc/execute/accessing_ivars.m: Same.
	* objc/execute/bycopy-2.m: Same.
	* objc/execute/formal_protocol-7.m: Same.
	* objc/execute/compatibility_alias.m: Same.
	* objc/execute/no_clash.m: Same.
	* objc/execute/object_is_meta_class.m: Same.
	* objc/execute/exceptions/exceptions.exp: Load target-supports.exp
	* objc/execute/class-tests-1.h: Include stdio.h.
	* objc/execute/class-tests-2.h: Same.
	* obj-c++.dg/try-catch-9.mm: xfail-run the test with both
	runtimes.
	* obj-c++.dg/try-catch-2.mm: Same.

2011-02-17  Jakub Jelinek  <jakub@redhat.com>

	PR c++/47783
	* g++.dg/warn/Wunused-parm-4.C: New test.

2011-02-17  Alexandre Oliva  <aoliva@redhat.com>
	    Jan Hubicka  <jh@suse.cz>

	PR debug/47106
	PR debug/47402
	* g++.dg/debug/pr47106.C: New.

2011-02-17  Uros Bizjak  <ubizjak@gmail.com>

	PR target/43653
	* gcc.target/i386/pr43653.c: New test.

2011-02-11  Dodji Seketeli  <dodji@redhat.com>

	PR c++/47172
	* g++.dg/template/inherit6.C: New test.

2011-02-16  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47745
	* gfortran.dg/class_39.f03: New.

2011-02-16  Dodji Seketeli  <dodji@redhat.com>

	PR c++/47326
	* g++.dg/cpp0x/variadic106.C: New test.

2011-02-16  Jakub Jelinek  <jakub@redhat.com>

	PR libfortran/47757
	* gfortran.dg/pr47757-1.f90: New test.
	* gfortran.dg/pr47757-2.f90: New test.
	* gfortran.dg/pr47757-3.f90: New test.

	PR c++/47704
	* g++.dg/cpp0x/enum8.C: New test.

2011-02-15  Jason Merrill  <jason@redhat.com>

	* g++.dg/inherit/implicit-trivial1.C: New.
	* g++.dg/cpp0x/implicit-trivial1.C: New.

2011-02-15  H.J. Lu  <hongjiu.lu@intel.com>

	PR middle-end/47725
	* gcc.dg/torture/pr47725.c: Removed.

2011-02-15  Michael Meissner  <meissner@linux.vnet.ibm.com>

	PR target/47755
	* gcc.target/powerpc/pr47755.c: New file, test all 0 vector
	constant does not generate a load from memory.

2011-02-15  H.J. Lu  <hongjiu.lu@intel.com>

	PR middle-end/47725
	* gcc.dg/torture/pr47725.c: New.

2011-02-15  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47743
	* gcc.dg/torture/pr47743.c: New testcase.

2011-02-15  Jakub Jelinek  <jakub@redhat.com>

	PR middle-end/47581
	* gcc.target/i386/pr47581.c: New test.

2011-02-14  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47730
	* gfortran.dg/select_type_22.f03: New.

2011-02-14  Jason Merrill  <jason@redhat.com>

	* g++.dg/cpp0x/regress/enum1.C: New.

2011-02-14  Eric Botcazou  <ebotcazou@adacore.com>

	* gnat.dg/include.adb: New test.

2011-02-14  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47728
	* gfortran.dg/class_38.f03: New.

2011-02-14  Eric Botcazou  <ebotcazou@adacore.com>

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

2011-02-14  Richard Guenther  <rguenther@suse.de>

	* gcc.dg/attr-weak-hidden-1.c: Make definition of foo strong.

2011-02-14  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR ada/41929
	* gnat.dg/null_pointer_deref1.exp: Don't skip on
	sparc*-sun-solaris2.11.

2011-02-14  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47349
	* gfortran.dg/argument_checking_18.f90: New.

2011-02-13  Tobias Burnus  <burnus@net-b.de>

	* gfortran.dg/argument_checking_13.f90: Update dg-error.
	* gfortran.dg/argument_checking_17.f90: New.

2011-02-12  Janus Weil  <janus@gcc.gnu.org>

	* gfortran.dg/allocate_derived_1.f90: Modified as polymorphic arrays
	are temporarily disabled.
	* gfortran.dg/class_7.f03: Ditto.
	* gfortran.dg/coarray_14.f90: Ditto.
	* gfortran.dg/typebound_proc_13.f03: Ditto.

2011-02-12  Mikael Morin  <mikael.morin@sfr.fr>

	PR fortran/45586
	* gfortran.dg/extends_11.f03: New.

2011-02-11  Xinliang David Li  <davidxl@google.com>

	PR tree-optimization/47707
	* g++.dg/tree-ssa/pr47707.C: New test.

2011-02-11  Eric Botcazou  <ebotcazou@adacore.com>

	* g++.dg/opt/inline17.C: New test.

2011-02-11  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47550
	* gfortran.dg/pure_formal_2.f90: New.

2011-02-11  Pat Haugen <pthaugen@us.ibm.com>

	PR rtl-optimization/47614
	* gfortran.dg/pr47614.f: New.

2011-02-11  Joseph Myers  <joseph@codesourcery.com>

	PR driver/47678
	* gcc.dg/opts-6.c: New test.

2011-02-11  Jakub Jelinek  <jakub@redhat.com>

	PR debug/47684
	* gcc.dg/pr47684.c: New test.

2011-02-11  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR target/47629
	* gcc.target/i386/pr47312.c: Use dg-require-effective-target
	c99_runtime, dg-add-options c99_runtime.
	(main): Use __asm__.

2011-02-11  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR testsuite/47400
	* lib/target-supports.exp (check_ascii_locale_available): New proc.
	* lib/target-supports-dg.exp (dg-require-ascii-locale): New proc.
	* gcc.dg/attr-alias-5.c: Use dg-require-ascii-locale.
	* gcc.dg/ucnid-10.c: Likewise.
	* gcc.dg/ucnid-13.c: Likewise.
	* gcc.dg/ucnid-7.c: Likewise.
	* gcc.dg/ucnid-8.c: Likewise.
	Adapt dg-warning line number.

2011-02-10  Uros Bizjak  <ubizjak@gmail.com>

	* gcc.target/i386/parity-1.c: Use -march=k8.
	* gcc.target/i386/parity-2.c: Ditto.
	* gcc.target/i386/vecinit-1.c: Ditto.
	* gcc.target/i386/vecinit-2.c: Ditto.

2011-02-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR target/46610
	* gcc.target/mips/save-restore-1.c: Skip on mips-sgi-irix6*.
	* gcc.target/mips/save-restore-3.c: Likewise.
	* gcc.target/mips/save-restore-4.c: Likewise.
	* gcc.target/mips/save-restore-5.c: Likewise.

	PR target/47683
	* g++.dg/tree-prof/partition1.C: Skip on mips-sgi-irix*.
	* g++.dg/tree-prof/partition2.C: Likewise.

2011-02-09  Jason Merrill  <jason@redhat.com>

	* g++.dg/tree-ssa/inline-3.C: Use a normal function
	rather than misdeclare std::puts.

	* g++.dg/ext/vla1.C: Adjust for C++0x mode.
	* g++.dg/other/warning1.C: Likewise.
	* g++.old-deja/g++.bugs/900119_01.C: Likewise.
	* g++.old-deja/g++.gb/scope06.C: Likewise.
	* g++.old-deja/g++.law/cvt11.C: Likewise.
	* g++.old-deja/g++.law/init1.C: Likewise.
	* g++.dg/abi/mangle26.C: Likewise.

	* g++.dg/template/function1.C: Adjust for C++0x mode.
	* g++.dg/cpp0x/regress/template-function1.C: Copy it.

	* g++.dg/ext/label10.C: Adjust for C++0x mode.
	* g++.dg/cpp0x/regress/ext-label10.C: Copy it.

	* g++.dg/cpp0x/regress/ext-cond1.C: Copy from ext/cond1.C.

	* g++.dg/cpp0x/regress/abi-empty7.C: New.

	* g++.dg/cpp0x/regress: New directory.
	* g++.dg/cpp0x/constexpr-regress1.C: Move to regress/regress1.C.
	* g++.dg/cpp0x/constexpr-regress2.C: Move to regress/regress2.C.
	* g++.dg/cpp0x/regress/regress3.C: New.

2011-02-10  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47677
	* gcc.dg/torture/pr47677.c: New testcase.

2011-02-10  Iain Sandoe  <iains@gcc.gnu.org>

	* objc.dg/special/load-category-1.m: Remove unused header.
	* objc.dg/special/load-category-1a.m: Likewise.
	* objc.dg/special/load-category-2.m: Likewise.
	* objc.dg/special/load-category-2a.m: Likewise.
	* objc.dg/special/load-category-3.m: Likewise.
	* objc.dg/special/load-category-3a.m: Likewise.
	* objc.dg/attributes/proto-attribute-2.m: Likewise.
	* objc.dg/attributes/proto-attribute-3.m: Likewise.
	* objc.dg/attributes/class-attribute-1.m: Likewise.
	* objc.dg/property/property.exp: Don't run for Darwin < 9.
	* obj-c++.dg/property/property.exp: Likewise.
	* objc.dg/attributes/method-sentinel-1.m: Update type header.
	* obj-c++.dg/attributes/method-sentinel-1.mm: Likewise.
	* obj-c++.dg/attributes/proto-attribute-2.mm: Skip for Darwin < 9.
	* obj-c++.dg/attributes/class-attribute-1.mm: Likewise.
	* obj-c++.dg/attributes/proto-attribute-3.mm: Likewise.
	* obj-c++.dg/template-8.mm: Likewise.

2011-02-10  Jakub Jelinek  <jakub@redhat.com>

	PR target/47665
	* gcc.target/i386/pr47665.c: New test.

2011-02-10  Jie Zhang  <jie@codesourcery.com>

	PR testsuite/47622
	Revert
	2011-02-05  Jie Zhang  <jie@codesourcery.com>
	PR debug/42631
	* gcc.dg/pr42631.c: Update test.
	* gcc.dg/pr42631-2.c: New test.

2011-02-09  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47352
	* gfortran.dg/proc_decl_25.f90: New.

2011-02-09  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47463
	* gfortran.dg/typebound_assignment_2.f03: New.

2011-02-09  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47664
	* gcc.dg/tree-ssa/inline-7.c: New testcase.

2011-02-09  Eric Botcazou  <ebotcazou@adacore.com>

	PR middle-end/47646
	* gnat.dg/uninit_func.adb: Adjust dg directive.

2011-02-09  Dominique Dhumieres  <dominiq@lps.ens.fr>

	PR middle-end/47646
	* obj-c++.dg/attributes/method-noreturn-1.mm: Adjust dg directives.

2011-02-09  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47637
	* gfortran.dg/auto_dealloc_2.f90: New.

2011-02-09  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* gcc.dg/builtins-config.h: Remove __sgi handling.
	* lib/target-supports.exp (add_options_for_c99_runtime): Add
	-std=c99 for mips-sgi-irix6.5*.

2011-02-09  Martin Jambor  <mjambor@suse.cz>

	PR middle-end/45505
	* gfortran.dg/pr25923.f90: Remove xfails.

2011-02-08  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/47583
	* gfortran.dg/inquire_14.f90: New test.

2011-02-08  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/45290
	* gfortran.dg/pointer_init_6.f90: New.

2011-02-08  Jeff Law <law@redhat.com>

	PR tree-optimization/42893
	* gcc.tree-ssa/pr42893.c: New test.

2011-02-08  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/46834
	PR tree-optimization/46994
	PR tree-optimization/46995
	* gcc.dg/graphite/id-pr46834.c: New.
	* gfortran.dg/graphite/id-pr46994.f90: New.
	* gfortran.dg/graphite/id-pr46995.f90: New.

2011-02-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

	PR middle-end/47646
	* gcc.dg/pr39666-2.c (foo2): If the location of the statement
	using the variable is known the warning is emitted there.
	* gcc.dg/uninit-pr19430.c (foo): Likewise.
	* g++.dg/warn/Wuninitialized-5.C (foo): Likewise.

	* c-c++-common/pr20000.c (g): Both warnings occur at the return
	statement.
	(vg): Likewise.
	* gcc.dg/noreturn-1.c (foo5): Likewise.
	* objc.dg/attributes/method-noreturn-1.m (method1): Likewise.
	(method2): Likewise.

	* gfortran.dg/pr25923.f90 (baz): The warning will now be issued for
	the return statement using the uninitialized variable.
	* gfortran.dg/pr39666-2.f90 (f): Likewise.

2011-02-08  Richard Guenther  <rguenther@suse.de>

	PR middle-end/47639
	* g++.dg/opt/pr47639.c: New testcase.

2011-02-08  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47632
	* g++.dg/opt/pr47632.C: New testcase.

2011-02-07  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	* g++.dg/abi/packed1.C: Expect warning on spu-*-* as well.

2011-02-07  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47615
	* g++.dg/opt/pr47615.C: New testcase.

2011-02-07  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47621
	* gcc.dg/torture/pr47621.c: New testcase.

2011-02-07  Uros Bizjak  <ubizjak@gmail.com>

	* gfortran.dg/transpose_optimization_2.f90: Cleanup original dump.

2011-02-06  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/47592
	* gfortran.dg/allocate_with_source_1 : New test.

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

	PR middle-end/47610
	* gcc.dg/pr47610.c: New test.

2011-02-05  Jie Zhang  <jie@codesourcery.com>

	PR debug/42631
	* gcc.dg/pr42631.c: Update test.
	* gcc.dg/pr42631-2.c: New test.

2001-02-05  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR fortran/47574
	* gfortran.dg/pr47574.f90:  New test.

2011-02-04  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/46194
	* gcc.dg/autopar/pr46194.c: New.

2011-02-04  H.J. Lu  <hongjiu.lu@intel.com>

	PR tree-optimization/43695
	* g++.dg/ipa/pr43695.C: New.

2011-02-04  Jakub Jelinek  <jakub@redhat.com>

	PR inline-asm/23200
	* gcc.dg/pr23200.c: New test.

2011-02-03  Jonathan Wakely  <jwakely.gcc@gmail.com>

	PR c++/47589
	* g++.dg/pr47589.C: New test.

2011-02-03  Dodji Seketeli  <dodji@redhat.com>

	PR c++/47398
	* g++.dg/template/typedef37.C: New test.
	* g++.dg/template/param1.C: Adjust expected error message.

2011-02-03  Jakub Jelinek  <jakub@redhat.com>

	PR middle-end/31490
	* gcc.dg/pr31490-2.c: New test.
	* gcc.dg/pr31490-3.c: New test.
	* gcc.dg/pr31490-4.c: New test.

2011-02-03  Nathan Froyd  <froydnj@codesourcery.com>
	    Jakub Jelinek  <jakub@redhat.com>

	PR c++/46890
	* g++.dg/parser/semicolon3.C: Adjust.
	* g++.dg/parser/semicolon4.C: New testcase.
	* g++.dg/pr46890.C: New testcase.

2011-02-03  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/29571
	* g++.dg/init/pr29571.C: New.

2011-02-03  H.J. Lu  <hongjiu.lu@intel.com>

	* gfortran.dg/graphite/vect-pr40979.f90: Require vect_double
	instead of vect_int.

2011-02-03  Jakub Jelinek  <jakub@redhat.com>

	PR target/47312
	* gcc.target/i386/pr47312.c: New test.

	PR target/47564
	* gcc.target/i386/pr47564.c: New test.

2011-02-03  Alexandre Oliva  <aoliva@redhat.com>

	PR tree-optimization/45122
	* gcc.dg/tree-ssa/pr45122.c: New.

2011-02-02  Michael Meissner  <meissner@linux.vnet.ibm.com>

	PR target/47272
	* gcc.target/powerpc/vsx-builtin-8.c: New file, test vec_vsx_ld
	and vec_vsx_st.

	* gcc.target/powerpc/avoid-indexed-addresses.c: Disable altivec
	and vsx so a default --with-cpu=power7 doesn't give an error
	when -mavoid-indexed-addresses is used.

	* gcc.target/powerpc/ppc32-abi-dfp-1.c: Rewrite to use an asm
	wrapper function to save the arguments and then jump to the real
	function, rather than depending on the compiler not to move stuff
	before an asm.
	* gcc.target/powerpc/ppc64-abi-dfp-2.c: Ditto.

2011-02-02  Janus Weil  <janus@gcc.gnu.org>
	    Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/47082
	* gfortran.dg/class_37.f03 : New test.

2011-02-02  Sebastian Pop  <sebastian.pop@amd.com>
	    Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/40979
	PR bootstrap/47044
	* gcc.dg/graphite/graphite.exp (DEFAULT_VECTCFLAGS): Add -ffast-math.
	* gcc.dg/graphite/pr35356-2.c: Adjust pattern.
	* gfortran.dg/graphite/graphite.exp: Run vect_files conditionally to
	check_vect_support_and_set_flags.
	* gfortran.dg/graphite/vect-pr40979.f90: New.

2011-02-02  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47572
	* gfortran.dg/class_36.f03: New.

2011-02-02  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47566
	* gcc.dg/lto/20110201-1_0.c: New testcase.

2011-02-02  Alexandre Oliva  <aoliva@redhat.com>

	PR debug/47498
	PR debug/47501
	PR debug/45136
	PR debug/45130
	* debug/pr47498.c: New.
	* debug/pr47501.c: New.

2011-02-01  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47559
	* g++.dg/torture/pr47559.C: New testcase.

2011-02-01  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47565
	* gfortran.dg/typebound_call_20.f03: New.

2011-02-01  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47555
	* gcc.dg/pr47555.c: New testcase.

2011-02-01  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47541
	* g++.dg/torture/pr47541.C: New testcase.

2011-01-31  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47455
	* gfortran.dg/typebound_call_19.f03: New.

2011-01-31  Jakub Jelinek  <jakub@redhat.com>

	PR c++/47416
	* g++.dg/cpp0x/pr47416.C: New test.

2011-01-31  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/47519
	* gfortran.dg/allocate_deferred_char_scalar_2.f03: New test.

2011-01-31  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47463
	* gfortran.dg/typebound_assignment_1.f03: New.

2011-01-31  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47538
	* gcc.c-torture/execute/pr47538.c: New test.

2011-01-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR target/45325
	* gcc.target/i386/pr38240.c: Add dg-options "-msse".

2011-01-31  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* g++.dg/abi/mangle40.C: Pass "" to dg-require-weak.

2011-01-31  Eric Botcazou  <ebotcazou@adacore.com>

	PR rtl-optimization/44031
	* gcc.c-torture/compile/20110131-1.c: New test.

2011-01-31  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47042
	* gfortran.dg/stmt_func_1.f90: New.

2011-01-31  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47042
	* gfortran.dg/interface_34.f90: New.

2011-01-30  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/47523
	* gfortran.dg/realloc_on_assign_5.f03: New test.
	* gfortran.dg/realloc_on_assign_5.f03: New test.

2011-01-29  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	* gfortran.dg/bessel_6.f90: XFAIL on spu-*-*.
	* gfortran.dg/bessel_7.f90: Likewise.
	* gfortran.dg/erf_2.F90: Likewise.  Always run with -O0.

	* gfortran.dg/complex_intrinsics_5.f90: Increase "epsilon".
	* gfortran.dg/sum_init_expr.f03: Likewise.

	* gfortran.dg/realloc_on_assign_2.f03: Skip on spu-*-*.

	* gfortran.dg/lto/20091016-1_0.f90: Replace -shared with
	-r -nostdlib.

	* gfortran.dg/vect/fast-math-vect-8.f90: Check for vectorized
	loop only on "vect_intfloat_cvt" targets.

2011-01-29  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47531
	* gfortran.dg/shape_6.f90: New.

2011-01-29  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/47434
	* gfortran.dg/read_infnan_1.f90: Update test.
	* gfortran.dg/module_nan.f90: Update test.
	* gfortran.dg/char4_iunit_1.f03: Update test.
	* gfortran.dg/large_real_kind_1.f90: Update test.
	* gfortran.dg/real_const_3.f90: Update test.
	* gfortran.fortran-torture/execute/nan_inf_fmt.f90: Update test.

2011-01-29  Dodji Seketeli  <dodji@redhat.com>

	PR c++/47311
	* g++.dg/template/param2.C: New test.

2011-01-28  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/47285
	* gfortran.dg/fmt_g.f: New test.

2011-01-28  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47507
	* gfortran.dg/pure_formal_1.f90: New.

2011-01-28  Jakub Jelinek  <jakub@redhat.com>

	PR target/42894
	* gcc.dg/tls/pr42894.c: New test.

2011-01-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* gcc.dg/pr47276.c: Add dg-require-visibility.

2011-01-28  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* gcc.target/i386/asm-6.c: XFAIL on i?86-pc-solaris2.1[0-9] && ilp32.

2011-01-28  Paul Thomas  <pault@gcc.gnu.org>
	    Tobias Burnus  <burnus@gcc.gnu.org>

	PR fortran/45170
	PR fortran/35810
	PR fortran/47350
	* gfortran.dg/realloc_on_assign_3.f03: New test.
	* gfortran.dg/realloc_on_assign_4.f03: New test.
	* gfortran.dg/allocatable_function_5.f90: New test.
	* gfortran.dg/allocate_deferred_char_scalar_1.f03: New test.
	* gfortran.dg/deferred_type_param_2.f90: Remove two "not yet
	implemented" dg-errors.

2011-01-27  Jan Hubicka  <jh@suse.cz>

	PR middle-end/46949
	* gcc.dg/attr-weakref-4.c: New testcase

2011-01-27  Martin Jambor  <mjambor@suse.cz>

	PR tree-optimization/47228
	* gcc.dg/torture/pr47228.c: New test.

2011-01-27  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

	* gcc.dg/tree-ssa/pr42585.c: Disable on s390 and s390x.

2011-01-27  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	* lib/compat.exp (compat-execute): Pass -Wl,--extra-stack-space=8192
	when using auto-overlay support on the SPU.

2011-01-27  Eric Botcazou  <ebotcazou@adacore.com>

	PR rtl-optimization/44174
	* gcc.target/i386/asm-6.c: New test.

2011-01-26  Mikael Pettersson  <mikpe@it.uu.se>

	PR rtl-optimization/46856
	* gcc.c-torture/compile/pr46856.c: New test.

2011-01-26  Nicola Pero  <nicola.pero@meta-innovation.com>
	    Andrew Pinski  <pinskia@gmail.com>

	PR c/43082
	* gcc.dg/pr43082.c: New.

2011-01-26  DJ Delorie  <dj@redhat.com>

	PR rtl-optimization/46878
	* gcc.dg/pr46878-1.c: New test.

2011-01-26  Jakub Jelinek  <jakub@redhat.com>

	PR c++/47476
	* g++.dg/cpp0x/pr47476.C: New test.

2011-01-26  Eric Botcazou  <ebotcazou@adacore.com>

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

2011-01-26  Jakub Jelinek  <jakub@redhat.com>

	PR c/47473
	* gcc.dg/torture/pr47473.c: New test.

2011-01-26  Jan Hubicka  <jh@suse.cz>

	PR target/47237
	* gcc.c-torture/execute/pr47237.c: New testcase.

2011-01-26  Jan Hubicka  <jh@suse.cz>

	PR tree-optimization/47190
	* gcc.dg/attr-weakref-3.c: New testcase.

2011-01-26  Dave Korn  <dave.korn.cygwin@gmail.com>

	PR c++/43601
	* gcc.dg/dll-9a.c: New test file.
	* gcc.dg/dll-11.c: Likewise.
	* gcc.dg/dll-12.c: Likewise.
	* gcc.dg/dll-12a.c: Likewise.
	* gcc.dg/dll-11a.c: Likewise.
	* gcc.dg/dll-9.c: Likewise.
	* gcc.dg/dll-10.c: Likewise.
	* gcc.dg/dll-10a.c: Likewise.
	* g++.dg/ext/dllexport4a.cc: Likewise.
	* g++.dg/ext/dllexport4.C: Likewise.
	* g++.dg/ext/dllexport5.C: Likewise.
	* g++.dg/ext/dllexport5a.cc: Likewise.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/46970
	* gcc.dg/graphite/pr46970.c: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/46215
	* gcc.dg/graphite/pr46215.c: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/46168
	* gcc.dg/graphite/pr46168.c: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/43657
	* gcc.dg/graphite/pr43657.c: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/29832
	* gfortran.dg/graphite/pr29832.f90: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	PR tree-optimization/43567
	* gcc.dg/graphite/pr43567.c: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	* gfortran.dg/graphite/interchange-4.f: New.
	* gfortran.dg/graphite/interchange-5.f: New.

	* gcc.dg/tree-ssa/ltrans-1.c: Removed.
	* gcc.dg/tree-ssa/ltrans-2.c: Removed.
	* gcc.dg/tree-ssa/ltrans-3.c: Removed.
	* gcc.dg/tree-ssa/ltrans-4.c: Removed.
	* gcc.dg/tree-ssa/ltrans-5.c: Removed.
	* gcc.dg/tree-ssa/ltrans-6.c: Removed.
	* gcc.dg/tree-ssa/ltrans-8.c: Removed.
	* gfortran.dg/ltrans-7.f90: Removed.
	* gcc.dg/tree-ssa/data-dep-1.c: Removed.

	* gcc.dg/pr18792.c: -> gcc.dg/graphite/pr18792.c
	* gcc.dg/pr19910.c: -> gcc.dg/graphite/pr19910.c
	* gcc.dg/tree-ssa/20041110-1.c: -> gcc.dg/graphite/pr20041110-1.c
	* gcc.dg/tree-ssa/pr20256.c: -> gcc.dg/graphite/pr20256.c
	* gcc.dg/pr23625.c: -> gcc.dg/graphite/pr23625.c
	* gcc.dg/tree-ssa/pr23820.c: -> gcc.dg/graphite/pr23820.c
	* gcc.dg/tree-ssa/pr24309.c: -> gcc.dg/graphite/pr24309.c
	* gcc.dg/tree-ssa/pr26435.c: -> gcc.dg/graphite/pr26435.c
	* gcc.dg/pr29330.c: -> gcc.dg/graphite/pr29330.c
	* gcc.dg/pr29581-1.c: -> gcc.dg/graphite/pr29581-1.c
	* gcc.dg/pr29581-2.c: -> gcc.dg/graphite/pr29581-2.c
	* gcc.dg/pr29581-3.c: -> gcc.dg/graphite/pr29581-3.c
	* gcc.dg/pr29581-4.c: -> gcc.dg/graphite/pr29581-4.c
	* gcc.dg/tree-ssa/loop-27.c: -> gcc.dg/graphite/pr30565.c
	* gcc.dg/tree-ssa/pr31183.c: -> gcc.dg/graphite/pr31183.c
	* gcc.dg/tree-ssa/pr33576.c: -> gcc.dg/graphite/pr33576.c
	* gcc.dg/tree-ssa/pr33766.c: -> gcc.dg/graphite/pr33766.c
	* gcc.dg/pr34016.c: -> gcc.dg/graphite/pr34016.c
	* gcc.dg/tree-ssa/pr34017.c: -> gcc.dg/graphite/pr34017.c
	* gcc.dg/tree-ssa/pr34123.c: -> gcc.dg/graphite/pr34123.c
	* gcc.dg/tree-ssa/pr36287.c: -> gcc.dg/graphite/pr36287.c
	* gcc.dg/tree-ssa/pr37686.c: -> gcc.dg/graphite/pr37686.c
	* gcc.dg/pr42917.c: -> gcc.dg/graphite/pr42917.c
	* gcc.dg/tree-ssa/data-dep-1.c
	* gfortran.dg/loop_nest_1.f90: -> gfortran.dg/graphite/pr29290.f90
	* gfortran.dg/pr29581.f90: -> gfortran.dg/graphite/pr29581.f90
	* gfortran.dg/pr36286.f90: -> gfortran.dg/graphite/pr36286.f90
	* gfortran.dg/pr36922.f: -> gfortran.dg/graphite/pr36922.f
	* gfortran.dg/pr39516.f: -> gfortran.dg/graphite/pr39516.f

2011-01-25  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47265
	PR tree-optimization/47443
	* gcc.c-torture/compile/pr47265.c: New test.
	* gcc.dg/pr47443.c: New test.

2011-01-25  Martin Jambor  <mjambor@suse.cz>

	PR tree-optimization/47382
	* g++.dg/torture/pr47382.C: New test.
	* g++.dg/opt/devirt1.C: Xfail.

2011-01-25  Yao Qi  <yao@codesourcery.com>

	PR target/45701
	* gcc.target/arm/pr45701-1.c: New test.
	* gcc.target/arm/pr45701-2.c: New test.
	* gcc.target/arm/pr45701-3.c: New test.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>
	    Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47271
	* gcc.dg/tree-ssa/ifc-pr47271.c: New.

2011-01-25  Nick Clifton  <nickc@redhat.com>

	* gcc.target/rx/builtins.c: Allow -fipa-cp-clone.
	(saturate_add): Delete.
	(exchange): Delete.
	(main): Do not run saturate_add.
	(set_interrupts): Delete.

2011-01-25  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47448
	* gfortran.dg/redefined_intrinsic_assignment_2.f90: New.

2011-01-25  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47427
	PR tree-optimization/47428
	* gcc.c-torture/compile/pr47427.c: New test.
	* gcc.c-torture/compile/pr47428.c: New test.

2011-01-25  Richard Guenther  <rguenther@suse.de>

	PR middle-end/47411
	* gcc.dg/torture/pr47411.c: New testcase.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	* gfortran.dg/graphite/id-24.f: New.
	* gfortran.dg/graphite/id-25.f: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	* gfortran.dg/graphite/id-23.f: New.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	* gfortran.dg/graphite/interchange-3.f90: Un-XFAILed.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	* gcc.dg/graphite/block-0.c: Un-XFAILed.
	* gcc.dg/graphite/block-1.c: Un-XFAILed.
	* gcc.dg/graphite/block-7.c: Un-XFAILed.
	* gcc.dg/graphite/block-8.c: Un-XFAILed.
	* gcc.dg/graphite/interchange-12.c: Un-XFAILed.
	* gcc.dg/graphite/interchange-14.c: Un-XFAILed.
	* gcc.dg/graphite/interchange-15.c: Un-XFAILed.
	* gcc.dg/graphite/interchange-8.c: Un-XFAILed.
	* gcc.dg/graphite/interchange-mvt.c: Un-XFAILed.

2011-01-25  Sebastian Pop  <sebastian.pop@amd.com>

	* gcc.dg/graphite/block-0.c: Add documentation.
	* gcc.dg/graphite/block-4.c: Same.
	* gcc.dg/graphite/block-7.c: Same.
	* gcc.dg/graphite/block-8.c: New.
	* gcc.dg/graphite/interchange-1.c: Un-XFAILed.
	* gcc.dg/graphite/interchange-11.c: Un-XFAILed.
	* gcc.dg/graphite/interchange-12.c: Add documentation.
	* gcc.dg/graphite/interchange-13.c: New.
	* gcc.dg/graphite/interchange-14.c: New.
	* gcc.dg/graphite/interchange-15.c: New.
	* gcc.dg/graphite/interchange-8.c: Add documentation.
	* gcc.dg/graphite/interchange-mvt.c: Same.

2011-01-24  Michael Meissner  <meissner@linux.vnet.ibm.com>

	PR target/47408
	* gcc.target/powerpc/altivec-11.c: Add explicit -mno-vsx.
	* gcc.target/powerpc/altivec-14.c: Ditto.
	* gcc.target/powerpc/altivec-33.c: Ditto.
	* gcc.target/powerpc/altivec-types-1.c: Ditto.
	* gcc.target/powerpc/altivec-types-2.c: Ditto.
	* gcc.target/powerpc/altivec-types-3.c: Ditto.
	* gcc.target/powerpc/altivec-types-4.c: Ditto.
	* gcc.target/powerpc/ppc-vector-memcpy.c: Ditto.
	* gcc.target/powerpc/ppc-vector-memset.c: Ditto.
	* g++.dg/ext/altivec-15.C: Ditto.
	* g++.dg/ext/altivec-types-1.C: Ditto.
	* g++.dg/ext/altivec-types-2.C: Ditto.
	* g++.dg/ext/altivec-types-3.C: Ditto.
	* g++.dg/ext/altivec-types-4.C: Ditto.

2011-01-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* lib/scanasm.exp (dg-function-on-line): Handle mips-sgi-irix*.

2011-01-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* gfortran.dg/cray_pointers_2.f90: Avoid cycling through
	optimization options.

2011-01-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* gfortran.dg/array_constructor_33.f90: Use dg-timeout-factor 4.

	PR testsuite/45988
	* gfortran.dg/vect/fast-math-pr38968.f90: Use dg-timeout-factor 2.

2011-01-23  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47421
	* gfortran.dg/allocatable_scalar_12.f90: New.

2011-01-23  Ira Rosen  <irar@il.ibm.com>

	* gcc.dg/vect/costmodel/spu/costmodel-vect-33.c: Expect
	vectorization to be not profitable if peeling is used to
	realign the memory access.
	* gcc.dg/vect/costmodel/spu/costmodel-vect-76a.c: Increase
	loop bound to avoid loop unrolling.
	* gcc.dg/vect/costmodel/spu/costmodel-vect-76c.c: Likewise.

2011-01-22  Jan Hubicka  <jh@suse.cz>

	PR lto/47333
	* g++.dg/lto/pr47333.C: New file.

2011-01-22  Jan Hubicka  <jh@suse.cz>

	PR tree-optimization/43884
	PR lto/44334
	* gcc.dg/autopar/outer-2.c: Increase array size.
	* gcc.dg/tree-ssa/ldist-pr45948.c: Update test.

2011-01-22  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR fortran/38536
	* gfortran.dg/c_loc_tests_16.f90:  New test.

2011-01-22  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47399
	* gfortran.dg/typebound_proc_19.f90: New.

2011-01-21  Jeff Law <law@redhat.com>

	PR tree-optimization/47053
	* g++.dg/pr47053.C: New test.

2011-01-21  Jason Merrill  <jason@redhat.com>

	PR c++/47041
	* g++.dg/cpp0x/constexpr-ctor6.C: New.

2011-01-21  Jakub Jelinek  <jakub@redhat.com>

	PR c++/47388
	* g++.dg/cpp0x/range-for10.C: New test.
	* g++.dg/template/for1.C: New test.

	PR middle-end/45566
	* g++.dg/tree-prof/partition3.C: New test.

	* g++.dg/tree-prof/tree-prof.exp: Fix a comment.

	PR rtl-optimization/47366
	* g++.dg/opt/pr47366.C: New test.

2011-01-21  Jason Merrill  <jason@redhat.com>

	PR c++/46552
	* g++.dg/cpp0x/constexpr-regress2.C: New.

	* g++.dg/cpp0x/constexpr-stmtexpr.C: New.

2011-01-21  Jeff Law <law@redhat.com>

	PR rtl-optimization/41619
	* gcc.dg/pr41619.c: New.

2011-01-21  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47355
	* g++.dg/opt/pr47355.C: New test.

2011-01-21  Richard Guenther  <rguenther@suse.de>

	* gcc.dg/tree-ssa/pr47392.c: Make test non-static instead of
	making main hot.

2011-01-21  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47365
	* gcc.dg/torture/pr47365.c: New testcase.
	* gcc.dg/tree-ssa/pr47392.c: Likewise.

2011-01-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* g++.dg/other/anon5.C: Skip on mips-sgi-irix*.

2011-01-21  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47391
	* gcc.dg/pr47391.c: New test.

2011-01-21  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* g++.dg/template/char1.C: Use signed char.

2011-01-21  Tobias Burnus  <burnus@net-b.de>

	PR fortran/47377
	* gfortran.dg/pointer_target_4.f90: New.

2011-01-20  Michael Meissner  <meissner@linux.vnet.ibm.com>

	PR target/47251
	* gcc.target/powerpc/pr47251.c: Fixup test so that it runs on
	ILP32 system and not IP32.

2011-01-20  Alexandre Oliva  <aoliva@redhat.com>

	PR debug/46583
	* g++.dg/debug/pr46583.C: New.

2011-01-20  Jakub Jelinek  <jakub@redhat.com>

	PR debug/47283
	* g++.dg/debug/pr47283.C: New test.

	PR testsuite/47371
	* gcc.target/i386/headmerge-1.c: Tighten up scan-assembler regex.
	* gcc.target/i386/headmerge-2.c: Likewise.

2011-01-20  Richard Guenther  <rguenther@suse.de>

	PR middle-end/47370
	* gcc.dg/torture/pr47370.c: New testcase.

2011-01-20  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/46130
	* gcc.dg/pr46130-1.c: New test.
	* gcc.dg/pr46130-2.c: New test.

2011-01-19  Dodji Seketeli  <dodji@redhat.com>

	PR c++/47291
	* g++.dg/debug/dwarf2/template-params-10.C: New test.

2011-01-19  Alexandre Oliva  <aoliva@redhat.com>

	PR debug/46240
	* g++.dg/debug/pr46240.cc: New.

2011-01-19  Jakub Jelinek  <jakub@redhat.com>

	PR c++/47303
	* g++.dg/template/anonunion1.C: New test.

	PR rtl-optimization/47337
	* gcc.c-torture/execute/pr47337.c: New test.

2011-01-19  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	PR testsuite/45342
	* gcc.dg/tls/thr-cse-1.c: Fix match on spu-*.*.

2011-01-19  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	PR tree-optimization/46021
	* gcc.dg/tree-ssa/20040204-1.c: Do not XFAIL on spu-*-*.

2011-01-19  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47290
	* g++.dg/torture/pr47290.C: New test.

2011-01-18  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47240
	* gfortran.dg/proc_ptr_comp_29.f90: New.

2011-01-18  Dominique d'Humieres  <dominiq@lps.ens.fr>

	PR testsuite/41146
	* gcc.target/powerpc/asm-es-2.c: Adjust regular expression for
	powerpc-apple-darwin9.

2011-01-18  Jakub Jelinek  <jakub@redhat.com>

	PR rtl-optimization/47299
	* gcc.c-torture/execute/pr47299.c: New test.

2011-01-17  Jason Merrill  <jason@redhat.com>

	* g++.dg/cpp0x/constexpr-virtual.C: New.

2011-01-17  Jakub Jelinek  <jakub@redhat.com>

	PR fortran/47331
	* gfortran.dg/gomp/pr47331.f90: New test.

2011-01-17  Nicola Pero  <nicola.pero@meta-innovation.com>

	PR objc/47314
	* objc.dg/selector-warn-1.m: New.
	* obj-c++.dg/selector-warn-1.mm: New.

2011-01-17  Richard Sandiford  <rdsandiford@googlemail.com>

	* gcc.dg/tree-ssa/vrp51.c: Prefix each "bug." string with "vrp.".
	Update dg-final accordingly.

2011-01-17  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* g++.old-deja/g++.other/init19.C: Don't XFAIL on mips-sgi-irix*.

2011-01-17  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

	* gcc.dg/guality/pr36728-1.c: Replace XFAIL for s390(x) with a
	target check.
	* gcc.dg/guality/pr36728-2.c: Likewise.

2011-01-17  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47313
	* g++.dg/torture/pr47313.C: New testcase.

2011-01-17  H.J. Lu  <hongjiu.lu@intel.com>

	PR target/47318
	* gcc.target/i386/avx-vmaskmovpd-1.c: New.
	* gcc.target/i386/avx-vmaskmovpd-2.c: Likewise.
	* gcc.target/i386/avx-vmaskmovps-1.c: Likewise.
	* gcc.target/i386/avx-vmaskmovps-1.c: Likewise.

	* gcc.target/i386/avx-vmaskmovpd-256-1.c (avx_test): Load mask
	as __m256i.
	* gcc.target/i386/avx-vmaskmovpd-256-2.c (avx_test): Likewise.
	* gcc.target/i386/avx-vmaskmovps-256-1.c (avx_test): Likewise.
	* gcc.target/i386/avx-vmaskmovps-256-2.c (avx_test): Likewise.

2011-01-17  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/45967
	* gcc.dg/torture/pr45967-2.c: New testcase.
	* gcc.dg/torture/pr45967-3.c: Likewise.

2011-01-16  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>

	PR testsuite/47325
	* g++.dg/ext/pr47213.C: Require visibility.

2011-01-16  Richard Sandiford  <rdsandiford@googlemail.com>

	* gcc.dg/fixed-point/composite-type.c: Pass -Wno-unused.
	* gcc.dg/fixed-point/struct-union.c: Update error messages.

2011-01-16  Richard Sandiford  <rdsandiford@googlemail.com>

	* gcc.c-torture/execute/20101011-1.c: Skip test for MIPS16
	Linux-based targets.

2011-01-13  Jan Hubicka  <jh@suse.cz>

	PR tree-optimization/47276
	* gcc.dg/pr47276.c: New testcase.

2011-01-15  Giovanni Funchal  <gafunchal@gmail.com>
	    Jonathan Wakely  <jwakely.gcc@gmail.com>

	PR c++/33558
	* g++.dg/other/pr33558.C: New.
	* g++.dg/other/pr33558-2.C: New.

2011-01-14  Martin Jambor  <mjambor@suse.cz>

	PR tree-optimization/45934
	PR tree-optimization/46302
	* g++.dg/ipa/devirt-c-1.C: New test.
	* g++.dg/ipa/devirt-c-2.C: Likewise.
	* g++.dg/ipa/devirt-c-3.C: Likewise.
	* g++.dg/ipa/devirt-c-4.C: Likewise.
	* g++.dg/ipa/devirt-c-5.C: Likewise.
	* g++.dg/ipa/devirt-c-6.C: Likewise.
	* g++.dg/ipa/devirt-6.C: Likewise.
	* g++.dg/ipa/devirt-d-1.C: Likewise.
	* g++.dg/torture/pr45934.C: Likewise.

2011-01-14  Jason Merrill  <jason@redhat.com>

	* g++.dg/cpp0x/variadic105.C: New.

2011-01-08  Dominique d'Humieres  <dominiq@lps.ens.fr>
	    Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR objc/45989
	* objc.dg/gnu-encoding/struct-layout-encoding-1_generate.c
	(switchfiles): XFAIL objc.dg-struct-layout-encoding-1/t02[57-9]_main.m
	execution tests on i?86-*-*, x86_64-*-* and
	powerpc*-apple-darwin* && ilp32.
	XFAIL objc.dg-struct-layout-encoding-1/t03[01]_main.m execution
	tests on i?86-*-* and x86_64-*-*.

2011-01-14  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47280
	* g++.dg/opt/pr47280.C: New testcase.

2011-01-14  Jason Merrill  <jason@redhat.com>

	* g++.dg/cpp0x/constexpr-regress1.C: New.

	* g++.dg/ext/flexary2.C: New.

2011-01-14  Richard Guenther  <rguenther@suse.de>

	PR middle-end/47281
	* gcc.dg/torture/pr47281.c: New testcase.
	* gcc.dg/tree-ssa/pr46076.c: XFAIL.

2011-01-14  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/47286
	* gcc.dg/tree-ssa/pr47286.c: New testcase.

2011-01-13  Kai Tietz  <kai.tietz@onevision.com>

	PR c++/47213
	* g++.dg/ext/pr47213.C: New.

2011-01-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* gfortran.dg/cray_pointers_2.f90: Use dg-timeout-factor 4.

2011-01-13  Tobias Burnus  <burnus@net-b.de>
	    Mikael Morin  <mikael@gcc.gnu.org>

	PR fortran/45848
	PR fortran/47204
	* gfortran.dg/select_type_20.f90: New.
	* gfortran.dg/select_type_21.f90: New.

2011-01-13  Michael Meissner  <meissner@linux.vnet.ibm.com>

	PR target/47251
	* gcc.target/powerpc/pr47251.c: New file, test PR 47251 fix.

2011-01-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

	* gcc.dg/guality/pr36728-1.c: Disable arg1/2 checks for s390 and s390x.
	* gcc.dg/guality/pr36728-2.c: Likewise.

2011-01-13  Dodji Seketeli  <dodji@redhat.com>

	PR debug/PR46973
	* g++.dg/debug/dwarf2/template-params-9.C: New test.

2011-01-13  Andrey Belevantsev  <abel@ispras.ru>

	PR rtl-optimization/45352
	* gcc.dg/pr45352-3.c: New.

2011-01-12  Rodrigo Rivas Costa <rodrigorivascosta@gmail.com>

	* g++.dg/cpp0x/range-for4.C: Delete useless include and duplicated
	comment.
	* g++.dg/cpp0x/range-for8.C: New.
	* g++.dg/cpp0x/range-for9.C: New.

2011-01-12  Kai Tietz  <kai.tietz@onevision.com>

	PR debug/47209
	* g++.dg/debug/pr47209.C: New.

2011-01-12  Richard Guenther  <rguenther@suse.de>

	PR lto/47259
	* gcc.dg/lto/pr47259_0.c: New testcase.
	* gcc.dg/lto/pr47259_1.c: Likewise.

2011-01-12  Iain Sandoe  <iains@gcc.gnu.org>

	* objc-obj-c++-shared/Object1.h: Add copyright header, update
	comments.  Add a TEST_SUITE_ADDITIONS category for GNU runtime.
	Amend NeXT version to declare a TEST_SUITE_ADDITIONS carrying the
	methods missing from the OBJC2 Object.
	* objc-obj-c++-shared/Object1-implementation.h: Add copyright header.
	Amend implementation to use a TEST_SUITE_ADDITIONS category for both
	GNU and NeXT runtimes.
	* objc-obj-c++-shared/Object1.mm: Remove redundant header, update
	comments.
	* objc-obj-c++-shared/Object1.m: Likewise.
	* objc.dg/encode-3.m: Update header use.  Amend to be API2 compatible.
	* objc.dg/proto-qual-1.m: Likewise.
	* obj-c++.dg/proto-lossage-3.mm: Likewise.
	* obj-c++.dg/proto-qual-1.mm: Likewise.

2011-01-12  Eric Botcazou  <ebotcazou@adacore.com>

	PR testsuite/33033
	* gcc.dg/20061124-1.c: Pass -mcpu=v9 on the SPARC.

2011-01-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	Fixed the Objective-C++ testsuite and updated all tests.
	* lib/obj-c++.exp (obj-c++_init): Declare and set
	gcc_warning_prefix and gcc_error_prefix.
	* obj-c++.dg/attributes/categ-attribute-2.mm: Fixed usage of
	'dg-warning', 'dg-message' and 'dg-error'.
	* obj-c++.dg/class-extension-3.mm: Likewise.
	* obj-c++.dg/class-protocol-1.mm: Likewise.
	* obj-c++.dg/encode-7.mm: Likewise.
	* obj-c++.dg/exceptions-3.mm: Likewise.
	* obj-c++.dg/exceptions-5.mm: Likewise.
	* obj-c++.dg/method-12.mm: Likewise.
	* obj-c++.dg/method-13.mm: Likewise.
	* obj-c++.dg/method-15.mm: Likewise.
	* obj-c++.dg/method-16.mm: Likewise.
	* obj-c++.dg/method-4.mm: Likewise.
	* obj-c++.dg/method-8.mm: Likewise.
	* obj-c++.dg/method-conflict-1.mm: Likewise.
	* obj-c++.dg/method-conflict-2.mm: Likewise.
	* obj-c++.dg/method-conflict-3.mm: Likewise. Also, removed FIXME
	and uncommented second part of the testcase now that the testsuite
	works correctly.
	* obj-c++.dg/method-conflict-4.mm: Likewise.  Also, removed FIXME
	and uncommented second part of the testcase now that the testsuite
	works correctly.
	* obj-c++.dg/private-1.mm: Likewise.
	* obj-c++.dg/proto-lossage-4.mm: Likewise.
	* obj-c++.dg/syntax-error-7.mm: Likewise.
	* obj-c++.dg/warn5.mm: Likewise.
	* obj-c++.dg/property/at-property-14.mm: Likewise.
	* obj-c++.dg/property/at-property-16.mm: Likewise, and removed
	FIXME.
	* obj-c++.dg/property/at-property-18.mm: Likewise.
	* obj-c++.dg/property/at-property-20.mm: Likewise, and removed
	FIXME.
	* obj-c++.dg/property/at-property-21.mm: Likewise.
	* obj-c++.dg/property/at-property-28.mm: Likewise.
	* obj-c++.dg/property/at-property-5.mm: Likewise.
	* obj-c++.dg/property/dynamic-2.mm: Likewise.
	* obj-c++.dg/property/property-neg-3.mm: Likewise.
	* obj-c++.dg/property/synthesize-11.mm: Likewise.
	* obj-c++.dg/property/synthesize-6.mm: Likewise.
	* obj-c++.dg/property/synthesize-8.mm: Likewise.
	* obj-c++.dg/property/synthesize-9.mm: Likewise.
	* obj-c++.dg/tls/diag-5.mm: Likewise.
	* obj-c++.dg/ivar-invalid-type-1.mm: Removed FIXME and uncommented
	dg-error, now matched correctly.

2011-01-12  Nicola Pero  <nicola.pero@meta-innovation.com>

	* objc.dg/property/at-property-29.m: New.
	* obj-c++.dg/property/at-property-29.mm: New.

2011-01-11  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* go.test/go-test.exp (go-set-goarch): New proc.
	(go-gc-tests): Use it.

2011-01-11  Dodji Seketeli  <dodji@redhat.com>

	PR debug/46955
	* g++.dg/debug/dwarf2/template-params-8.C: New test.

2011-01-11  Richard Henderson  <rth@redhat.com>

	* gcc-dg/tree-ssa/vrp47.c: Disable for mn10300 as well.

2011-01-11  Jan Hubicka  <jh@suse.cz>

	PR lto/45721
	PR lto/45375
	* testsuite/gcc.dg/lto/pr45721_1.c: New file.
	* testsuite/gcc.dg/lto/pr45721_0.c: New file.

2011-01-11  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/46076
	* gcc.dg/tree-ssa/pr46076.c: New testcase.

2011-01-11  Jeff Law <law@redhat.com>

	* PR tree-optimization/47086
	* gcc.dg/pr47086.c: New test.

2011-01-11  Jason Merrill  <jason@redhat.com>

	PR c++/46658
	* g++.dg/template/new10.C: New.

	PR c++/45520
	* g++.dg/cpp0x/lambda/lambda-this3.C: New.

2011-01-11  Iain Sandoe  <iains@gcc.gnu.org>

	* objc-obj-c++-shared/next-mapping.h: Add copyright header.
	Split type definitions and NSConstantString class into...
	* objc-obj-c++-shared/objc-test-suite-types.h: New.
	* objc-obj-c++-shared/nsconstantstring-class.h: New.
	* objc-obj-c++-shared/nsconstantstring-class-impl.h: New.
	* objc-obj-c++-shared/nsconstantstring-class-impl.m: New.
	* objc-obj-c++-shared/nsconstantstring-class-impl.mm: New.
	* objc-obj-c++-shared/next-abi.h: Add copyright header, minor update
	to comments.
	* objc-obj-c++-shared/objc-test-suite-next-encode-assist.h: Adjust
	encode defines for newer NeXT system headers.
	* obj-c++.dg/template-4.mm: Adjust to use nsconstantstring headers.
	* obj-c++.dg/torture/strings/string1.mm: Likewise.
	* objc.dg/foreach-5.m: Likewise.
	* objc.dg/foreach-2.m: Likewise.
	* objc.dg/foreach-4.m: Likewise.
	* objc.dg/torture/strings/string1.m: Likewise.
	* objc.dg/torture/strings/string2.m: Likewise.
	* objc.dg/torture/strings/string3.m: Likewise.
	* objc.dg/torture/strings/string4.m: Likewise.
	* obj-c++.dg/torture/strings/const-str-3.mm: Adjust to use type
	header and stand alone.
	* obj-c++.dg/strings/strings-2.mm: Likewise.
	* objc.dg/torture/strings/const-str-3.m: Likewise.
	* objc.dg/strings/strings-2.m: Likewise.
	* objc.dg/strings/const-str-12b.m: Likewise.

2011-01-12  Richard Guenther  <rguenther@suse.de>

	PR middle-end/32511
	* gcc.dg/attr-weak-1.c: Adjust.

2011-01-11  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/47051
	* gfortran.dg/realloc_on_assign_2.f03 : Modify 'test1' to be
	standard compliant and comment.

2011-01-10  Jan Hubicka  <jh@suse.cz>

	PR lto/46083
	* gcc.dg/initpri3.c: New testcase.

2011-01-10  H.J. Lu  <hongjiu.lu@intel.com>

	PR lto/47222
	* g++.dg/torture/stackalign/test-unwind.h (g_edi): Mark it
	externally visible.
	(g_esi): Likewise.
	(g_ebx): Likewise.
	(g_ebp): Likewise.
	(g_esp): Likewise.
	(g_ebp_save): Likewise.
	(g_esp_save): Likewise.

2011-01-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	* g++.dg/ipa/pr46984.C: Add dg-require-effective-target lto.

2011-01-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>

	PR tree-optimization/46021
	* gcc.dg/tree-ssa/20040204-1.c: Don't XFAIL on alpha*-*-*,
	i?86-*-*, x86_64-*-*.

2011-01-10  Jeff Law <law@redhat.com>

	* PR tree-optimization/47141
	* gcc.c-torture/compile/pr47141.c: New test.

2011-01-10  Eric Botcazou  <ebotcazou@adacore.com>

	PR testsuite/46230
	* gcc.dg/vect/vect-vfa-slp.c: Remove XFAIL.
	* gcc.dg/vect/slp-23.c: Remove XFAIL for SLP.
	* gcc.dg/vect/slp-35.c: Remove XFAILs.
	* gcc.dg/vect/no-tree-pre-slp-29.c: Likewise.

	PR testsuite/46230
	* gcc.dg/vect/vect-peel-1.c (main): Prevent initialization loop from
	being vectorized.  Adjust dg-final pattern.  Remove XFAIL.
	* gcc.dg/vect/vect-peel-2.c (main): Likewise.
	* gcc.dg/vect/vect-peel-4.c (main): Prevent initialization loop from
	being vectorized.  Adjust dg-final pattern.

	PR testsuite/46230
	* gcc.dg/vect/pr33804.c: XFAIL only for ilp32.
	* gcc.dg/vect/slp-24.c: Likewise.

2011-01-10  Dave Korn  <dave.korn.cygwin@gmail.com>

	PR c++/47218
	* g++.dg/other/pr47218-1.C: New test file.
	* g++.dg/other/pr47218.C: Likewise.
	* g++.dg/other/pr47218.h: New supporting header.

2011-01-09  Nicola Pero  <nicola.pero@meta-innovation.com>

	PR objc/47232
	* objc.dg/attributes/invalid-attribute-1.m: New.
	* obj-c++.dg/attributes/invalid-attribute-1.mm: New.

2011-01-09  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47224
	* gfortran.dg/proc_ptr_comp_28.f90: New.

2011-01-09  Iain Sandoe  <iains@gcc.gnu.org>

	* obj-c++.dg/gnu-api-2-class.mm: Skip for Darwin < 9.
	* obj-c++.dg/gnu-api-2-ivar.mm: Likewise.
	* obj-c++.dg/gnu-api-2-method.mm: Likewise.
	* obj-c++.dg/gnu-api-2-objc.mm: Likewise.
	* obj-c++.dg/gnu-api-2-object.mm: Likewise.
	* obj-c++.dg/gnu-api-2-property.mm: Likewise.
	* obj-c++.dg/gnu-api-2-protocol.mm: Likewise.
	* obj-c++.dg/gnu-api-2-sel.mm: Likewise.
	* objc.dg/gnu-api-2-class.m: Likewise.
	* objc.dg/gnu-api-2-ivar.m: Likewise.
	* objc.dg/gnu-api-2-method.m: Likewise.
	* objc.dg/gnu-api-2-objc.m: Likewise.
	* objc.dg/gnu-api-2-object.m: Likewise.
	* objc.dg/gnu-api-2-property.m: Likewise.
	* objc.dg/gnu-api-2-protocol.m: Likewise.
	* objc.dg/gnu-api-2-sel.m: Likewise.

2011-01-09  Iain Sandoe  <iains@gcc.gnu.org>

	* objc.dg/foreach-1.m: Skip for Darwin < 9.
	* objc.dg/objc-foreach-4.m: Likewise.
	* objc.dg/objc-foreach-5.m: Skip for Darwin < 9, adjust headers.
	* objc.dg/foreach-2.m: Skip for Darwin < 9, return self from init.
	* objc.dg/foreach-4.m: Likewise.
	* objc.dg/foreach-5.m: Likewise.
	* objc.dg/foreach-3.m: Return self from init.

2011-01-09  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR fortran/38536
	* gfortran.dg/iso_c_binding_c_loc_char_1.f03:  New test.

2011-01-09  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/46313
	* gfortran.dg/class_35.f90: New.

2011-01-08  Iain Sandoe  <iains@gcc.gnu.org>

	* objc.dg/foreach-1.m: Add "-Wall" to flags.

2011-01-08  Nicola Pero  <nicola.pero@meta-innovation.com>

	PR objc/47078
	* objc.dg/invalid-method-2.m: New.
	* obj-c++.dg/invalid-method-2.mm: New.

2011-01-08  Paul Thomas  <pault@gcc.gnu.org>

	PR fortran/46896
	* gfortran.dg/transpose_optimization_2.f90 : New test.

2011-01-08  Jan Hubicka  <jh@suse.cz>

	PR tree-optmization/46469
	* g++.dg/torture/pr46469.C: New testcase.

2011-01-08  Iain Sandoe  <iains@gcc.gnu.org>

	* objc-obj-c++-shared/next-mapping.h: Move code and definitions for
	emulation of libobjc-gnu structure layout functionality to ..
	* objc-obj-c++-shared/objc-test-suite-next-encode-assist.h: New.
	* objc-obj-c++-shared/objc-test-suite-next-encode-assist-impl.h: New.
	* objc/execute/bf-common.h: Adjust headers.
	* objc/execute/bf-1.m: Likewise.
	* objc/execute/bf-2.m: Likewise.
	* objc/execute/bf-3.m: Likewise.
	* objc/execute/bf-4.m: Likewise.
	* objc/execute/bf-5.m: Likewise.
	* objc/execute/bf-6.m: Likewise.
	* objc/execute/bf-7.m: Likewise.
	* objc/execute/bf-8.m: Likewise.
	* objc/execute/bf-9.m: Likewise.
	* objc/execute/bf-10.m: Likewise.
	* objc/execute/bf-11.m: Likewise.
	* objc/execute/bf-12.m: Likewise.
	* objc/execute/bf-13.m: Likewise.
	* objc/execute/bf-14.m: Likewise.
	* objc/execute/bf-15.m: Likewise.
	* objc/execute/bf-16.m: Likewise.
	* objc/execute/bf-17.m: Likewise.
	* objc/execute/bf-18.m: Likewise.
	* objc/execute/bf-19.m: Likewise.
	* objc/execute/bf-20.m: Likewise.
	* objc/execute/bf-21.m: Likewise.
	* objc/execute/bycopy-3.m: Adjust headers, add next-specific code for
	objc_get_type_qualifiers ().

2011-01-08  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR fortran/45777
	* gfortran.dg/dependency_39.f90:  New test.

2011-01-07  Jan Hubicka  <jh@suse.cz>

	Get builtins tests ready for linker plugin.
	* gcc.c-torture/execute/builtins/memcpy-chk.c (s2,s3,l1): Mark volatile.
	* gcc.c-torture/execute/builtins/memops-asm-lib.c (my_memcpy, my_bcopy,
	my_memset, my_bzero): Mark used.
	* gcc.c-torture/execute/builtins/memset-chk.c (l1, l3): Mark volatile.
	* gcc.c-torture/execute/builtins/memmove-chk.c (s1,s2,s3,l1): Mark
	volatile.
	* gcc.c-torture/execute/builtins/mempcpy-chk.c (s2,s3,l1): Mark
	volatile.

2011-01-07  Jan Hubicka  <jh@suse.cz>

	PR tree-optimization/46367
	* g++.dg/torture/pr46367.C: New file.

2011-01-07  Jakub Jelinek  <jakub@redhat.com>

	PR target/47201
	* gcc.dg/pr47201.c: New test.

	PR bootstrap/47187
	* gcc.dg/tree-prof/pr47187.c: New test.

2011-01-07  Tobias Burnus  <burnus@net-b.de>

	PR fortran/41580
	* gfortran.dg/extends_type_of_3.f90: New.

2011-01-07  Kai Tietz  <kai.tietz@onevision.com>

	* g++.dg/ext/dllexport-MI1.C: Adjust test.
	* g++.dg/ext/dllimport-MI1.C: Likewise.
	* g++.dg/ext/dllimport1.C: Add test for x86_64-*-mingw*.
	* g++.dg/ext/dllimport10.C: Likewise.
	* g++.dg/ext/dllimport11.C: Likewise.
	* g++.dg/ext/dllimport12.C: Likewise.
	* g++.dg/ext/dllimport13.C: Likewise.
	* g++.dg/ext/dllimport2.C: Likewise.
	* g++.dg/ext/dllimport3.C: Likewise.
	* g++.dg/ext/dllimport4.C: Likewise.
	* g++.dg/ext/dllimport5.C: Likewise.
	* g++.dg/ext/dllimport6.C: Likewise.
	* g++.dg/ext/dllimport8.C: Likewise.
	* g++.dg/ext/dllimport9.C: Likewise.
	* g++.dg/ext/selectany2.C: Enable test for x86_64-*-mingw*
	targets, too. Additionally enable test for i?86-*-mingw*.
	* g++.dg/ext/selectany1.C: Likewise.
	Remove guard variable check.

2011-01-07  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47189
	PR fortran/47194
	* gfortran.dg/storage_size_3.f08: Extended.

2011-01-07  Jakub Jelinek  <jakub@redhat.com>

	PR c++/47022
	* g++.dg/template/stdarg1.C: New test.

2011-01-06  Daniel Franke  <franke.daniel@gmail.com>

	PR fortran/47195
	* gfortran.dg/interface_33.f90: Fixed dg-error declarations.
	* gfortran.dg/defined_operators_1.f90: Split the subroutine
	from the interface of functions to not hide the errors that
	shall be tested.

2011-01-06  Jan Hubicka  <jh@suse.cz>

	* testsuite/gcc.dg/lto/pr47188_0.c: New testcase.
	* testsuite/gcc.dg/lto/pr47188_1.c: New testcase.

2011-01-06  Daniel Franke  <franke.daniel@gmail.com>

	PR fortran/33117
	PR fortran/46478
	* gfortran.dg/interface_33.f90: New test.

2011-01-06  Jakub Jelinek  <jakub@redhat.com>

	PR c/47150
	* gcc.c-torture/compile/pr47150.c: New test.

2011-01-06  Ira Rosen  <irar@il.ibm.com>

	PR tree-optimization/47139
	* gcc.dg/vect/pr47139.c: New test.

2011-01-05  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47180
	* gfortran.dg/extends_type_of_2.f03: New.

2011-01-05  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	* gcc.dg/stack-usage-1.c (SIZE): Provide proper value for __SPU__.

2011-01-05  Eric Botcazou  <ebotcazou@adacore.com>

	* gnat.dg/opt14.adb: New test.

2011-01-05  Thomas Koenig  <tkoenig@gcc.gnu.org>

	PR fortran/46017
	* gfortran.dg/allocate_error_2.f90:  New test.

2011-01-05  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/47024
	* gfortran.dg/storage_size_3.f08: New.

2011-01-04  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/47154
	* gfortran.dg/namelist_68.f90: New test.

2011-01-04  Eric Botcazou  <ebotcazou@adacore.com>

	* gnat.dg/unchecked_convert8.ad[sb]: New test.

2011-01-04  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/46448
	* gfortran.dg/class_34.f90: New.

2011-01-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	* gcc.dg/torture/builtin-cproj-1.c: On the __SPU__ target, do not
	use __builtin_inff.  Skip all single-precision tests that require
	Infinity.

2011-01-03  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	* g++.dg/torture/pr46111.C: Add dg-require-effective-target pthread.

2011-01-03  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47148
	* gcc.c-torture/execute/pr47148.c: New test.

	PR tree-optimization/47155
	* gcc.c-torture/execute/pr47155.c: New test.

	PR rtl-optimization/47157
	* gcc.c-torture/compile/pr47157.c: New test.

2011-01-03  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>

	* gcc.dg/torture/vector-shift2.c (schar): Define.
	(main): Always use schar or uchar instead of plain "char" to avoid
	dependencies on implementation-defined char signedness.

2011-01-03  Martin Jambor  <mjambor@suse.cz>

	PR tree-optimization/46801
	* gnat.dg/pack9.adb: Remove xfail.

2011-01-03  Martin Jambor  <mjambor@suse.cz>

	PR tree-optimization/46984
	* g++.dg/ipa/pr46984.C: New test.

2011-01-02  Janus Weil  <janus@gcc.gnu.org>

	PR fortran/46408
	* gfortran.dg/class_19.f03: Adjust counting of __builtin_free.

2011-01-02  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/47140
	* gcc.c-torture/compile/pr47140.c: New test.

	PR rtl-optimization/47028
	* gcc.dg/pr47028.c: New test.

2011-01-02  Nicola Pero  <nicola.pero@meta-innovation.com>

	* objc.dg/protocol-forward-1.m: Removed TODO.
	* objc.dg/protocol-forward-2.m: New.
	* obj-c++.dg/protocol-forward-2.mm: Removed TODO.
	* obj-c++.dg/protocol-forward-2.mm: New.

2011-01-01  Kai Tietz  <kai.tietz@onevision.com>

	PR target/38662
	* g++.dg/eh/pr38662.C: New testcase.

2011-01-01  Chung-Lin Tang  <cltang@codesourcery.com>

	* gcc.target/arm/vfp-1.c (test_ldst): Fixed fsts test to
	scan for newline '\n'.


Copyright (C) 2011 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.