aboutsummaryrefslogtreecommitdiff
path: root/gcc/ChangeLog.upc
blob: bf122213e48db7f93beca19925ce1842d7b71f2d (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
2017-10-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 253536 into gupc branch.

2017-10-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 253337 into gupc branch.

2017-09-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 252910 into gupc branch.

2017-09-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 251963 into gupc branch.
	* c/c-upc-lang.c (upc_pts_struct_init_type): Adjust call to
	mode_for_size_tree(), which now returns an opt_machine_mode() type.
	The 'exists()' function is called to assert that a scalar int
	type exists for UPC's pointer-to-shared type.

2017-09-05  Gary Funck  <gary@intrepid.com>

	Revert (2015-10-18 and subsequent) changes that removed
	packed PTS support.
	* c/Make-lang.in, c/c-lang.c, c/c-parser.c, c/c-upc-lang.c, 
	c/c-upc-lang.h, c/c-upc-low.c, c/c-upc-pts-ops.h, c/c-upc.c, 
	c/c-upc.h, c-family/c-cppbuiltin.c, c-family/c-opts.c, 
	c-family/c-upc-pts.h, config.in, configure, configure.ac, 
	doc/tm.texi, doc/tm.texi.in, langhooks-def.h, langhooks.h, 
	tree-core.h, tree.h: Revert and update.
        * c/c-upc-pts-ops.c, c/c-upc-pts-packed.c, c/c-upc-pts-struct.c:
	Re-instate and update.

2017-09-03  Gary Funck  <gary@intrepid.com>

	Update copyright notices.

2017-09-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 251608 into gupc branch.
	* DEV-PHASE: bump version to GNU UPC 8.0.0-1.
	* c/c-upc-low.c: call finish_decl() to complete
	declaration of 'init_func_addr'.  Without this
	call, 'init_func_addr' was not marked as used.

2016-11-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 242665 into gupc branch.

2016-09-12  Gary Funck  <gary@intrepid.com>

	Merge trunk version 240089 into gupc branch.

2016-09-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 239987 into gupc branch.

2016-08-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 239817 into gupc branch.

2016-08-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 239653 into gupc branch.

2016-08-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 239461 into gupc branch.

2016-08-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 239230 into gupc branch.

2016-08-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 238934 into gupc branch.

2016-07-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 238702 into gupc branch.

2016-07-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 238426 into gupc branch.

2016-07-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 238353 into gupc branch.

2016-06-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 237367 into gupc branch.

2016-06-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 237118 into gupc branch.

2016-05-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 236871 into gupc branch.

2016-05-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 236576 into gupc branch.

2016-05-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 236267 into gupc branch.

2016-05-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 236021 into gupc branch.

2016-05-08  Gary Funck  <gary@intrepid.com>

	* c/c-upc-pts-ops.c (upc_pts_init_type): Adjust to use SET_ALIGN().
	* c/c-upc.c (upc_build_pointer_type): Ditto.
	* tree.c (build_pointer_type): Ditto.

2016-05-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 235893 into gupc branch.

2016-04-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 235033 into gupc branch.
	This trunk version is the origin of the GCC 6 branch.

	* c/c-parser.c: Adjust calls to c_parser_pragm() and
	c_parser_c99_block_statement(), passing null 'if_p' pointer.

2016-04-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 234874 into gupc branch.

2016-04-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 234707 into gupc branch.

2016-03-28  Gary Funck  <gary@intrepid.com>

	Merge trunk version 234500 into gupc branch.

2016-03-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 234360 into gupc branch.

2016-03-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 234176 into gupc branch.

2016-03-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 234022 into gupc branch.

2016-02-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 233807 into gupc branch.

2016-02-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 233598 into gupc branch.

2016-02-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 233420 into gupc branch.

2016-02-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 233210 into gupc branch.

2016-02-06  Gary Funck  <gary@intrepid.com>

	* langhooks.h (lang_hooks_for_upc): Fix incomplete comment.
	* langhooks.h (upc.write_global_init_func):
	Rename - was: upc.write_global_declarations
	* langhooks-def.h (LANG_HOOKS_UPC_WRITE_GLOBAL_INIT_FUNC):
	Rename - was: LANG_HOOKS_UPC_WRITE_GLOBAL_DECLS
	* langhooks-def.h (LANG_HOOKS_UPC): Adjust for rename.
	* c/c-lang.c: Adjust for rename.
	* c/c-upc-low.c: Ditto.
	* c/c-upc-low.h: Ditto.
	* c-family/c-opts.c: Ditto.

2016-02-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 233033 into gupc branch.

2016-01-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 232787 into gupc branch.

2016-01-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 232750 into gupc branch.

2016-01-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 232666 into gupc branch.

2016-01-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 232497 into gupc branch.

2016-01-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 232232 into gupc branch.

2016-01-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 232051 into gupc branch.

2015-12-28  Gary Funck  <gary@intrepid.com>

	Merge trunk version 231970 into gupc branch.

2015-12-16  Gary Funck  <gary@intrepid.com>

	* c/c-lang.c (c_language): Delete references to
	LANG_HOOKS_UPC_PTS_INIT_TYPE and LANG_HOOKS_UPC_BUILD_INIT_FUNC.
	* c/c-upc-lang.c: Delete #include "c-family/c-upc-pts.h".
	(upc_init_array_section): Delete, un-used.
	(upc_create_static_var): Move to c/upc-low.c.
	(upc_pts_init_type): Move to c/c-upc-pts-ops.c.
	(upc_build_init_func): Move to c/upc-low.c.
	* c/c-upc-lang.h (upc_pts_init_type): Delete prototype.
	(upc_build_init_func): Ditto.
	* c/c-upc-low.c (upc_create_static_var): Move here.
	(upc_build_init_func): Ditto.
	(upc_write_init_func): Adjust call to upc_build_init_func().
	* c/c-upc-pts-ops.c (upc_pts_init_type): Move to here.
	(upc_pts_init): Adjust call to upc_pts_init_type ().
	* langhooks-def.h (LANG_HOOKS_UPC_PTS_INIT_TYPE): Delete.
	(LANG_HOOKS_UPC_BUILD_INIT_FUNC): Delete.
	* langhooks.h (lang_hooks_for_upc): Delete pts_init_type() hook.
	Delete build_init_func() hook.

2015-12-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 231609 into gupc branch.
	* c-family/c-opts.c (upc_init_options):
	Adjust call to control_warning_option().

2015-12-11  Gary Funck  <gary@intrepid.com>

	* tree.h (check_qualified_type): Add block_factor argument,
	pass NULL_TREE by default.
	* tree.c (build_opaque_vector_type): Adjust call to
	check_qualified_type().  Use default block_factor.  Revert to trunk.
	* cp/tree.c (cp_check_qualified_type): Likewise.

2015-12-11  Gary Funck  <gary@intrepid.com>

	* c/c-decl.c, c/c-typeck.c, c/c-upc-low.c, c/c-upc-pts-ops.c:
	Use error_at and warning_at where 'loc' is available.

2015-12-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 231354 into gupc branch.

2015-12-06  Gary Funck  <gary@intrepid.com>

	* c/c-upc-low.c, c/gupcspec.c, c-family/c-pragma.c,
	targhooks.c, tree-pretty-print.c, tree.c:
	Add missing function comments.

2015-12-05  Gary Funck  <gary@intrepid.com>

	* tree.c, tree-core.h: Remove custom GC logic for tree nodes.
	Revert to trunk.

2015-11-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 231059 into gupc branch.

2015-11-29  Gary Funck  <gary@intrepid.com>

	* c/c-parser.c (upc_affinity_test): Remove call to
	assemble_external().

2015-11-28  Gary Funck  <gary@intrepid.com>

	* doc/gupc.texi: Document -fupc-threads=N and -fupc-heap=N.
	Remove outdated URL's.

2015-11-27  Gary Funck  <gary@intrepid.com>

	* c/c-upc-low.c (create_unshared_var): Set DECL_EXTERNAL()
	to avoid allocating the unshared "shadow" variable.
	* c-family/c-opts.c (upc_init_options): Remove work-around
	that disabled "section anchors" on the PowerPC.

2015-11-25  Gary Funck  <gary@intrepid.com>

	* print-tree.c (print_node): Revert to trunk.  Remove code that
	prints constructor/destructor if function_decl flag is set.

2015-11-23  Gary Funck  <gary@intrepid.com>

	* c.opt: Add periods to the end of help text.
	Remove LTO and C++ from UPC-only switches.

2015-11-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 230742 into gupc branch.

2015-11-22  Gary Funck  <gary@intrepid.com>

	Add two spaces after a period in comments and messages.

2015-11-22  Gary Funck  <gary@intrepid.com>

	* c/c-parser.c: Fix spelling.
	* c/c-typeck.c: Fix spelling.

2015-11-21  Gary Funck  <gary@intrepid.com>

	* c-family/c-common.h (c_header_level): extern declaration.
	* c/c-upc.c (upc_set_decl_section): Delete local extern declaration.
	Fix comment - do not localize variables declared in system headers.

2015-11-21  Gary Funck  <gary@intrepid.com>

	* hooks.c: Revert to trunk.
	* hooks.h: Revert to trunk.

2015-11-21  Gary Funck  <gary@intrepid.com>

	top-level/
	* contrib/ChangeLog: Revert to trunk.
	gcc/
	* c-family/c-common.def: Remove reference to UPC in comment.
	* print-tree.c (print_node): Remove check for TYPE_SHARED()
	when printing language flags.
	* testsuite/gcc.dg/gupc/gupc.exp: Update copyright.
	* tree.h: Remove extra spaces.
	* c-family/c-common.c: Fix comment.
	* c-family/c-common.h: Fix comment.
	* c-family/c-lex.c: Fix comment.
	* c-family/c-pragma.c: Fix comment.
	* c/c-decl.c (merge_decls): set TREE_VOLATILE in 'olddecl'.
	* c/c-decl.c: Fix spacing and comments.
	* c/c-parser.c (c_parser_condition): Remove ATTRIBUTE_UNUSED.
	* c/c-typeck.c: Revert line formatting to trunk.

2015-11-20  Gary Funck  <gary@intrepid.com>

	* Makefile.in (doc/gupc.info): Add make dependents.

2015-11-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 230603 into gupc branch.

2015-11-14  Gary Funck  <gary@intrepid.com>

	* Makefile.in: Add rules to build gupc.info and gupc.1.
	* doc/gupc.texi: Minor fixes.

2015-11-14  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt: Fix comment.

2015-11-11  Gary Funck  <gary@intrepid.com>

	* config/rs6000/rs6000.c: Improve comments.

2015-11-10  Gary Funck  <gary@intrepid.com>

	* target.def: Fix typos in the UPC target hook descriptions.
	* doc/tm.texi: Re-generate.

2015-11-09  Gary Funck  <gary@intrepid.com>

	* top-level/Makefile.def (GUPC_FOR_TARGET, GUPCFLAGS_FOR_TARGET):
	Revert previous commit, these variables are set by configure.
	* top-level/Makefile.in: Re-generate.

2015-11-09  Gary Funck  <gary@intrepid.com>

	* top-level/Makefile.def (GUPC_FOR_TARGET, GUPCFLAGS_FOR_TARGET):
	Delete un-used make flags.
	* top-level/Makefile.in: Re-generate.

2015-11-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 230003 into gupc branch.

2015-11-09  Gary Funck  <gary@intrepid.com>

	* libatomic/Makefile.am: Revert.
	Can't use $(filter-out) in an automake variable assignment.
	* libatomic/Makefile.in: Re-generate.

2015-11-08  Gary Funck  <gary@intrepid.com>

	* tree-core.h (TI_UPC_PHASE_MASK, TI_UPC_THREAD_MASK,
	TI_UPC_VADDR_MASK, TI_UPC_PHASE_SHIFT, TI_UPC_THREAD_SHIFT,
	TI_UPC_VADDR_SHIFT):
	Delete definitions of UPC "packed PTS" related values.
	* tree.h, (upc_phase_mask_node, upc_thread_mask_node,
	upc_vaddr_mask_node, upc_phase_shift_node, upc_thread_shift_node,
	upc_vaddr_shift_node):
	Delete definitions of UPC "packed PTS" related values.
	* doc/install.texi: Remove description of --with-upc-pts-* options,
	now that only a single UPC pointer-to-shared format is supported.
	* libatomic/Makefile.am: Simplify logic for building the
	"no lock" convenience library.
	* libatomic/Makefile.in: Re-generate.

2015-11-06  Gary Funck  <gary@intrepid.com>

	* cp/tree.c (c_build_qualified_type_1): fix typo.
	layout_qualifier was mis-spelled.

2015-11-06  Gary Funck  <gary@intrepid.com>

	* cp/lex.c (init_reswords): Fix logic to disable UPC keywords for C++.

2015-11-05  Gary Funck  <gary@intrepid.com>

	* cp/lex.c (init_reswords): Revert to trunk.
	Do not enable UPC keywords for C++.  The -fupc option
	is currently supported only for "C".

2015-11-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 229652 into gupc branch.
	* c/c-objc-common.c: Add back #include "options.h".
	Needed to test for flag_upc.
	* c/c-parser.c: Add back #include "output.h".
	Need assemble_external() in upc_affinity_test().
	* c/c-typeck.c (c_build_qualified_type_1):
	Use newly introduced 'var_type' variable.
	* c-family/c-pragma.c: Add #include "langhooks.h"
	to resolve merge conflict.
	* fold-const.c (fold_unary_loc): Adjust logic to exclude
	UPC shared types when simplifying POINTER_PLUS_EXPR.
	* gimple-expr.c: Add include "langhooks.h"
	to resolve merge conflict.  Used by useless_type_conversion_p().

2015-10-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 229307 into gupc branch.

2015-10-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 228959 into gupc branch.

2015-10-18  Gary Funck  <gary@intrepid.com>

	Remove support for packed PTS, vaddr order and the
	ability to choose differing PTS formats.
	Use only 'struct PTS'.
	* c/c-upc-pts-packed.c: Delete.
	* c/c-upc-pts-ops.c: moved from c/c-upc-pts-struct.c. 
	* c/Make-lang.in (c/c-upc-pts-packed.o, c/c-upc-pts-struct.o):
	Delete references.
	* configure.ac: Remove support for --with-upc-pts,
	--with-upc-pts-vaddr-order, --with-upc-pts-packed-bits
	* langhooks.h, langhooks-def.h, c/c-upc-lang.c, c/c-upc-lang.h,
	c/c-lang.c, c/c-upc-lang.c, c/c-upc-lang.h, c/c-upc-pts-ops.c:
	Rename UPC_PTS_INIT_TYPE from UPC_PTS_STRUCT_INIT_TYPE
	and upc_pts_init_type from upc_pts_struct_init_type.
	* c/c-upc-lang.c, c-family/c-cppbuiltin.c, c-family/c-upc-pts.h,
	config.in, configure.ac, configure, c/c-upc-lang.c:
	Delete references to HAVE_UPC_PTS_VADDR_FIRST.
	* c/c-parser.c, c/c-upc-low.c, c/c-upc-pts-ops.c, c/c-upc-pts-ops.h,
	c/c-upc.c: Change (*upc_pts.<pts_op>) to upc_pts_<pts_op>.
	* c/c-upc-low.c, c/c-upc-pts-ops.c, c-family/c-cppbuiltin.c,
	c-family/c-upc-pts.h, config.in, doc/tm.texi.in:
	Delete references to HAVE_UPC_PTS_PACKED_REP
	and HAVE_UPC_PTS_STRUCT_REP.
	* configure: Re-generate.
	* config.in: Re-generate.
	* doc/tm.texi: Re-generate.

2015-10-18  Gary Funck  <gary@intrepid.com>

	* c/c-upc-low.c: Fix typo in comment.

2015-10-17  Gary Funck  <gary@intrepid.com>

	* testsuite/gcc.dg/gupc/max-block-size-exceeded.upc:
	Adjust expected error pattern so that it accepts an
	arbitrary number range for UPC_MAX_BLOCK_SIZE, and
	run only one thread to avoid possible overflow in
	array dimension.

2015-10-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 228829 into gupc branch.

2015-10-14  Gary Funck  <gary@intrepid.com>

	* top-level/configure.ac: Remove handling of --with-upc-pts.
	This is done in the gcc configure script.
	* top-level/configure: Re-generate.
	* c/c-upc-gasp.c, c/c-upc-lang.c, c/c-upc-low.c,
	c/c-upc-pts-ops.c, c/c-upc-pts-packed.c, c/c-upc-pts-struct.c:
	Fix/add comments.

2015-10-13  Gary Funck  <gary@intrepid.com>

	Move most UPC-specific files from 'c-family' to 'c'.
	This accommodates a dependency upon c/c-tree.h.
	* Makefile.in: Revert to trunk.
	* langhooks.h (write_global_declarations): New UPC hook.
	* langhooks-def.h (LANG_HOOKS_UPC_WRITE_GLOBAL_DECLS): New.
	* c-family/c-opts.c (c_common_parse_file):
	Call UPC write_global_declarations hook.
	* c/c-lang.c: define LANG_HOOKS_UPC_WRITE_GLOBAL_DECLS
	as upc_write_global_declarations.
	* c/c-convert.c, c/c-decl.c, c/c-lang.c, c/c-objc-common.c,
	c/c-parser.c, c/c-typeck.c:
	Adjust UPC #include's moved from 'c-family' to 'c'.
	* c-family/c-pragma.c: Delete un-needed #include of c-upc.h.
	* c/Make-lang.in: Adjust for UPC files moved from c-family.
	* c/config-lang.in: Ditto.
	* c/c-upc.c moved from c-family/c-upc.c.
	* c/c-upc.h moved from c-family/c-upc.h.
	* c/c-upc-gasp.c moved from c-family/c-upc-gasp.c.
	* c/c-upc-gasp.h moved from c-family/c-upc-gasp.h.
	* c/c-upc-low.c moved from c-family/c-upc-low.c.
	* c/c-upc-low.h moved from c-family/c-upc-low.h.
	* c/c-upc-pts-ops.c moved from c-family/c-upc-pts-ops.c.
	* c/c-upc-pts-ops.h moved from c-family/c-upc-pts-ops.h.
	* c/c-upc-pts-packed.c moved from c-family/c-upc-pts-packed.c.
	* c/c-upc-pts-struct.c moved from c-family/c-upc-pts-struct.c.
	* c/c-upc-rts-names.h moved from c-family/c-upc-rts-names.h.

2015-10-13  Gary Funck  <gary@intrepid.com>

	* tree-upc.h: Delete.  Move UPC support into tree.h.
	* tree-upc.c: Delete.  Move UPC support into tree.c.
	* Makefile.in: Remove references to tree-upc.c and tree-upc.h.
	* c/c-convert.c, c/c-decl.c, c/c-objc-common.c, c/c-typeck.c,
	c/c-upc-lang.c, c-family/c-common.c, c-family/c-upc.c,
	c-family/c-upc-low.c, c-family/c-upc-pts-packed.c,
	c-family/c-upc-pts-struct.c, convert.c,	dwarf2out.c, print-tree.c,
	tree.c, tree-pretty-print.c: Delete #include of tree-upc.h.

	* c/c-convert.c, c/c-decl.c, c/c-objc-common.c, c/c-parser.c,
	c/c-typeck.c, c/c-upc-lang.c, c-family/c-common.c,
	c-family/c-pretty-print.c, c-family/c-upc.c, c-family/c-upc-low.c,
	c-family/c-upc-pts-packed.c, c-family/c-upc-pts-struct.c,
	config/i386/i386.c, config/rs6000/rs6000.c, convert.c, dojump.c,
	dwarf2out.c, explow.c, fold-const.c, function.c, gimple-expr.c,
	Makefile.in, match.pd, print-tree.c, tree.c, tree-core.h,
	tree-dump.c, tree.h, tree-pretty-print.c, tree-sra.c:
	Rename identifiers defined in tree-core.h and tree.h
	that have 'UPC' or 'upc' in their name into names that do not
	refer to UPC (or upc).  Identifiers in those files should be generic.

2015-10-13  Gary Funck  <gary@intrepid.com>

	* doc/passes.texi: fix typo.

2015-10-12  Gary Funck  <gary@intrepid.com>

	Merge trunk version 228706 into gupc branch.

2015-10-07  Gary Funck  <gary@intrepid.com>

	top-level/configure.ac: Remove --enable-upc-link-script option.
	This option is now handled in gcc's configure script
	and the value is communicated to libgupc via a
	builtin preprocessor definition.
	top-level/configure: Re-generate.
	* c-family/c-cppbuiltin.c: define __UPC_LINK_SCRIPT__
	as builtin preprocessor definition if UPC linker script
	support is enabled.
	* configure.ac: Improve handling of --enable-upc-link-script option.
	When checking default behavior, ensure that this is a native build
	with GNU ld of a proper version and that the system linker script
	has the expected format.
	* configure: Re-generate.

2015-10-06  Gary Funck  <gary@intrepid.com>

	* configure: Re-generate.

2015-10-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 228465 into gupc branch.

2015-10-04  Gary Funck  <gary@intrepid.com>

	* defaults.h (UPC_SHARED_BEGIN_NAME, UPC_SHARED_END_NAME,
	UPC_PGM_INFO_BEGIN_NAME, UPC_PGM_INFO_END_NAME,
	UPC_INIT_ARRAY_BEGIN_NAME, UPC_INIT_ARRAY_END_NAME):
	Delete un-used definitions.
	* target.def: Define UPC target hooks which replace
	target macros.
	* targhooks.c: Define default UPC target hooks.
	* targhooks.h: Define prototypes for default UPC target hooks.
	* c/c-upc-lang.c (upc_build_init_func):
	Use UPC target hook, instead of macro.
	* c-family/c-cppbuiltin.c (strip_section_prefix):
	New static helper function.
	* c-family/c-cppbuiltin.c (upc_cpp_builtins):
	Emit builtin pre-processor definitions which communicate
	linker section names used by UPC.
	* c-family/c-upc.c (upc_set_decl_section): Use UPC target hooks
	instead of target macros.
	* varasm.c (default_section_type_flags):
	Replace UPC target macros with target hooks.
	* doc/tm.texi.in: Delete UPC target macro descriptions
	and refer to newly defined UPC target hooks.
	* doc/tm.texi: Re-generate.

2015-10-02  Gary Funck  <gary@intrepid.com>

	* config/darwin.h (UPC_MAIN_NAME): Delete (un-used).
	* config/darwin.h (UPC_INIT_SECTION_NAME): Delete (un-used).

2015-09-28  Gary Funck  <gary@intrepid.com>

	Merge trunk version 228196 into gupc branch.

2015-09-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 227960 into gupc branch.

2015-09-17  Gary Funck  <gary@intrepid.com>

	top-level/
	* contrib/update-copyright.py: Add .upc to list of test file
	extensions that should be ignored.

2015-09-17  Gary Funck  <gary@intrepid.com>

	* c/c-upc-lang.c: Remove spurious statement in comment.
	* c/c-upc-lang.c, c/c-upc-lang.h, c/gupcspec.c, c-family/c-upc-gasp.c,
	c-family/c-upc-gasp.h, c-family/c-upc-low.c, c-family/c-upc-low.h, 
	c-family/c-upc-pts-ops.c, c-family/c-upc-pts-ops.h, 
	c-family/c-upc-pts-packed.c, c-family/c-upc-pts-struct.c, 
	c-family/c-upc-pts.h, c-family/c-upc-rts-names.h, 
	c-family/c-upc.c, c-family/c-upc.h, tree-upc.c, tree-upc.h:
	Update copyright notices.

2015-09-17  Gary Funck  <gary@intrepid.com>

	* tree-upc.c, tree-upc.h: Update copyright notices.

2015-09-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 227737 into gupc branch.

2015-09-13  Gary Funck  <gary@intrepid.com>

	* c/c-decl.c: Fold long lines.
	* c-family/c-upc-low.c: Ditto.
	* c-family/c-upc-pts-ops.c: Ditto.
	* c-family/c-upc-pts.h: Ditto.
	* convert.c: Ditto.

2015-09-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 227337 into gupc branch.

2015-08-31  Gary Funck  <gary@intrepid.com>

	Merge trunk version 227333 into gupc branch.

2015-08-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 227163 into gupc branch.

2015-08-25  Gary Funck  <gary@intrepid.com>

	top-level/configure.ac: Use libgupc/configure.tgt to determine
	if a target is unsupported.
	top-level/configure: Re-generate.

2015-08-25  Gary Funck  <gary@intrepid.com>

	* dwarf2out.c (type_main_variant): Add back static prototype
	to match trunk.
	* fold-const.c (fold_unary_loc): Re-arrange terms in
	if-statement to match trunk.

2015-08-17  Gary Funck  <gary@intrepid.com>

	Merge trunk version 226950 into gupc branch.
	* c-family/c-pretty-print.c (pp_c_cv_qualifiers):
	Adjust logic for relaxed/strict/shared qualifiers.

2015-08-16  Gary Funck  <gary@intrepid.com>

	* c/c-decl.c (grokdeclarator):  Remove extra space on empty line.
	* c/c-typeck.c (build_array_ref): Add an empty line to match trunk.
	* c-family/c-common.c: Remove extra blank line to match trunk.
	* c-family/c-opts.c (c_common_option_lang_mask):
	Add an empty line to match trunk.
	* c-family/c-pretty-print.c (pp_c_cv_qualifiers):
	Remove assignment to 'previous' to match trunk.
	* config/darwin.c (darwin_override_options):
	Remove check for optimize to match trunk.
	* configure.ac (ACX_BUGRURL): Revert to trunk.
	* configure: Re-generate.
	* cp/tree.c (c_build_qualified_type_1): wrap long line.
	* doc/invoke.texi: Remove extra line with -trigraphs. 
	* match.pd: Remove extra space on empty line.
	* tree.c (stabilize_reference): Remove extra line to match trunk.

2015-08-15  Gary Funck  <gary@intrepid.com>

	* top-level/Makefile.def (language=upc):
	Remove UPC language target.
	* top-level/Makefile.in: Re-generate.

2015-08-15  Gary Funck  <gary@intrepid.com>

	testsuite/gcc.dg/gupc/
	* barrier-notify-wait.upc, getaddr.upc, get-blk-relaxed.upc,
	get-blk-strict.upc, get-df-relaxed.upc, get-df-strict.upc,
	get-di-relaxed.upc, get-di-strict.upc, get-hi-relaxed.upc,
	get-hi-strict.upc, get-qi-relaxed.upc, get-qi-strict.upc,
	get-sf-relaxed.upc, get-sf-strict.upc, get-si-relaxed.upc,
	get-si-strict.upc, get-tf-relaxed.upc, get-tf-strict.upc,
	get-ti-relaxed.upc, get-ti-strict.upc, put-blk-relaxed.upc,
	put-blk-strict.upc, put-df-relaxed.upc, put-df-strict.upc,
	put-di-relaxed.upc, put-di-strict.upc, put-hi-relaxed.upc,
	put-hi-strict.upc, put-qi-relaxed.upc, put-qi-strict.upc,
	put-sf-relaxed.upc, put-sf-strict.upc, put-si-relaxed.upc,
	put-si-strict.upc, put-tf-relaxed.upc, put-tf-strict.upc,
	put-ti-relaxed.upc, put-ti-strict.upc, shared-init-addr.upc:
	Remove calls to cleanup-tree-dump.

2015-08-10  Gary Funck  <gary@intrepid.com>

	Merge trunk version 226755 into gupc branch.

2015-08-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 226548 into gupc branch.

2015-07-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 226386 into gupc branch.

2015-07-27  Gary Funck  <gary@intrepid.com>

	Merge trunk version 226240 into gupc branch.

2015-07-24  Gary Funck  <gary@intrepid.com>

	Merge trunk version 226170 into gupc branch.

2015-07-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 225993 into gupc branch.

2015-07-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 225729 into gupc branch.

	* c/c-upc-lang.c, c-family/c-upc-low.c, c-family/c-upc-pts-ops.c,
	c-family/c-upc-pts-packed.c, c-family/c-upc-pts-struct.c:
	Remove symtab.h from include list.  Adjust includes.

2015-07-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 225446 into gupc branch.

2015-06-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 225113 into gupc branch.

	* c-family/c-upc-low.c:
	Remove ipa-ref.h and plugin-api.h from include list.
	* tree-upc.c (tm_block_factor_hasher): Rename from tree_map_hasher.
	* tree-upc.c (tm_block_factor_hasher): Inherit from ggc_cache_ptr_hash
	rather than ggc_cache_hasher.

2015-06-23  Gary Funck  <gary@intrepid.com>

	* function.c (assign_parm_setup_reg): Improve check for
	struct PTS.

2015-06-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 224722 into gupc branch.

	* tree-upc.c, c/c-upc-lang.c, c-family/c-upc.c, c-family/c-upc-low.c,
	c-family/c-upc-pts-ops.c, c-family/c-upc-pts-packed.c,
	c-family/c-upc-pts-struct.c:
	Remove #include's made redundant by changes to coretypes.h

2015-06-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 224475 into gupc branch.

	* tree-upc.c, c/c-upc-lang.c, c-family/c-upc.c, c-family/c-upc-low.c,
	c-family/c-upc-pts-ops.c, c-family/c-upc-pts-packed.c,
	c-family/c-upc-pts-struct.c:
	Remove #include's made redundant by changes to coretypes.h.

2015-06-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 224210 into gupc branch.

	* tree-upc.c, c/c-upc-lang.c, c-family/c-upc.c,
	c-family/c-upc-low.c, c-family/c-upc-pts-ops.c,
	c-family/c-upc-pts-packed.c, c-family/c-upc-pts-struct.c:
	Remove #include's made redundant by changes to coretypes.h.

2015-06-06  Gary Funck  <gary@intrepid.com>

	* config/rs6000/rs6000.c (rs6000_pass_by_reference):
	Check for UPC struct pointer-to-shared type,
	if using V4 ABI (typical of 32 bit target).

2015-06-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 223920 into gupc branch.

2015-05-27  Gary Funck  <gary@intrepid.com>

	Merge trunk version 223766 into gupc branch.

2015-05-27  Gary Funck  <gary@intrepid.com>

	* config/rs6000/rs6000.c (rs6000_return_in_memory):
	Generalize check for struct PTS to handle various ABI's.
	(rs6000_function_arg_boundary): Simplify the check for struct PTS.
	(rs6000_function_value): Improve formatting.

2015-05-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 223642 into gupc branch.

2015-05-24  Gary Funck  <gary@intrepid.com>

	* tree-core.h, tree.h: Fix typo introduced in revision 209120.

2015-05-23  Gary Funck  <gary@intrepid.com>

	* config/rs6000/rs6000.c (rs6000_function_arg_boundary):
	Disable ABI warning for UPC pointer-to-shared types
	or the PTS representation type.

2015-05-22  Gary Funck  <gary@intrepid.com>

	* config/rs6000/rs6000.c (s6000_function_arg_boundary):
	Check for UPC pointer-to-shared type in logic that
	handles new ABI for types that are aligned at >= 16 bytes.

2015-05-22  Gary Funck  <gary@intrepid.com>

	Fix RTL check for "struct-PTS".
	* function.c (assign_parm_setup_reg): Don't call mark_reg_pointer()
	with a UPC pointer-to-shared.

2015-05-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 223286 into gupc branch.

2015-05-13  Gary Funck  <gary@intrepid.com>

	Fix ICE when initializing a global shared variable of type __int128.
	* c/c-convert.c (convert):
        Drop 'shared' qualifier for all conversions.
	Previously, this was done only for types that
	shared the same main variant.

2015-05-12  Gary Funck  <gary@intrepid.com>

	Fix ICE when compiling nested functions.
	* c-family/c-gimplify.c: Revert to trunk.
	* c/c-decl.c (finish_function):
	Move call to upc_genericize here.
	* c-family/c-upc-low.c (upc_genericize_function): Renamed.
	Was: upc_genericize_fndecl.
	Remove logic that attempted to explicitly save/restore
	current_function_decl.
	(upc_genericize_function_tree): Delete.

2015-05-11  Gary Funck  <gary@intrepid.com>

	Remove asserts which check for attempt to qualify an ARRAY_TYPE.
	Caused an ICE when compiling gcc.dg/pointer-array-quals-*.c.
	* c/c-typeck.c (qualify_type): Revert to trunk.

2015-05-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 222997 into gupc branch.

2015-05-08  Gary Funck  <gary@intrepid.com>

	Revert cosmetic changes to trunk to avoid spurious differences.
	* tree.c: Remove extra blank line.
	* c/c-typeck.c: Add back extra blank line.

2015-05-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 222758 into gupc branch.

2015-04-30  Gary Funck  <gary@intrepid.com>

	* doc/passes.texi: Add @section command for "UPC Transformation".

2015-04-29  Gary Funck  <gary@intrepid.com>

	* doc/gupc.texi, doc/install.texi, doc/invoke.texi,
	doc/passes.texi, doc/sourcebuild.texi:
	Update GUPC documentation.

2015-04-27  Gary Funck  <gary@intrepid.com>

	Merge trunk version 222452 into gupc branch.
	DEV-PHASE: Bump to 6.0.0-1.

2015-04-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 222227 into gupc branch.

2015-04-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 222043 into gupc branch.

2015-04-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 221876 into gupc branch.

2015-03-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 221770 into gupc branch.

2015-03-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 221587 into gupc branch.

2015-03-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 221445 into gupc branch.

2015-03-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 221277 into gupc branch.

2015-03-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 221103 into gupc branch.

2015-02-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 220913 into gupc branch.

2015-02-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 220722 into gupc branch.

2015-02-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 220526 into gupc branch.

2015-02-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 220345 into gupc branch.

2015-01-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 220104 into gupc branch.

2015-01-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 219833 into gupc branch.

2015-01-12  Gary Funck  <gary@intrepid.com>

	Merge trunk version 219456 into gupc branch.

2015-01-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 219182 into gupc branch.

2014-12-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 219097 into gupc branch.

2014-12-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 219006 into gupc branch.

2014-12-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 218477 into gupc branch.

2014-12-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 218203 into gupc branch.

2014-11-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 217032 into gupc branch.
	* c/c-upc-lang.c c/gupcspec.c c-family/c-upc.c
	c-family/c-upc-gasp.c c-family/c-upc-low.c
	c-family/c-upc-pts-ops.c c-family/c-upc-pts-packed.c
	c-family/c-upc-pts-struct.c: Remove unnecessary #include's.

2014-10-27  Gary Funck  <gary@intrepid.com>

	Merge trunk version 216723 into gupc branch.

2014-10-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 216449 into gupc branch.

2014-10-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 216139 into gupc branch.

2014-10-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 215919 into gupc branch.

2014-09-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 215678 into gupc branch.

2014-09-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 215458 into gupc branch.

2014-09-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 215259 into gupc branch.

2014-09-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 215014 into gupc branch.

2014-09-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 214779 into gupc branch.

2014-08-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 214415 into gupc branch.

2014-08-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 214178 into gupc branch.

2014-08-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 213968 into gupc branch.
	DEV-PHASE: Bump to 5.0.0-1.

2014-08-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 213809 into gupc branch.

2014-08-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 213646 into gupc branch.

2014-08-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 213543 into gupc branch.

2014-08-01  Gary Funck  <gary@intrepid.com>

	* testsuite/gcc.dg/gupc: New.
	Add compile-only tests which check for semantic errors/warnings
	and verify that UPC constructs generate expected UPC runtime calls.
	* testsuite/upc.dg: Removed.
	* testsuite/lib/upc-dg.exp: Removed.
	* testsuite/lib/upc.exp: Removed.
	* testsuite/lib/target-supports.exp
	(check_effective_target_fupc): New.
	(check_effective_target_upc_struct_pts,
	check_effective_target_upc_packed_pts):
	Pass "-fupc -fno-upc-pre-include".
	* testsuite/gcc.dg/gupc/gupc.exp: Moved from
	testsuite/upc.dg/compile/compile.exp and modified to
	work under gcc.dg.

2014-07-28  Gary Funck  <gary@intrepid.com>

	Merge trunk version 213118 into gupc branch.

2014-07-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 212892 into gupc branch.

2014-07-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 212522 into gupc branch.

2014-07-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 212325 into gupc branch.

2014-07-02  Nenad Vukicevic  <nenad@intrepid.com>

	* configure.ac: Fix checking for 32-bits target while
	setting the default PTS packed bits.
	* configure: Regenerate.

2014-06-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 212138 into gupc branch.

2014-06-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 211886 into gupc branch.

2014-06-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 211699 into gupc branch.

2014-06-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 211672 into gupc branch.

2014-06-12  Gary Funck  <gary@intrepid.com>

	Merge trunk version 211604 into gupc branch.

2014-06-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 211129 into gupc branch.

2014-05-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 210928 into gupc branch.

2014-05-21  Nenad Vukicevic  <nenad@intrepid.com>

	* config/darwin.h (LINK_COMMAND_SPEC_A): Fix linker spec
	on Darwin, replace -fupc-link with -fupc option.

2014-05-12  Gary Funck  <gary@intrepid.com>

	Merge trunk version 210323 into gupc branch.

2014-05-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 210065 into gupc branch.

2014-04-28  Gary Funck  <gary@intrepid.com>

	Merge trunk version 209848 into gupc branch.

2014-04-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 209542 into gupc branch.

2014-04-20  Gary Funck  <gary@intrepid.com>

	* c/c-typeck.c (build_binary_op): Check for invalid comparison
	between pointers-to-shared with target types that have
	differing UPC blocking factors.

2014-04-16  Gary Funck  <gary@intrepid.com>

	Fix PTS comparison involving a generic PTS using packed representation.
	* c-family/c-upc-pts-packed.c (upc_pts_packed_build_cond_expr):
	When comparing (shared void *) pointers, mask out the phase component.

2014-04-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 209359 into gupc branch.
	DEV-PHASE: Bump to 4.10.0-1.

2014-04-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 209179 into gupc branch.

2014-04-04  Gary Funck  <gary@intrepid.com>

	* tree-upc.c tree-upc.h: New.
	Factor UPC-specific tree node handling
	into tree-upc.c and tree-upc.h.
	* Makefile.in: Refer to tree-upc.c and tree-upc.h.
	* c/c-convert.c c/c-decl.c c/c-objc-common.c
	c/c-typeck.c c/c-upc-lang.c c-family/c-common.c
	c-family/c-pretty-print.c c-family/c-upc-low.c
	c-family/c-upc-pts-packed.c c-family/c-upc-pts-struct.c
	c-family/c-upc.c c-family/c-upc.h convert.c
	dwarf2out.c print-tree.c tree-core.h tree-dump.c
	tree-pretty-print.c tree.c tree.h: Rename variables and
	functions to include 'upc' in their names.

2014-03-31  Gary Funck  <gary@intrepid.com>

	Merge trunk version 208955 into gupc branch.

2014-03-24  Gary Funck  <gary@intrepid.com>

	Merge trunk version 208783 into gupc branch.

2014-03-17  Gary Funck  <gary@intrepid.com>

	Merge trunk version 208609 into gupc branch.

2014-03-10  Gary Funck  <gary@intrepid.com>

	Merge trunk version 208447 into gupc branch.

2014-03-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 208270 into gupc branch.

2014-02-24  Gary Funck  <gary@intrepid.com>

	Merge trunk version 208066 into gupc branch.

2014-02-17  Gary Funck  <gary@intrepid.com>

	Merge trunk version 207818 into gupc branch.

2014-02-10  Gary Funck  <gary@intrepid.com>

	Merge trunk version 207649 into gupc branch.

2014-02-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 207415 into gupc branch.

2014-01-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 207297 into gupc branch.

2014-01-28  Gary Funck  <gary@intrepid.com>

	* c/gupcspec.c (match_suffix): Remove use of PARAMS.

2014-01-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 206847 into gupc branch.

2014-01-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 206792 into gupc branch.

2014-01-17  Nenad Vukicevic  <nenad@intrepid.com>

	* c-family/c-cppbuiltin.c (upc_cpp_builtins): Remove pre-defines
	for __UPC_CASTABLE__, __UPC_COLLECTIVE__, __UPC_TICK__ and
	__UPC_PUPC__ as they are library and not compiler features.

2014-01-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 206575 into gupc branch.

2014-01-10  Gary Funck  <gary@intrepid.com>

	Update copyright notices.

2014-01-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 206354 into gupc branch.

2014-01-04  Gary Funck  <gary@intrepid.com>

	Integrate GUPC into cc1.
	* upc/: Remove directory.  Re-distribute files.
	* c/c-upc-lang.c: Move upc/upc-lang.c here.
	* c/c-upc-lang.h: New.
	* c-family/c-upc.c: Move upc/upc-act.c here.
	* c-family/c-upc-gasp.c: Move upc/upc-gasp.c here.
	* c-family/c-upc-gasp.h: Move upc/upc-gasp.h here.
	* c-family/c-upc.h: Move upc/upc-act.h here.
	* c-family/c-upc-low.c: Move upc/upc-genericize.c here.
	* c-family/c-upc-low.h: Move upc/upc-genericize.h here.
	* c-family/c-upc-pts.h: Split upc/upc-pts.h here.
	* c-family/c-upc-pts-ops.c: Split upc/upc-pts.c here.
	* c-family/c-upc-pts-ops.h: Split upc/upc-pts.h here.
	* c-family/c-upc-pts-packed.c: Move upc/upc-pts-packed.c here.
	* c-family/c-upc-pts-struct.c: Move upc/upc-pts-struct.c here.
	* c-family/c-upc-rts-names.h: Move upc/upc-rts-names.h here.
	* c-family/stub-upc.c: Remove.
	* c/gupcspec.c: Move upc/gupcspec.c here.
	* doc/gupc.texi: Move upc/gupc.texi here.
	* c/c-objc-common.h: Revert to trunk.
	* cp/lex.c: Revert to trunk.
	* cp/Make-lang.in: Revert to trunk.
	* expr.h: Revert to trunk.
	* flags.h: Revert to trunk.
	* fortran/Make-lang.in: Revert to trunk.
	* java/Make-lang.in: Revert to trunk.
	* lto/Make-lang.in: Revert to trunk.
	* objc/Make-lang.in: Revert to trunk.
	* stor-layout.c: Delete custom hook routines, use
	newly defined declaration layout language hooks.
	* stor-layout.h: Revert to trunk.
	* ../configure.ac: Remove check for UPC language dialect.
	* ../configure: Re-generate.
	* Makefile.in (C_COMMON_OBJS): Add UPC-related object files.
	* c/Make-lang.in: Compile UPC-related files.  Build gupc driver.
	* c/c-decl.c: Call c_genericize() directly rather than
	lang_hooks.genericize().  Adjust for flag_upc and name changes.
	* c/c-lang.c (LANG_HOOKS_UPC_TOGGLE_KEYWORDS,
	LANG_HOOKS_UPC_PTS_STRUCT_INIT_TYPE, LANG_HOOKS_UPC_BUILD_INIT_FUNC,
	LANG_HOOKS_LAYOUT_DECL_P, LANG_HOOKS_LAYOUT_DECL):
	Define UPC-specific hooks.
	* c/c-objc-common.c (upc_types_compatible_p): Move to here.
	(c_types_compatible_p): Call upc_types_compatible_p().
	* c/c-parser.c (upc_affinity_test): Move to here.
	(upc_build_sync_stmt): Move to here.
	* c/c-typeck.c: #include c-family/c-upc-low.h.
	* c/config-lang.in (gtfiles): Add UPC gt files.
	* c-family/c-common.c: Add #include c-upc.h.
	(c_common_get_alias_set): Move UPC-related alias check to here.
	(upc_num_threads): Move to here.
	(c_common_init_ts): Mark UPC-specific statement tree definitions.
	* c-family/c-common.def (UPC_FORALL_STMT, UPC_SYNC_STMT):
	Define UPC-specific statements.
	* c-family/c-common.h (RID_FIRST_UPC_QUAL, RID_LAST_UPC_QUAL,
	RID_FIRST_UPC_KW, RID_LAST_UPC_KW, UPC_IS_KEYWORD): New.
	(clk_upc, clk_upcxx, c_dialect_upc, compiling_upc): Delete.
	(use_upc_dwarf2_extensions, flag_upc): Move to c-family/c.opts.
	(upc_num_threads): Declare prototype.
	(UPC_SYNC_OP, UPC_SYNC_ID, UPC_SYNC_NOTIFY_OP, UPC_SYNC_WAIT_OP,
	UPC_SYNC_BARRIER_OP): Move definitions here.
	* c-family/c-cppbuiltin.c: Remove #include c-upc.h and
	add #include c-upc-pts.h.
	(upc_cpp_builtins): Move to here.  Define as static.
	(c_cpp_builtin): Change call to c_dialect_upc () into
	test of flag_upc.
	* c-family/c-gimplify.c: #include c-upc-low.h.
	(c_common_genericize): Rename c_genericize() to this and make static.
	(c_genericize): Call upc_genericize() if flag_upc is set and
	then call c_common_genericize().
	* c-family/c-opts.c: #include c-upc-low.h and c-upc-pts.h.
	(c_family_lang_mask): Remove CL_UPC.
	(c_common_option_lang_mask): Remove CL_UPC from lang_flags.
	(upc_init_options): Move to here, make it static.
	(c_common_init_options): Add early check for flag_upc, if found
	call upc_init_options().
	(upc_handle_option): Move to here and make static.
	(c_common_handle_option): Check for UPC-related options
	and call upc_handle_option().  Remove references to
	OPT_lang_upc and clk_upc.  Check flag_upc instead of
	calling c_dialect_upc().
	* c-family/c-pragma.c: #include langhooks.h.
	(handle_pragma_upc): Remove warning if flag_upc not set;
	flag_upc now serves the function of compiling_upc().
	Add call to lang_hooks.upc.toggle_keywords() to
	implement enable/disable of UPC keywords.
	(init_pragma): Check flag_upc instead of compiling_upc.
	* c-family/c-pragma.h (deny_pragma_upc, get_upc_consistency_mode,
	permit_pragma_upc, pop_upc_consistency_mode,
	pragma_upc_permitted_p, push_upc_consistency_mode,
	set_upc_consistency_mode): Move prototypes to here.
	* c-family/c.opt: Remove all references to "UPC" language dialect.
	Add -fupc option. Delete -fupc-link option.
	Add -fupc-threads= option and deprecate -fupc-threads-.
	* configure.ac: Remove check for UPC language dialect.
	* configure: Re-generate.
	* explow.c (tree_expr_size): Move to tree.c.
	* gcc.c: Change specs to refer to -fupc instead of -lang-upc
	and -fupc-link.
	* hooks.c (hook_bool_tree_tree_false): Declare prototype.
	* langhooks.c (lhd_do_nothing_b, lhd_do_nothing_t_t): New.
	* langhooks.h (lang_hooks_for_upc): Define hooks for UPC.
	(layout_decl_p, layout_decl): Define language-specific
	declaration  layout hooks.
	(genericize): Remove this language hook.
	* langhooks-def.h: Define UPC default language hooks.
	Define language-specific declaration layout default hooks.
	* langhooks.c (lhd_do_nothing_b): New.
	* tree-core.h (shared_flag): Rename from upc_shared_flag.
	(strict_flag): Rename from upc_strict_flag.
	(relaxed_flag): Rename from upc_relaxed_flag.
	(threads_factor_flag): New. Was a lang. flag.
	(block_factor_0): New. Was a lang. flag.
	(block_factor_x): New. Was a lang. flag.
	(spare1): Decrement spare bits from 8 down to 5.
	* tree.c (block_factor_for_type): Move to here.
	(tree_expr_size): Move to here from explow.c.
	(block_factor_lookup): Move to here.
	(block_factor_insert): Move to here.
	(upc_get_block_factor): Move to here.
	* tree.h: refer to block_factor_* instead of upc_block_factor_*.
	(TYPE_HAS_BLOCK_FACTOR_0, TYPE_HAS_BLOCK_FACTOR_X,
	TYPE_HAS_THREADS_FACTOR): Refer to tree base flag bits instead
	of lang. flag bits.
	(tree_expr_size): Move prototype from explow.h.

2013-12-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 206243 into gupc branch.

2013-12-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 206179 into gupc branch.

2013-12-22  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_cpp_builtins): Bump UPC_VERSION
	to reflect UPC specification version 1.3 compliance.

2013-12-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 206010 into gupc branch.

2013-12-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 205801 into gupc branch.

2013-12-03  Meador Inge  <meadori@codesourcery.com>

	* tree-core.h (tree_type_common): Change tree_type_common to use
	user-provided GC marking.
	(gt_ggc_mx, gt_pch_nx): New prototypes.
	* tree.c (gt_ggc_mx, gt_pch_nx): New functions.

2013-12-03  Gary Funck  <gary@intrepid.com>

	Revert:

	2011-10-10  Gary Funck  <gary@intrepid.com>

	* tree.c (check_qualified_type, check_aligned_type):
	Call tree_int_cst_equal() to compare UPC blocking factors
	if the corresponding tree pointers are not equal.
	* c-typeck.c (comptypes_internal, c_build_qualified_type_1): Ditto.

2013-12-03  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt: Fix typo introduced in 2013-06-03
	merge with trunk.

2013-12-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 205582 into gupc branch.

2013-11-26  Meador Inge  <meadori@codesourcery.com>

	* upc/upc-genericize.c (upc_expand_get): Ensure that temporaries
	are declared via a DECL_EXPR.

2013-11-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 205346 into gupc branch.

2013-11-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 204942 into gupc branch.

2013-11-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 204894 into gupc branch.

2013-11-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 204659 into gupc branch.

2013-11-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 204345 into gupc branch.

2013-10-31  Gary Funck  <gary@intrepid.com>

	Released GUPC 4.9.0.1 based on version 203902.
	This release version was committed on 2013-10-21.
	* DEV-PHASE: Bump to 4.9.0.2.
	* DATESTAMP: Bump date stamp.

2013-10-28  Gary Funck  <gary@intrepid.com>

	Merge trunk version 204119 into gupc branch.

2013-10-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 203886 into gupc branch.

2013-10-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 203514 into gupc branch.

2013-10-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 203240 into gupc branch.

2013-10-01  Gary Funck  <gary@intrepid.com>

	Implement pointer-to-shared -> integer conversions.
	Required per UPC 1.3 Specification.
	* c/c-typeck.c (build_c_cast): Remove logic that diagnosed
	PTS->int conversions as an error.  Rewrite into a CONVERT_EXPR
	for later processing by upc_genericize().

2013-10-01  Gary Funck  <gary@intrepid.com>

	Implement pointer-to-shared -> integer conversions.
	Required per UPC 1.3 Specification.
	* upc/upc-genericize.c (upc_genericize_pts_to_int_cvt): New.
	(upc_genericize_expr): Call upc_genericize_pts_to_int_cvt().

2013-09-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 203026 into gupc branch.

2013-09-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 202825 into gupc branch.

2013-09-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 202725 into gupc branch.

2013-09-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 202619 into gupc branch.

2013-09-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 202382 into gupc branch.

2013-09-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 202159 into gupc branch.

2013-08-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 202008 into gupc branch.

2013-08-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 201832 into gupc branch.

2013-08-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 201483 into gupc branch.

2013-07-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 201301 into gupc branch.

2013-07-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 201119 into gupc branch.

2013-07-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 200955 into gupc branch.

2013-07-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 200775 into gupc branch.

2013-07-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 200575 into gupc branch.

2013-06-24  Gary Funck  <gary@intrepid.com>

	Merge trunk version 200361 into gupc branch.

2013-06-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 200149 into gupc branch.

2013-06-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 200149 into gupc branch.
	* upc/upc-act.c (upc_create_static_var): New.
	(upc_build_init_func): Call upc_create_static_var() to
	create a static variable, __upc_init_func_addr, which
	is initialized to the address of the UPC
	shared data initialization function.  This change is
	needed to avoid writing to the output assembly language
	file too early.
	(upc_build_sync_stmt): Delete unused variable, sync_expr_type.

2013-06-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 199596 into gupc branch.

2013-05-27  Gary Funck  <gary@intrepid.com>

	Merge trunk version 199350 into gupc branch.

2013-05-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 199093 into gupc branch.

2013-05-14  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts-packed.c (upc_pts_packed_build_cvt):
	When checking whether the phase of a PTS should be reset,
	if the source type is an array type, then bypass
	the check for equal type sizes.
	* upc/upc-pts-struct.c (upc_pts_struct_build_cvt): Ditto.

2013-05-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 198815 into gupc branch.

2013-05-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 198622 into gupc branch.

2013-04-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 198433 into gupc branch.

2013-04-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 197958 into gupc branch.

2013-04-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 197571 into gupc branch.

2013-04-04  Gary Funck  <gary@intrepid.com>

	Per the UPC 1.3 specification, the type of the
	optional barrier/notify/wait expression is not constrained to
	'int'. Instead, any type that is assignment compatible
	with an 'int' type is permitted.
	* c/c-parser.c (c_parser_upc_sync_statement): Do not check
	the optional expression type here.  Let upc_build_sync_stmt()
	handle it.
	* c/c-tree.h (c_cvt_expr_for_assign): Declare prototype.
	* c/c-typeck.c (c_cvt_expr_for_assign): New.  Also, call
	error_at() in lieu of error() when the source location is known.
	* upc/upc-act.c (upc_build_sync_stmt): Call c_cvt_expr_for_assign()
	to check/convert the optional synchronization statement
	expression.

2013-04-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 197340 into gupc branch.

2013-04-02  Gary Funck  <gary@intrepid.com>

	Revert revision 178346 (2011-08-30)
	which changed the prototype of check_qualified_type and related
	functions so that their parameters were just 'tree' and not
	'const_tree'.  This seemed necessary at the time because of a
	change to TYPE_BLOCK_FACTOR(), which in turn called function
	that hashed the type node pointer.  The hash functions did
	not accept "const void *" pointers.  Implement a work around
	that removes this restriction.
	* c/c-typeck.c: Revert.
	* tree.c: Revert.
	* tree.h: Revert.  Change prototype of upc_block_factor_lookup()
	to accept a 'const_tree' pointer to a type node.
	* c-family/stub-upc.c (upc_block_factor_lookup): Update prototype.
	* upc/upc-act.c (upc_block_factor_lookup): Accept const_tree
	input argument and convert this to 'tree' for use with hash function.

2013-04-02  Gary Funck  <gary@intrepid.com>

	Revert revision 178346 (2011-08-30)
	which changed the prototype of check_qualified_type and related
	functions so that their parameters were just 'tree' and not
	'const_tree'.  This seemed necessary at the time because of a
	change to TYPE_BLOCK_FACTOR(), which in turn called a function
	that hashed the type node pointer.  The hash functions did
	not accept "const void *" pointers.  Implement a work around
	that removes this restriction.
	* upc/upc-act.c (upc_block_factor_lookup): Accept const_tree
	input argument and convert this to 'tree' for use with hash function.

2013-03-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 197029 into gupc branch.

2013-03-21  Gary Funck  <gary@intrepid.com>

	Released GUPC 4.8.0.3 based on version 196601.
	This release version was committed on 2013-03-11.
	* DATESTAMP: Bump date stamp.

2013-03-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 196771 into gupc branch.
	* DEV-PHASE: Bump release identifier to 4.9.0-1.

2013-03-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 196592 into gupc branch.

2013-03-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 196422 into gupc branch.

2013-02-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 196253 into gupc branch.

2013-02-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 196115 into gupc branch.

2013-02-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 195937 into gupc branch.

2013-02-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 195707 into gupc branch.

2013-01-28  Gary Funck  <gary@intrepid.com>

	Merge trunk version 195502 into gupc branch.

2013-01-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 195330 into gupc branch.

2013-01-14  Gary Funck  <gary@intrepid.com>

	Merge trunk version 195164 into gupc branch.

2013-01-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 194962 into gupc branch.

2012-12-24  Gary Funck  <gary@intrepid.com>

	Merge trunk version 194709 into gupc branch.

2012-12-17  Gary Funck  <gary@intrepid.com>

	Merge trunk version 194552 into gupc branch.

2012-12-10  Gary Funck  <gary@intrepid.com>

	Merge trunk version 194351 into gupc branch.

2012-12-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 194076 into gupc branch.

2012-11-30  Gary Funck  <gary@intrepid.com>

	Released GUPC 4.8.0.2 based on version 193446.
	Date of release: 2012-11-12.
	* DEV-PHASE: Bump release identifier to 4.8.0-3.
	* DATESTAMP: Bump date stamp.

2012-11-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 193807 into gupc branch.

2012-11-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 193672 into gupc branch.

2012-11-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 193617 into gupc branch.

2012-11-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 193426 into gupc branch.

2012-11-12  Gary Funck  <gary@intrepid.com>

	Released GUPC 4.8.0.1 based on version 192948.
	Date of release: 2012-10-29.
	* DEV-PHASE: Bump release identifier to 4.8.0-2.
	* DATESTAMP: Bump date stamp.

2012-11-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 193152 into gupc branch.

2012-10-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 192909 into gupc branch.

2012-10-28  Nenad Vukicevic  <nenad@intrepid.com>

	Remove unused --upc-pthreads-per-process compile switch.
	* c-family/c.opt: Remove --upc-pthreads-per-process switch
	that compiler/runtime do not use.
	* c-family/c-opts.c (c_common_handle_option): Remove support for
	--upc-pthreads-per-process switch.
	* c-family/c-common.c: Ditto.
	* c-family/c-common.h: Ditto.

2012-10-28  Nenad Vukicevic  <nenad@intrepid.com>

	Remove unused --upc-pthreads-per-process compile switch.
	* upc/upc-act.c (upc_handle_option): Ditto.
	(upc_cpp_builtins): Ditto.
	* upc/upc-lang.c (upc_init_options): Ditto.

2012-10-27  Gary Funck  <gary@intrepid.com>

	* defaults.h: fix typos and formatting in UPC-related entries.

2012-10-26  Nenad Vukicevic  <nenad@intrepid.com>

	Place shared initialization code into the .text
	section instead of a separate .upc_init section.
	* defaults.h (UPC_INIT_SECTION_NAME): Delete.
	(UPC_INIT_BEGIN_NAME): Delete.
	(UPC_INIT_END_NAME): Delete.
	* doc/tm.texi.in: Ditto.
	* doc/tm.texi: Ditto.

2012-10-26  Nenad Vukicevic  <nenad@intrepid.com>

	Place shared initialization code into the .text
	section instead of a separate .upc_init section.
	* upc/upc-act.c (upc_build_init_func): Remove settings
	of the section for shared initialization code.

2012-10-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 192673 into gupc branch.

2012-10-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 192449 into gupc branch.

2012-10-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 192198 into gupc branch.

2012-10-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 191931 into gupc branch.

2012-09-26  Gary Funck  <gary@intrepid.com>

	Implement support for various UPC version 1.3 specification
	additions and changes. Deprecate support for upc_local_alloc.
	Add support for upc_tick (wall-clock timer) library.
	Add support for collective de-allocation functions:
	upc_all_free and upc_all_lock_free.
	Consult libgupc/ChangeLog,
	libgupc/testsuite/libgupc.upc/intrepid/ChangeLog for details.

2012-09-26  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_cpp_builtins): Pre-define __UPC_TICK__.

2012-09-24  Gary Funck  <gary@intrepid.com>

	Merge trunk version 191658 into gupc branch.

2012-09-17  Gary Funck  <gary@intrepid.com>

	Merge trunk version 191376 into gupc branch.

2012-09-10  Gary Funck  <gary@intrepid.com>

	Merge trunk version 191141 into gupc branch.

2012-08-29  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupc.texi: Add description for -fupc-pre-include.

2012-08-27  Gary Funck  <gary@intrepid.com>

	Merge trunk version 190707 into gupc branch.
	* tree.h (struct tree_base): Adjust various
	UPC tree and type flags to refer to the
	newly introduced u.bits field.

2012-08-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 190524 into gupc branch.
	Incorporates a fix in genoutput.c (to properly use
	CONST_CAST) that led to build failures with
	older versions of g++.

2012-08-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 190437 into gupc branch.
	Incorporates a fix for a build failure on the PPC
	due to passing incorrect switches to the assembler.
	Also, first merged trunk revision that compiles GCC
	with the C++ compiler in the first stage.

2012-08-16  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts-struct.c (upc_pts_struct_is_null_p):
	Adjust VEC_index() calls to use C++ syntax.
	This is required as part of the move to compile
	GCC with the C++ compiler.

2012-08-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 190336 into gupc branch.

2012-08-09  Gary Funck  <gary@intrepid.com>

	* c-family/c-common.c (c_fully_fold_internal): Do not fold
	offsetof-like expressions when they are applied to UPC
	shared types.

2012-08-07  Gary Funck  <gary@intrepid.com>

	* upc/upc-genericize.c: Delete un-used include of optabs.h.
	Fixes a parallel make failure due to un-noticed dependency.

2012-08-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 190173 into gupc branch.

2012-08-01  Gary Funck  <gary@intrepid.com>

	Merge trunk version 190063 into gupc branch.
	Incorporates fix for build failure on IA64.

2012-07-30  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189954 into gupc branch.

2012-07-27  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189856 into gupc branch.
	Incorporates fix for bootstrap with a sub-set of language
	specific source directories present.
	* optabs.c: Revert to trunk.  Rather than defining opcodes
	as a way of defining get/put runtime library function names,
	generate them directly in gcc/upc/upc-genericize.c.
	* optabs.h: Ditto.
	* genopinit.c: Ditto.

2012-07-27  Gary Funck  <gary@intrepid.com>

	* upc/upc-genericize.c (upc_expand_get, upc_expand_put):
	Rather than referring to UPC-specific opcodes to find
	the name of the get/put library function name, generate
	the name directly.
	(get_lc_mode_name): New.

2012-07-25  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts-struct.c (upc_pts_struct_build_cond_expr):
	Fix regression: field-by-field comparison of UPC
	pointer-to-shared (vaddr, thread) only works
	(with the current logic) for the == and != operators.

2012-07-24  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts-packed.c (upc_pts_packed_build_cond_expr):
	Fix warning about use of const_tree.

2012-07-24  Gary Funck  <gary@intrepid.com>

	Per UPC spec. 6.4.2p6, ignore the value of the
	phase of a pointer-to-shared, when comparing for
	equal or not equal.
	* upc/upc-pts-packed.c (upc_pts_packed_build_cond_expr):
	Use bit-wise comparison only if the UPC pointer-to-shared
	target type has a block size <= 1 and the representation
	has vaddr first or the comparison is for equality/inequality.
	* upc/upc-pts-struct.c (upc_pts_struct_build_cond_expr):
	Use (vaddr, thread) comparison only if the UPC pointer-to-shared
	has a block size <= 1 or the comparison is for equality/inequality.

2012-07-23  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189777 into gupc branch.

2012-07-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189545 into gupc branch.

2012-07-12  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189366 into gupc branch.

2012-07-05  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189274 into gupc branch.
	Incorporates graphite build infrastructure changes.

2012-07-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189080 into gupc branch.
	* Makefile.in: Adjust for move of C front-end files.
	* c/Make-lang.in: Ditto.

2012-07-04  Gary Funck  <gary@intrepid.com>

	* upc/config-lang.in: Adjust for move of C front-end files.
	* upc/upc-act.c: Look for c-tree.h and c-objc-common.h in c/.
	* upc/upc-gasp.c: Ditto.
	* upc/upc-genericize.c: Ditto.
	* upc/upc-lang.c: Ditto.
	* upc/upc-pts-struct.c: Ditto.

2012-07-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 189078 into gupc branch.

2012-06-25  Gary Funck  <gary@intrepid.com>

	Merge trunk version 188931 into gupc branch.

2012-06-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 188721 into gupc branch.

2012-06-11  Gary Funck  <gary@intrepid.com>

	Merge trunk version 188380 into gupc branch.

2012-06-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 188168 into gupc branch.

2012-05-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 187927 into gupc branch.

2012-05-19  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_lang_layout_decl): Ignore declarations of
	an array of shared type declarations if the size of the
	array is zero.  This avoids a segfault when processing
	the UPC blocking factor.

2012-05-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 187666 into gupc branch.
	Incorporates fix for ICE in tree vectorization pass
	when processing strided loads.

2012-05-17  Gary Funck  <gary@intrepid.com>

	Merge trunk version 187578 into gupc branch.

2012-05-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 187347 into gupc branch.
	Incorporates fix for segfault in tree vectorization pass.

2012-05-08  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupcspec.c (lang_specific_driver): Improve handling of
	"-x" switches: (a) add "-x upc" switch for C source files if
	no -x switch was seen before OR "-x none" was seen, (b) add
	"-x none" for files other then C files if "-x upc" was
	previously added. Cleanup warnings on unused variables
	and integer conversion. Print verbose info regardless of the
	command line being the same.

2012-05-04  Nenad Vukicevic  <nenad@intrepid.com>

	* testsuite/lib/upc.exp: Use gupc instead of xgupc driver.
	Appropriate libraries and include files are added on the
	command line to make it possible to compile with the driver
	from the build tree.

2012-05-04  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupc.texi: Simplify the description of the optimization
	options.

2012-05-04  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/Make-lang.in: Remove build of xgupc.
	* upc/gupcspec.c (get_libgupc_path): Delete.
	(lang_specific_driver): Remove support for building xgupc.
	Removed code tried to add -B, -L, -isystem to the command
	line if xgupc driver is invoked from the development tree.

2012-05-04  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_num_threads): When THREADS is specified
	statically, convert the value to a signed size type,
	so that (for example) the thread affinity test in a
	upc_forall() statement will work as expected for negative
	integer index values.

2012-04-30  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/Make-lang.in: Add year 2012 to the copyright.

2012-04-30  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupc.c: Delete. The old GUPC driver.
	* upc/gupcspec.c: Add. The new GUPC driver tailored
	after fortran/gfortranspec.c driver. Options "-n", "-inst",
	and "-inst-functions' are not supported by the new driver.
	Support for building gupc and xgupc remains the same.
	* upc/Make-lang.in (xgupc): Changes to compile gupcspec.c
	instead of gupc.c
	(gupc): Ditto.
	* upc/gupc.texi: Remove '-n', '-inst', and '-inst-functions'
	options.

2012-04-29  Nenad Vukicevic  <nenad@intrepid.com>

	* config/rs6000/rs6000.c (rs6000_return_in_memory): Conform to
	PPC ABI. In the UPC 'struct' pointer-to-shared representation,
	a function returns a pointer-to-shared in memory instead
	of in registers.
	(rs6000_pass_by_reference): Ditto.

2012-04-28  Gary Funck  <gary@intrepid.com>

	* c-decl.c (grokdeclarator): Set 'type' to error node
	after detecting "shared auto variable" error to avoid
	downstream complications.
	* upc/upc-act.c: Fix a couple of spelling errors in comments.

2012-04-26  Gary Funck  <gary@intrepid.com>

	* c-family/c-pragma.c (handle_pragma_upc):
	Fix typo in warning message.

2012-04-17  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupc.texi: Fix the warning for usage of 'insertcopying'
	before 'copying'. Minor changes to to copyright years and
	manual info.

2012-04-17  Gary Funck  <gary@intrepid.com>

	Merge trunk version 186486 into gupc branch.

2012-04-17  Gary Funck  <gary@intrepid.com>

	* c-family/c-pragma.c (disable_pupc_mode): Return the previous
	value of the pupc mode.  Fixes a compile-time warning.
	* c-family/c-pragma.c (init_pragma_pupc, get_upc_pupc_mode,
	disable_pupc_mode, set_pupc_mode, handle_pragma_pupc):
	Improve source formatting.

2012-04-16  Gary Funck  <gary@intrepid.com>

	* upc/upc-genericize.c: Adjust copyright.
	(upc_genericize_fndecl): Adjust call graph
	union member reference to use the newly introduced
	'symbol' field in order to refer to 'decl'.

2012-04-09  Gary Funck  <gary@intrepid.com>

	Merge trunk version 186243 into gupc branch.
	Incorporates a powerpc 'ffi' fix.

2012-03-16  Gary Funck  <gary@intrepid.com>

	Merge trunk version 185454 into gupc branch.
	Incorporates a libgcc fix for builds on Darwin.

2012-03-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 185278 into gupc branch.
	* c-decl.c (c_build_pointer_type): For UPC pointer-to-shared types
	call build_pointer_type() to apply UPC-specific qualifiers.
	* top-level/configure.ac: factor the checking for posix hosts
	out of the libgomp section so that it can also be used by libgupc.
	* top-level/configure: Re-generate.
	* DEV-PHASE: bump to 4.8.0-1.

2012-03-12  Gary Funck  <gary@intrepid.com>

	* config/rs6000/rs6000.c (rs6000_function_value): Do not over-ride
	the mode for a pointer for upc-pointer-to-shared types.

2012-03-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 184900 into gupc branch.

2012-02-17  Gary Funck  <gary@intrepid.com>

	Released GUPC 4.7.0.2 based on version 183992.
	* DEV-PHASE: Bump release identifier to 4.7.0-3.
	* DATESTAMP: Bump date stamp.

2012-02-07  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupc.texi: Added entries for the directory.

2012-02-05  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupc-manpage.html: Removed. HTML files are generated from
	the texi source.

2012-02-05  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/gupc.texi (-x upc): Add files ending with '.c' to the list
	of files compiled as UPC source.

2012-02-04  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/Make-lang.in (doc/gupc.info): Fix dependencies for creating
	gupc.info document.

2012-02-03  Nenad Vukicevic  <nenad@intrepid.com>

	* c-family/c-pragma.c (disable_pupc_mode): New. Disable profiling
	code generation (same as #pragma pupc off).
	(set_pupc_mode): New. Set/restore profiling mode.
	* c-family/c-upc.h (disable_pupc_mode): New. Prototype.
	(set_pupc_mode): New. Prototype.
	* upc/upc-act.c (upc_write_init_func): Disable emitting of the
	profiling code for shared variables initialization routines.

2012-02-03  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/upc-act.c (upc_write_init_func): Disable emitting of the
	profiling code for shared variables initialization routines.

2012-02-03  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/Make-lang.in: Various changes related to generating
	man/info pages from texi source file.
	(upc.install-common): Fix for removing the upc command
	link before install if suffix was applied.
	(upc.install-pdf): New.
	(upc.install-html): Change for the build from texi.
	(upc.install-man): Change for the build from texi.
	* upc/gupc.1: Removed.
	* upc/gupc.texi: New. Created texi source for man/info
	generation.

2012-01-31  Gary Funck  <gary@intrepid.com>

	Merge trunk version 183751 into gupc branch.
	Incorporates fix for bootstrap failure on openSUSE 12.1.

2012-01-30  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/Make-lang.in: Fix the --program-suffix configuration
	option.  GUPC executables are now installed with appropriate
	suffixes and GUPC driver execs 'gcc' with the right suffix.

2012-01-24  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/upc-lang.c (upc_init_options): Disable section anchors
	for UPC language.

2012-01-14  Gary Funck  <gary@intrepid.com>

	* upc/upc-genericize.c (upc_genericize_expr): Update input_location
	while traversing the program tree.
	(upc_expand_get, upc_expand_put): For profiling,  derive
	the source code location from the incoming 'loc' parameter.

2012-01-10  Gary Funck  <gary@intrepid.com>

	Merge trunk version 183072 into gupc branch.
	Incorporates libcpp __BASE_FILE__ fix.

2012-01-09  Gary Funck  <gary@intrepid.com>

	* upc/upc-genericize.c (upc_expand_put): Use is_gimple_reg instead of
	is_gimple_non_addressable.

2012-01-06  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/Make-lang.in: Add appropriate linker flags when linking
	gupc drivers.

2012-01-06  Nenad Vukicevic  <nenad@intrepid.com>

	* upc/Make-lang.in: Add appropriate linker flags when linking
	gupc drivers.

2011-12-31  Gary Funck  <gary@intrepid.com>

	Fix gupc driver to avoid segfault when processing
	invalid use of a switch that expects an argument.
	* upc/gupc.c (get_libgupc_path): Add check for non-NULL value of
	libgupc_archive before attempting to access libgupc_archive[0].
	(main): Do not issue error if lib_dir is NULL.  Instead, only
	process lib_dir if it is non-NULL.

2011-12-31  Gary Funck  <gary@intrepid.com>

	Improve -fupc-debug support.
	* upc/upc-genericize.c (upc_expand_get, upc_expand_put,
	upc_genericize_sync_stmt): Add check for flag_upc_debug.
	* upc/upc-pts-struct.c (upc_pts_struct_build_cvt): Ditto.
	* upc/upc-pts-packed.c (upc_pts_packed_build_cvt): Ditto.
	* upc/upc-act.c (upc_cpp_builtins): Disable inlining of the
	runtime if flag_upc_debug is asserted.

2011-12-20  Nenad Vukicevic  <nenad@intrepid.com>

	* top-level/Makefile.def (flags_to_pass): Added GUPC
	defines. Fixes the make error when upc is not specified as one
	of the languages to build.
	* top-level/Makefile.in: Re-generate.

2011-11-22  Gary Funck  <gary@intrepid.com>

	* DEV-PHASE: "GCC UPC" -> "GNU UPC", and bump minor rev.
	* dwarf2out.c (gen_compile_unit_die): Check for
	the "GNU UPC" language string in lieu of "GCC UPC".
	* config/rs6000/rs6000.c (rs6000_output_function_epilogue): Ditto.

2011-11-22  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_cpp_builtins): Generate new pre-defined
	macro: __GUPC__.

2011-11-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 181552 into gupc branch.
	Incorporates libgcc/libunwind fix for IA64.

2011-11-19  Gary Funck  <gary@intrepid.com>

	* config/rs6000/rs6000.c (rs6000_output_function_epilogue):
	Add check for UPC when defining the language type value
	in a traceback entry.

2011-11-19  Gary Funck  <gary@intrepid.com>

	* upc/config-lang.in: Remove checks for supported targets.
	This is now done at a higher level.

2011-11-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 181493 into gupc branch.
	Incorporates final fix for PR target/49992.

2011-11-09  Nenad Vukicevic  <nenad@intrepid.com>

	* Makefile.in (CRTSTUFF_CFLAGS): Revert the previous
	change that converted relative include paths into absolute
	ones, as it does not work with older version of make (3.80).

2011-10-27  Nenad Vukicevic  <nenad@intrepid.com>

	Apply patch for Darwin build - PR49992.
	* top-level/configure.ac: Don't run ranlib with '-c' option for Darwin.
	* gcc/configure.ac: Ditto.
	* gcc/ada/mlib-tgt-specific-darwin.adb: Ditto.
	* gcc/ada/gcc-interface/Makefile.in: Ditto.
	* top-level/configure: Re-generate.
	* gcc/configure: Re-generate.

2011-10-26  Gary Funck  <gary@intrepid.com>

	Rename "GCC/UPC" to "GNU UPC", "UPC" to "GUPC", and
	"libupc" to "libgupc".
	* top-level/configure.ac: Implement support for cross-builds, and
	  adjust for rename of libupc to libgupc.
	* top-level/Makefile.tpl: Ditto.
	* top-level/Makefile.def: Ditto.
	* top-level/configure: Re-generate.
	* top-level/Makefile.in: Re-generate.
	* top-level/contrib/gcc_update: Adjust for rename of libupc to libgupc.
	* doc/tm.texi.in: Adjust for rename of libupc to libgupc.
	* doc/tm.texi: Re-generate.
	* tree-pretty-print.c (dump_block_node): Delete unused variable.
	* gcc.c: Adjust for rename of libupc to libgupc.
	* testsuite/lib/upc.exp: Adjust for rename of libupc to libgupc.
	Change "GCC_UNDER_TEST" to "GUPC_UNDER_TEST".
	Change "xupc" to "xgupc".
	* configure.ac: Change "GCC UPC" to "GNU UPC".
	* Makefile.in (CRTSTUFF_CFLAGS): Adjust $(INCLUDES_FOR_TARGET)
	so that they are absolute paths.  This is needed because
	the upc-crtstuff builds are in the libgupc library build
	directories which are not at the same level as libgcc.
	* config/darwin.h: Adjust for rename of libupc to libgupc.

2011-10-26  Gary Funck  <gary@intrepid.com>

	Rename "GCC/UPC" to "GNU UPC", "UPC" to "GUPC", and
	"libupc" to "libgupc".
	* upc/gupc.c: Rename from upc-cmd.c and adjust for rename
	of libupc to libgupc.
	* upc/upc-lang.c (LANG_HOOKS_NAME): Change "GCC UPC" to "GNU UPC".
	* upc/config-lang.in: Adjust for rename of libupc to libgupc.
	* upc/gupc.1: Rename from upc.1.  Change "GCC UPC" references
	to "GNU UPC".  Adjust for rename of libupc to libgupc.
	Improve formatting.
	* upc/gupc-manpage.html: Rename from upc-manpage.html.  Re-generate.
	* upc/Make-lang.in: Change "upc" to "gupc".  Change "xupc" to "xgupc".
	Adjust for rename of libupc to libgupc.  Install target symlink from
	"upc" to "gupc".  Install target/version-specific hard links to "gupc".

2011-10-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 180276 into gupc branch.
	Incorporates fix for PR bootstrap/50709.

2011-10-20  Gary Funck  <gary@intrepid.com>

	Merge trunk version 180246 into gupc branch.

2011-10-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 180233 into gupc branch.
	Incorporates fix for PR debug/49310 (var tracking).

2011-10-17  Gary Funck  <gary@intrepid.com>

	Fix a regression caused by the previous commit.
	* upc/upc-genericize.c (upc_genericize_walk):
	Renamed from: upc_genericize_stmt.
	(upc_shared_addr): for COMPONENT_REF and INDIRECT_REF
	re-walk the tree after simplification, by calling
	upc_genericize_walk().
	(upc_genericize_array_ref): expand the newly constructed
	indirect reference by calling upc_genericize_indirect_ref().

2011-10-11  Nenad Vukicevic  <nenad@intrepid.com>

	* testsuite/lib/upc-dg.exp: Limit number of torture runs to
	only four (O0 static/dynamic, O3 static/dynamic).
	Detect -fupc-threads-0 as an option for dynamic threads
	compile environment.

2011-10-10  Gary Funck  <gary@intrepid.com>

	* tree.c (check_qualified_type, check_aligned_type):
	Call tree_int_cst_equal() to compare UPC blocking factors
	if the corresponding tree pointers are not equal.
	* c-typeck.c (comptypes_internal, c_build_qualified_type_1): Ditto.

2011-10-10  Gary Funck  <gary@intrepid.com>

	* upc/upc-genericize.c (upc_simplify_shared_ref): When simplifying
	the base address always convert to (shared [] char *).
	This ensures that &a[i].field1 ends up with the required
	zero block size, for example.

2011-10-07  Nenad Vukicevic  <nenad@intrepid.com>

	Add configuration checks for struct/packed builds so we can
	use upc_struct_pts/upc_packed_pts selectors in the testsuite.
	* testsuite/lib/target-supports.exp
	(check_effective_target_upc_struct_pts): New.
	(check_effective_target_upc_packed_pts): New.

2011-09-15  Nenad Vukicevic  <nenad@intrepid.com>

	Add to FLAGS the flags needed to disable inlining of
	UPC run-time access routines.
	* testsuite/lib/target-supports.exp
	(add_options_for_upc_library_calls): New.

2011-09-15  Gary Funck  <gary@intrepid.com>

	Fix ICE involving shared bit field accesses.
	* tree.c (build3_stat): Propagate TEEE_SHARED()
	and TREE_STRICT() and TREE_RELAXED() flags, if applicable.

2011-09-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 178795 into gupc branch.
	Incorporates fix to PR bootstrap/50010 for x86-32.

2011-09-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 178557 into gupc branch.

2011-09-07  Gary Funck  <gary@intrepid.com>

	Ensure that UPC pointer-to-shared type alignment is
	propagated to the final type.  Revert to long-standing
	alignment policy: twice the size of a "C" pointer.
	* tree.c (build_pointer_type): Propagate the alignment
	of the UPC pointer-to-shared representation type
	into the newly built pointer type.

2011-08-30  Gary Funck  <gary@intrepid.com>

	* tree.h (check_qualified_type): Change 'const_tree'
	argument types back to 'tree' to avoid complaints
	of assignment drops qualifiers for invocations of the
	newly implemented TYPE_BLOCK_FACTOR() macro, which
	invokes hash functions with 'tree' pointer values that
	are not const qualified.
	* tree.c (check_qualified_type, check_aligned_type): Ditto.
	* c-typeck.c (comptypes_internal): Ditto.

2011-08-29  Gary Funck  <gary@intrepid.com>

	Fixes for regressions noted running "make check"
	versus GCC trunk.
	* fold-const.c (fold_unary_loc): Execute UPC-specific
	checks for a cast-of-a-cast, only if one of the
	operands is a UPC pointer-to-shared value.
	* opts.c (print_specific_help):  Fix a comparison
	in an assert that checks that there are enough
	bits reserved for the number of languages defined
	in the .opt files.

2011-08-29  Gary Funck  <gary@intrepid.com>

	Implement a hash table to record UPC block factors.
	* c-family/stub-upc.c (upc_block_factor_insert,
	upc_block_factor_lookup): New dummy stub procedures.
	* c-family/c-common.c (c_sizeof_or_alignof_type):
	Rename UPC_TYPE_HAS_THREADS_FACTOR() to TYPE_HAS_THREADS_FACTOR().
	* tree.c (copy_node_stat): call SET_TYPE_BLOCK_FACTOR()
	to copy (hashed) UPC blocking factor.
	(set_type_quals): Likewise.
	* tree.h: Rename UPC_TYPE_HAS_THREADS_FACTOR() to
	TYPE_HAS_THREADS_FACTOR().
	(type_common.block_factor): Delete.
	(TYPE_HAS_BLOCK_FACTOR_0, TYPE_HAS_BLOCK_FACTOR_X,
	TYPE_HAS_BLOCK_FACTOR, SET_TYPE_BLOCK_FACTOR): New.
	(TYPE_BLOCK_FACTOR): Re-implement, using hash table for
	UPC blocking factors greater than one.
	* dwarf2out.c (modified_type_die): Re-implement
	logic that records UPC blocking factor in the generated
	DWARF2 debugging information.
	(add_subscript_info): Rename UPC_TYPE_HAS_THREADS_FACTOR() to
	TYPE_HAS_THREADS_FACTOR().
	* c-decl.c (finish_decl, grokdeclarator):
	Rename UPC_TYPE_HAS_THREADS_FACTOR() to TYPE_HAS_THREADS_FACTOR().
	* print-tree.c (print_node): Check for TYPE_LANG_FLAG_* flags
	used by UPC, and print UPC-specific information.

2011-08-28  Gary Funck  <gary@intrepid.com>

	Re-work the type machinery to fully support and to unify support
	for the UPC layout qualifier (blocking factor).
	* c-family/stub-upc.c (upc_set_block_factor): Delete.
	  (upc_grok_layout_qualifier): rename from upc_apply_layout_qualifier()
	  and update prototype.
	* c-family/c-common.c (complete_array_type): call newly
	  defined c_build_qualified_type_1() instead of
	  upc_set_block_factor().
	* c-family/c-upc.h (pc_grok_layout_qualifier): rename from
	  upc_apply_layout_qualifier() and update prototype.
	  (upc_set_block_factor): Delete prototype.
	* c-family/c-common.h (c_build_qualified_type): redefine
	  as a pre-processor macro that invokes c_build_qualified_type_1()
	  with a null UPC layout qualifier.
	  (c_build_qualified_type_1): New.  Add layout qualifier argument
	  to old c_build_qualified_type() prototype.
	* tree.c (set_type_quals, check_qualified_type):
	  Add layout qualifier as argument.
	  (check_aligned_type): Add check for UPC block factor equality.
	  (get_qualified_type_1): Rename from get_qualified_type() and
	  add layout qualifier as argument.
	  (build_qualified_type_1): Rename from build_qualified_type() and
	  add layout qualifier as argument.
	* tree.h (check_qualified_type): Add layout qualifier as argument
	  to the prototype.
	  (get_qualified_type): Re-define as a as a pre-processor macro
	  that invokes get_qualified_type_1() with a null
	  UPC layout qualifier.
	  (get_qualified_type_1): Rename from get_qualified_type() and
	  add layout qualifier as argument.
	* cp/tree.c (c_build_qualified_type_1): Rename from
	  c_build_qualified_type() and add (unused) layout qualifier
	  argument.
	* c-decl.c (finish_decl): re-format long error messages.
	  (grokdeclarator): Re-work the logic so that it calls
	  upc_grok_layout_qualifier() to handle the UPC layout
	  qualifier, if present.
	* c-typeck.c (qualify_type, common_pointer_type,
	  build_component_ref): Re-work the logic so that it calls
	  upc_grok_layout_qualifier() to handle the UPC layout qualifier,
	  if present.
	  (c_build_qualified_type_1): Rename from c_build_qualified_type()
	  and add layout qualifier argument.
	* print_tree.c (print_node): Re-format a long line.

2011-08-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 177949 into gupc branch.
	* c-family/c-common.h (enum rid): Bump the number of type modifiers
	  in the comment.
	* ../libcpp/init.c (struct lang_flags): Adjust the entry for UPC
	  to add new rliterals column value.

2011-08-26  Gary Funck  <gary@intrepid.com>

	* convert.c (convert_to_integer): Fix the check for the
	  difference between two UPC pointers-to-shared values.

2011-08-23  Nenad Vukicevic  <nenad@intrepid.com>

	* configure.ac: Fix the name for --with-upc-pts-packed-bits
	  option. Support --with-upc-packed-bits as deprecated. Fix the code to
	  correctly check packed bits.
	* configure: Re-generate.

2011-08-16  Gary Funck  <gary@intrepid.com>

	* c-parser.c (c_parser_upc_sync_statement): issue error diagnostic if
	  the barrier id expression is not an integer expression.

2011-08-12  Gary Funck  <gary@intrepid.com>

	* config/i386/i386.h (MAX_FIXED_MODE_SIZE): Delete
	  (revert to trunk).
	* upc/upc-pts-struct.c (upc_pts_struct_init_type):
	  Set mode of UPC pointer-to-shared rep. to an
	  integral mode of size at least as large as the
	  size of the representation's struct type.

2011-08-12  Gary Funck  <gary@intrepid.com>

	Rework/simplify the UPC genericize pass.
	* c-family/stub-upc.c (upc_apply_layout_qualifier,
	  upc_build_pointer_type): New.
	  (upc_set_block_factor): Adjust to new calling sequence.
	  (upc_build_shared_var_addr): Delete.
	* c-family/c-common.c (complete_array_type): Adjust call
	  to upc_set_block_factor().
	* c-family/c-upc.h (upc_apply_layout_qualifier,
	  upc_build_pointer_type): New.
	  (upc_build_shared_var_addr): Delete.
	  (upc_set_block_factor): Adjust to new calling sequence.
	* tree.h (TI_UPC_CHAR_PTS_TYPE, upc_char_pts_type_node): New.
	* c-decl.c (grokdeclarator): Call newly defined
	  upc_apply_layout_qualifier() instead of upc_set_block_factor().
	* c-decl.c (grokdeclarator): Split long UPC-related error
	  messages into two lines.
	* c-typeck.c (build_unary_op): Do not call upc_build_shared_var_addr()
	  directly.  Revert that change to trunk. (upc_genericize() will
	  handle lowering the expressions that take the address of a
	  UPC variable).
	* config/i386/i386.c (ix86_promote_function_mode): For UPC
	  pointers-to-shared, return the type mode of the UPC pointer-to-shared
	  representation type.

2011-08-10  Gary Funck  <gary@intrepid.com>

	Implement additional fixes for recent merge with trunk.
	* explow.c (promote_mode): Do not attempt to promote
	  the mode for UPC pointer-to-shared types.
	* config/i386/i386.c (function_value_64): Ditto.

2011-08-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 177548 into gupc branch.
	* config/i386/i386.c (ix86_promote_function_mode):
	  Do not promote UPC pointers-to-shared to Pmode.
	* c-family/c-common.c (pointer_int_sum):
	  Also check the pointer operand, rather than just
	  its type, when making the decision to derive
	  the equivalent unshared type.
	* tree.c (build2_stat): If the type of the result
	  passed in as an argument is a UPC shared type,
	  derive the unshared equivalent when calculating
	  the result type of the node.

2011-07-15  Nenad Vukicevic  <nenad@intrepid.com>

	* config/darwin.c: Disable var_tracking option
	  on -O0 as it is supposed to run only when optimization
	  is applied. See GCC bug 49743.

2011-07-06  Gary Funck  <gary@intrepid.com>

	Re-implement the pass that lowers trees generated by
	the UPC front-end into GENERIC.  Previously this was
	done within the gimplification framework, but this
	required that gimplification be run before inlining
	and various other passes, which did not fit in well
	with the current design of the middle-end passes.
	Now, the lowering is done by a newly defined language
	specific genericize hook.  With this change, we are
	are able to undo some extensions made to the gimplify
	logic, and thus can revert several files to trunk.
	* c-decl.c: Add a check for UPC deprecated names which
	  may appear as undefined function names.
	* libfuncs.h (LTI_upc_barrier, LTI_upc_notify, LTI_upc_wait,
	  LTI_upc_getaddr): Remove definitions of unused UPC
	  library function names.  These were defined back when
	  the libfunc interface was used to call these routines.
	* timevar.def (TV_TREE_UPC_GENERICIZE): New. Track time spent
	  in UPC lowering (genericize) pass.
	* langhooks.h (gimplify_expr): Revert to trunk's definition.
	  (instrument_func): Delete this hook.  Now handled in
	  upc_genericize().
	* tree-pass.h: Revert to trunk.
	* c-typeck.c (build_unary_op): Adjust reference to
	  upc_genericize() in a comment.
	* gimplify.c (create_tmp_var_raw): Delete logic that
	  was converting UPC shared types into unshared types
	  to be used for temporaries.  Now handled in  upc_genericize().
	  Replace with an assertion check.
	  (prepare_gimple_addressable): Revert to trunk's definition.
	  No longer needed as an externally called function.
	  (flag_instrument_functions_exclude_p): Re-define as
	  an externally called function.
	  (gimplify_function_tree): Delete code that implemented
	  call to UPC's language specific function instrumentation hook.
	* gimple.h (flag_instrument_functions_exclude_p): Define as extern.
	  (prepare_gimple_addressable): Delete extern definition;
	  revert to trunk's definition.
	* lnaghooks-def.h (lhd_gimplify_expr): Revert to trunk's definition.
	  (LANG_HOOKS_INSTRUMENT_FUNC): Remove, no longer needed for UPC.
	* c-family/c-gimplify.c: Revert to trunk.
	* cp/cp-gimplify.c: Revert to trunk.
	* cp/cp-tree.h: Revert to trunk.
	* explow.c: Revert to trunk.
	* langhooks.c: Revert to trunk.
	* libfuncs.h: Revert to trunk.
	* objc/objc-act.c: Revert to trunk.

2011-06-30  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt: Bring options definitions up-to-date
	with respect to changes made in the trunk.

2011-06-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 175584 into gupc branch.

2011-06-13  Gary Funck  <gary@intrepid.com>

	libcpp/
	* include/cpplib.h (enum c_lang):
	Move the entry for CLK_UPC so that it follows CLK_STDC1X.
	This keeps all the "C" variants together.
	* init.c (lang_defaults): Add an entry for UPC.

2011-06-09  Gary Funck  <gary@intrepid.com>

	* c-parser.c (upc_localsizeof_type): Fix an ICE when compiling for
	a 32-bit target, the size expression overflowed, the result was
	error_mark_node, and an ICE was triggered on an attempt to evaluate
	C_TYPE_VARIABLE_SIZE() on the error node.
	(upc_blocksizeof_expr, upc_blocksizeof_type,
	upc_elemsizeof_expr, upc_elemsizeof_type, upc_localsizeof_expr):
	Make similar changes to avoid further processing of error_mark_node.

2011-06-07  Gary Funck  <gary@intrepid.com>

	* sel-sched.c (move_op): Incorporate the following
	patch to eliminate ICE at -O3 on IA64/Altix.

2011-06-07  Alexander Monakov  <amonakov@ispras.ru>

	* sel-sched.c (move_op): Use correct type for 'res'.  Verify that
	code_motion_path_driver returned 0 or 1.
	(sel_region_finish): Clear h_d_i_d.

2011-06-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 174558 into gupc branch.

2011-05-30  Gary Funck  <gary@intrepid.com>

	* configure.ac: Make the default order of the virtual
	  address field in a UPC pointer-to-shared to be "first".
	  This reverts to the previous setting, and is a short term
	  measure to work around a bug found on the IA64,
	  where vaddr=last led to incorrect code generation.
	  Rename UPC_PTS_VADDR_FIRST to HAVE_UPC_PTS_VADDR_FIRST
	  in AC_DEFINE(), to agree with recent changes in files
	  that reference this define.
	  configure, config.in: Regenerate.

2011-05-26  Gary Funck  <gary@intrepid.com>

	* configure.ac: Fix typo when referring to $upc_vaddr_order.
	  configure: Regenerate.
	* ../fixincludes/fixincl.x: Revert to trunk.
	  This file is auto-generated, and should not be merged.

2011-05-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 173845 into gupc branch.

2011-05-17  Gary Funck  <gary@intrepid.com>

	* c-family/stub-upc.c (upc_rts_forall_depth_var): New.
	  c-family/c-upc.h (upc_rts_forall_depth_var): Define.
	* c-family/c-pragma.c: Remove conditional compilation
	  with HANDLE_PRAGMA_UPC and HANDLE_PRAGMA_PUPC.
	  Test 'compiling_upc' when compiling to determine if
	  the "upc" and "pupc" pragmas should be registered.
	* defaults.h (UPC_SHARED_SECTION_NAME, UPC_SHARED_BEGIN_NAME,
	  UPC_SHARED_END_NAME, UPC_PGM_INFO_SECTION_NAME,
	  UPC_PGM_INFO_BEGIN_NAME, UPC_PGM_INFO_END_NAME,
	  UPC_INIT_SECTION_NAME, UPC_INIT_BEGIN_NAME,
	  UPC_INIT_END_NAME, UPC_INIT_ARRAY_SECTION_NAME,
	  UPC_INIT_ARRAY_BEGIN_NAME, UPC_INIT_ARRAY_END_NAME): New.
	  Move these target-dependent definitions from config/upc-conf.h
	  to here.
	* configure.ac: Improve the logic for UPC-related options.
	  Delete references to pre-processor definitions that have
	  been moved to "upc/upc-pts.h".
	* configure, config.in: Regenerate.
	* Makefile.in (UPC_PTS_REP): Remove definition and revert
	  to trunk.  This substitution variable was used to
	  configure the representation-specific versions of
	  the tree rewrites that operate on UPC pointer-to-shared
	  types and objects.
	* c-parser.c (c_parser_upc_forall_statement): Remove
	  reference to UPC_FORALL_DEPTH_NAME, and call
	  newly defined upc_rts_forall_depth_var() instead.
	* config/upc-config.h: Delete. Various definitions
	  moved to "upc/upc-rts-names.h", "defaults.h", and
	  "upc/upc-pts.h".
	* doc/tm.texi.in (HAVE_UPC_PTS_VADDR_FIRST,
	  HAVE_UPC_PTS_PACKED_REP, HAVE_UPC_PTS_STRUCT_REP,
	  UPC_SHARED_SECTION_NAME, UPC_SHARED_BEGIN_NAME,
	  UPC_SHARED_END_NAME, UPC_PGM_INFO_SECTION_NAME,
	  UPC_PGM_INFO_BEGIN_NAME, UPC_PGM_INFO_END_NAME,
	  UPC_INIT_SECTION_NAME, UPC_INIT_BEGIN_NAME,
	  UPC_INIT_END_NAME, UPC_INIT_ARRAY_SECTION_NAME,
	  UPC_INIT_ARRAY_BEGIN_NAME, UPC_INIT_ARRAY_END_NAME):
	  New.  Document UPC target macros.
	  doc/tm.texi: Regenerate.

2011-05-07  Gary Funck  <gary@intrepid.com>

	* ../configure.ac: Disable build of libupc
	  on non POSIX hosted systems.  Use AS_HELP_STRING
	  to define messages.  Remove 'word-pair' as a
	  possible --with-upc-pts UPC pointer-to-shared
	  representation.
	* ../configure: Regenerate.
	* configure.ac: Use AS_HELP_STRING to define messages.
	  Remove 'word-pair' as a possible --with-upc-pts
	  UPC pointer-to-shared representation.
	  (UPC_MAX_THREADS): Limit the maximum value to 2^31-1.
	  (UPC_MAX_BLOCK_SIZE): Correct the default value.
	* configure: Regenerate.
	* config.in: Regenerate. Delete UPC_PTS_WORD_PAIR_REP
	  definition.
	* ChangeLog.upc: Fix some typos.

2011-05-07  Gary Funck  <gary@intrepid.com>

	* ../maintainer-scripts/gcc_release: Add "upc"
	  as one of the released languages.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Eliminate compilation warnings, by fixing
	#include's and updating function prototypes.
	* c-family/c-cppbuiltin.c: Include c-upc.h.
	* optabs.c (gen_libfunc): Change type of 'suffix'
	  parameter to conform with prototype.
	* cp/cp-gimplify.c (cp_gimplify_expr): Add extra parameters
	  ('gimple_test_f' and 'fallback') used by extended gimplify_expr
	  hook used by UPC.
	* cp/cp-tree.h (cp_gimplify_expr): Add extra parameters to
	  the prototype.
	* objc/objc-act.c (objc_gimplify_expr): Pass extra dummy
	  argument values to cp_gimplify_expr.
	* config.in (HAVE_UPC_AFFINITY_SUPPORT,
	  HAVE_UPC_NUMA_SUPPORT): Regenerate.  Remove
	  pre-processor definitions that are no longer
	  needed to build the 'upc' command (upc-cmd.c)
	  because the linker specs. defined in libupc
	  take care of linking in the needed libraries.
	* c-parser.c (c_parser_upc_forall_statement):
	  initialize affinity_loc to avoid "maybe unused" warning.
	  (c_parser_upc_sync_statement): Remove un-needed
	  'ret' variable.  Cast return value from
	  'upc_build_sync_stmt' to 'void' to avoid
	  compile-time warning.
	* config/upc-conf.h (UPC_MAX_THREADS): Define as an
	  integer constant, not a string.  Range is restricted
	  to maximum positive 32-bit integer (2+ billion) to
	  fit in with the use of 'int' in the front-end's
	  switch handling logic.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Upgrade c-family source files to conform with modularity
	improvements.  Mainly, remove #include of c-tree.h in files
	under c-family, and define a new UPC-specific #include file,
	c-upc.h, and use it.
	* c-family/stub-upc.c: Remove #include of c-tree.h and
	  upc/upc-act.h.  Replace with #include of c-common.h
	  and c-upc.h.
	  (upc_get_unshared_type, upc_pts_cvt_op_p, upc_blocksizeof_expr,
	  upc_blocksizeof_type, upc_elemsizeof_expr, upc_elemsizeof_type,
	  upc_localsizeof_expr, upc_localsizeof_type,
	  upc_shared_type_p): Delete.
	* c-family/c-opts.c: Add #include of c-upc.h
	* c-family/c-common.c: Remove #include of c-tree.h and
	  add #include of c-upc.h.
	* c-family/c-upc.h: New. Define API for UPC-specific functions
	  (mostly implemented in upc/upc-act.c).
	* c-family/c-common.h (upc_cpp_builtins,
	  upc_write_global_declarations): Remove extern definitions.
	* c-family/c-pragma.c: Remove #include of c-tree.h.
	  Add #include of c-upc.h.
	* tree.h (UPC_TYPE_HAS_THREADS_FACTOR): New.  Move from
	  c-tree.h.
	  (upc_shared_type_p, upc_pts_cvt_op_p): New.  Move from
	  upc/upc-act.c, and define as a macro.
	  (expand_affinity_test): Remove unused external definition.
	  (build_upc_unshared_type): Add external definition.
	  (upc_shared_type_p): Remove external definition.
	* c-config-lang.in: Update gtfiles to refer to c-family/c-upc.h.
	* dojump.c: Remove #include of c-tree.h.
	* c-tree.h: Remove definition of UPC_TYPE_HAS_THREADS_FACTOR
	  and move to tree.h.
	  (count_upc_threads_refs, is_multiple_of_upc_threads,
	  set_upc_threads_refs_to_one, c_expr, upc_affinity_test,
	  upc_build_shared_var_addr, upc_build_sync_stmt,
	  upc_check_decl_init, upc_check_decl, upc_decl_init, c_expr,
	  upc_get_block_factor, upc_instrument_forall, upc_is_null_pts_p,
	  c_expr, upc_num_threads, upc_diagnose_deprecated_stmt,
	  upc_pts_cvt_op_p, upc_pts_diff, upc_pts_increment,
	  upc_pts_int_sum, upc_set_block_factor, upc_set_decl_section,
	  permit_pragma_upc, deny_pragma_upc, pragma_upc_permitted_p,
	  set_upc_consistency_mode, get_upc_consistency_mode,
	  push_upc_consistency_mode, pop_upc_consistency_mode,
	  get_upc_pupc_mode):
	  Move external definitions to c-family/c-upc.h.
	  (upc_blocksizeof_type, upc_localsizeof_type,
	  upc_elemsizeof_type): Remove external definitions;
	  these functions were moved to c-parser.c.
	* c-decl.c: Add #include of c-upc.h.
	* c-typeck.c: Add #include of c-upc.h.
	* c-convert.c: Add #include of c-upc.h.
	* ChangeLog.upc: Fix typo.
	* Makefile.in: Add references to c-family/c-upc.h, everywhere
	  there is a reference to c-family/c-objc.h.
	  Remove extraneous reference to upc-act.h.
	* c-parser.c: Add #include of c-upc.h.
	  (upc_blocksizeof_expr, upc_blocksizeof_type,
	  upc_elemsizeof_expr, upc_elemsizeof_type,
	  upc_localsizeof_expr, upc_localsizeof_type):
	  Move from upc/upc-act.c.
	* tree.c (build_upc_unshared_type): New.
	  Move upc_get_unshared_type from upc/upc-act.c and rename
	  to build_upc_unshared_type.
	  c-family/c-common.c (pointer_int_sum): refer to renamed
	  build_upc_unshared_type function.
	  c-convert.c (convert): Ditto.
	  convert.c (convert_to_pointer): Ditto.
	  c-typeck.c (build_unary_op, build_modify_expr,
	  really_start_incremental_init): Ditto.
	  gimplify.c (create_tmp_var_raw): Ditto.
	  tree.c (build1_stat): Ditto.
	  tree.h (upc_get_unshared_type): Rename to
	  build_upc_unshared_type.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 173471 into gupc branch.

2011-05-05  Gary Funck  <gary@intrepid.com>

	Make changes that bring the GUPC branch more closely in sync.
	with the GCC trunk.  Revert any fixes that are not UPC-specific.
	Remove gratuitous re-formatting.
	* ../libstdc++-v3/config/os/bionic/ctype_noninline.h: Delete.
	  This file should have been removed in a previous merge
	  with the trunk.
	* ../configure.ac: Remove Cray Catamount/CNL support.
	* ../configure: Regenerate.
	* ../config.sub: Remove Cray Catamount/CNL support.
	* config.gcc: Remove Cray Catamount/CNL support.
	* ../maintainer-scripts/gcc_release: Revert to trunk.
	* c-family/c-common.h: Define parse_optimize_options.  Its definition
	  was missed in a previous merge with the trunk.
	* dwarf2out.c: Revert a fix which removed the 'type_main_variant'
	  procedure.
	* dwarf2out.c: Revert a fix that added a check for VECTOR_TYPE
	  in addition to ARRAY_TYPE.
	* c-typeck.c: Remove an extra newline character.
	* varasm.c: Revert a fix that improved an error message
	  when TLS common data is unimplemented.
	* varasm.c: Revert a gcc_assert that had been added which
	  checked for a null DECL_SIZE_UNIT field.
	* emultls.c: Revert to trunk. Remove possible fix.
	* Makefile.in: Revert extra blank line that is present
	  in the trunk version.
	* Makefile.in: Revert a fix that handled long shell
	  argument lists for plugin headers.
	* config/ia64/ia64.opt: Revert an option setting
	  that increased the default TLS address range.
	* config/ia64/crtbegin.asm: Revert to trunk.
	  Removes an extra newline character.
	* ChangeLog.upc: Spell check.

2011-05-03  Gary Funck  <gary@intrepid.com>

	* c-family/c-common.c: Remove extraneous FIXME/TODO comments.
	  (c_apply_type_quals_to_decl): Ditto.
	* c-family/c-common.h: Ditto.
	* dojump.c: Ditto.
	* c-decl.c (merge_decls): Ditto.
	* c-typeck.c (qualify_type, default_conversion,
	  build_component_ref, build_unary_op,
	  c_build_qualified_type): Ditto.
	* gimplify.c (create_tmp_var_raw): Remove UPC-specific dead code.

2011-04-29  Gary Funck  <gary@intrepid.com>

	* c-decl.c (finish_decl): Improve error diagnostics.
	  (grokdeclarator): Ditto.
	* c-typeck.c (build_c_cast): Improve error diagnostics.
	  (convert_for_assignment): Ditto.
	  (build_binary_op): Ditto.
	* c-parser.c (c_parser_upc_forall_statement):
	  Improve error diagnostics.
	* convert.c (convert_to_integer):  Improve error diagnostics.

2011-04-24  Gary Funck  <gary@intrepid.com>

	* c-parser.c (c_parser_upc_sync_statement): Fix ICE that
	  occurred if there is an error in the barrier id
	  expression.  Map error_mark_node into NULL.

2011-04-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172873 into gupc branch.

2011-04-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172359 into gupc branch.

2011-04-14  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt: Add UPC as a valid language for various
	  switches where it is valid for "C", that were not updated
	  in previous merges with trunk.

2011-04-13  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt (fupc-pre-include): New option definition.
	* gcc.c (upc_options): Do not add "-include gcc-upc.h" if
	  -fno-upc-pre-include is asserted.

2011-04-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172158 into gupc branch.
	to bring in the following fix.

2011-04-05  Bernd Schmidt  <bernds@codesourcery.com>

	PR bootstrap/48403
	* haifa-sched.c (schedule_block): Increment cycle_issued_insns only
	if old and new states differ.

2011-04-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 171966 into gupc branch.

2011-04-01  Gary Funck  <gary@intrepid.com>

	* tree.h (tree_base): Move UPC flag bits into bit fields
	  located just before spare bits.  Decrement spare bits.
	  Rename 'shared_flag' -> 'upc_shared_flag',
	  'relaxed_flag' -> 'upc_relaxed_flag',
	  'strict_flag' -> 'upc_strict_flag, and adjust macros
	  that reference them accordingly.

2011-04-01  Gary Funck  <gary@intrepid.com>

	* c-decl.c (grokdeclarator): Fix formatting of
	  code that sets UPC block size on scalars.

2011-04-01  Gary Funck  <gary@intrepid.com>

	* c-decl.c (grokdeclarator): Revert use of white space
	  to match the trunk (to rationalize diffs).
	* c-typeck.c (convert_for_assignment): Ditto.
	* tree-ssa.c (useless_type_conversion_p): Ditto.

2011-03-23  Gary Funck  <gary@intrepid.com>

	* DEV-PHASE: bump to 4.7.0-1 to reflect recent creation of
	  the GCC 4.6 release branch.

2011-03-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 171202 into gupc branch.

2011-03-20  Gary Funck  <gary@intrepid.com>

	* varasm.c: Call error() directly with a format specifier,
	  rather than using sprintf() to format the message.
	  This should make it easier to internationalize UPC's error messages.

2011-03-20  Gary Funck  <gary@intrepid.com>

	* configure.ac: Fix the check for gnu ld when enabling
	  UPC link script support.
	  configure: Regenerate (also picks up changes from previous
	  merge with trunk).

2011-03-20  Gary Funck  <gary@intrepid.com>

	Move UPC start files, end files, and linker specs.
	into libupc.  This reduces the impact on common GCC
	configuration files, and ensures that these UPC-specific
	components are only built when the UPC language dialect is selected.
	* c-family/c.opt: Add -fupc-link switch, used to select UPC-specific
	  linker specs. Fix typo in -fupc-debug message.
	* config/upc-conf.h, config/darwin.h: Move defines for
	  UPC-related section begins/ends into libupc/config/default/
	  upc-crt-config.h.
	* config/darwin.h(LINK_COMMAND_SPEC_A): Add call outs to
	  UPC-related linker compiler specifications,
	  accessed via %:include().
	* configure.ac, configure: Remove logic related to building
	  	upc-crtbegin/end. Remove config. tests for numa and cpu
	  affinity (previously used by the 'upc' driver); these
	  settings are now propagated by target-specific compiler
	  specs. built by libupc.  Regenerate autoconf.
	* gcc.c (LINK_COMMAND_SPEC): Add call outs to UPC-related
	  linker compiler specifications, accessed via %:include().
	  Define 'upc_crtbegin_spec', 'upc_crtend_spec', and
	  'link_upc_spec'.
	* Makefile.in: Remove definition of UPC_CRTSTUFF_CFLAGS.
	* config/linux.h, config/i386/darwin.h, config/i386/linux64.h,
	  config/i386/linux.h, config/i386/t-darwin, config/i386/t-darwin64,
	  config/ia64/linux.h, config/mips/t-iris,
	  config/mips/iris6.h: Revert to trunk version 167307.
	libgcc/
	* configure, configure.ac, config.host, Makefile.in:
	  Revert to trunk version 167307.

2011-02-23  Gary Funck  <gary@intrepid.com>

	* c-decl.c (undeclared_variable): fix typo. Inadvertently
	removed negation on following 'if'.

2011-02-22  Gary Funck  <gary@intrepid.com>

	* c-decl.c (undeclared_variable): call upc_diagnose_deprecated_stmt
	to check for the usage of certain deprecated UPC keywords.
	* c-family/stub-upc.c (upc_diagnose_deprecated_stmt): New.
	* c-tree.h (undeclared_variable): Define prototype.

2011-02-12  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: (build_c_cast, convert_for_assignment)
	  Diagnose an attempt to convert from an integer to
	  a pointer-to-shared as an error.  Also, fix various
	  error messages so that they use the preferred term
	  pointer-to-shared instead of "shared pointer".

2011-02-07  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: (convert_for_assignment)
	  Fix typo. in error message.

2011-01-23  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: (c_build_qualified_type)
	  derive UPC block size by calling upc_get_block_size(),
	  to ensure that the element type of an array of an array
	  is derived correctly.

2010-12-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 168314 into gupc branch.

2010-12-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 167307 into gupc branch.

2010-10-19  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix typo in previous fix
	  which led to a mis-compare for equal block sizes.

2010-10-18  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix bug: Cast of (shared <type> * shared) not
	  diagnosed as an error
	  The conversion from any type (shared or not) to
	  a shared type is likely either meaningless or an error.  This update
	  makes any conversion to a shared type, an error.

2010-10-18  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix bug: passing int to shared pointer arg.
	  generates spurious warning
	  Add a #define procedure that does the same thing as
	  WARN_FOR_ASSIGNMENT but issues an error diagnostic instead.  Use
	  this procedure to diagnose passing an integer value to a
	  pointer-to-shared as an error.

2010-10-18  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix bug: shared [] in prototype silently ignored when
	  matching routine declaration.
	  When checking for type compatibility, shared qualified types must
	  have the same block factor.  This check was missing from
	  comptypes_internal().  This update adds the check for blocking
	  factor equality.

2010-10-17  Gary Funck  <gary@intrepid.com>

	* dwarf2out.c: Fix GCC Bug 45870 - note: non-delegitimized UNSPEC 5
	  found (-O1 -g)
	  See: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45870#c6

2010-10-17  Gary Funck  <gary@intrepid.com>

	* tree-cfg.c: Implement the fix for GCC Bugzilla Bug
	  45869 - [4.5/4.6 Regression] type mismatch in shift expression
	  produces ice with -O3 and -m32.
	  See: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45869

2010-10-17  Gary Funck  <gary@intrepid.com>

	* c-common.c: Diagnose the application of the various "*sizeof"
	  operations on generic pointer-to-shared as a compilation error.

2010-10-17  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix a segfault/ICE that occurred when printing an error
	  message regarding a function parameter being declared with a shared
	  qualifier.
	  The parameter's 'name' value is not defined at this point, and
	  cannot be used in the error message.  This update removes the
	  reference to 'name', and eliminates the segfault.

2010-10-16  Gary Funck  <gary@intrepid.com>

	* Makefile.in: Implement fixes for SGI/IRIX/MIPS port.
	  The gcc/Makefile.in rules for install-plugin had to be re-written to
	  break up a long list of header files that exceeded the command line
	  limitation imposed by Irix.
	  Access functions for TFmode types had to be implemented.
	  Apparently, this is the mode used for the SGI/MIPS port to represent
	  "long float".

2010-10-14  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix bug: Multiple equal blocking factors specified
	  via typedef chain should not be diagnosed as an error.
	  If the block size that is given by the typedef is equal to the block
	  size given explicitly in the variable declaration, then do not
	  complain.  The easiest way to make this check was to create a
	  temporary type that is a clone of the element type and then set its
	  block size using the given layout qualifier.  Then compare the block
	  size of the temporary (the declaration) to the block size specified
	  in the typedef.  This complexity is needed, because the '[*]' block
	  size needs to be calculated, and the '[]' needs to be mapped into a
	  zero block size.

2010-10-10  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix bug: ICE: two or more layout qualifiers
	  specified
	  The compiler properly detected the presence of two or more layout
	  qualifiers as an error, but then hit an assertion check, because the
	  code that followed the error expected to see a qualifier and not a
	  layout specifier.  The fix is simple: just return immediately after
	  detecting the error.

2010-10-10  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Improve error diagnostics for various cases of UPC
	  shared array type declarations.
	  Add the check for this error: "In the dynamic translation
	  environment, THREADS may not appear in declarations of shared arrays
	  with indefinite block size".  Also, fix up a few of the other
	  related error diagnostics.

2010-10-09  Gary Funck  <gary@intrepid.com>

	* c-common.c: Fix bug: segfault on incomplete array definition.
	  This turned out to be a bit complicated.   The logic in
	  upc_lang_layout_decl had to be re-arranged to avoid trying to lookup
	  the THREADS identifier in the case where the blocking factor has
	  been set to indefinite ([]).  This can happen when indefinite array
	  declarations are processed for shared arrays.  At that time, the
	  file scope has been closed and THREADS is no longer in scope.  Some
	  more work is needed on upc_lang_layout_decl().  It has some
	  duplication, and notably duplicates the two branches of the if
	  having to do with TYPE_SIZE and TYPE_SIZE_UNIT, that appear in the
	  caller of this routine (layout_decl()).
	  The method of forcing a layout qualifier of [] in the indefinite
	  declaration handler is odd a well.  The code that just does the
	  setting of the block factor, needs to moved into its own routine
	  that doesn't depend upon a declspec for '[]' to be passed in, just
	  in order to set the blocking factor to some value (in this case, 0).
	  Also, the logic for how that shared type is constructed is strange.
	  First the type with 0 blocking factor is set.  Then the shared
	  qualifier is removed from the type, and then added back later.  The
	  intermediate type has a blocking factor set, but it has no shared
	  qualifier.  Fixing this will require some thought.  It is tempting
	  just to make indefinite shared arrays an error, rather than forcing
	  the dimension to be '1'.
	  This likely fixes a serious error in the previous update to
	  upc_lang_layout_decl(), where it didn't have the logic to set
	  TYPE_SIZE_UNIT() in the main part of the 'if' statement.  This means
	  the previous update would fail on many tests.

2010-10-09  Gary Funck  <gary@intrepid.com>

	* varasm.c: Add an assertion check for the case that DECL_SIZE_UNIT
	  (decl) is null, which can happen if some layout error occurred
	  upstream.

2010-10-09  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix bug: file scope shared arrays mis-diagnosed as
	  "variable-sized" when compiled in dynamic threads.
	  This long-standing bug is easily fixed.  Just check
	  for the situation that the non-constant sized type is shared and
	  that it does not have a dimension that references a multiple of
	  threads.  If this criteria is met, then issue a meaningful
	  diagnostic.

2010-10-01  Gary Funck  <gary@intrepid.com>

	* configure, configure.ac: Update manual page, and bug reporting
	  URL.  Update "man" page to reflect debugging switches.
	  Also, some general clean up.  Change the bug reporting
	  URL to point to gccupc.org.

2010-09-27  Gary Funck  <gary@intrepid.com>

	* c-parser.c, config/upc-conf.h: Issue a descriptive message when
	  the UPC forall depth count variable is not found.
	  The __upc_forall_depth variable should be defined in gcc-upc-lib.h.
	  The compiler will generate code that references this variable in
	  order to implement nested upc_forall semantics.  If there is a
	  compiler build or install problem, this variable may not be found.
	  In this case, terminate with an internal_error().

2010-09-26  Gary Funck  <gary@intrepid.com>

	* c-parser.c: Fix Bug 240: upc_forall with empty clauses
	  mis-diagnosed as syntax error.
	  Fix a failure exhibited by the Berkeley test case,
	  bug873a.upc, which has the code:
	       double d;
	       upc_forall (;;;d) {...} The compiler did not properly handle
	  the empty "condition" clause, and did not recover well when it was
	  determined that the use of a double value, "d" above, was neither a
	  pointer-to-shared nor an integer expression.  The update implements a
	  fix for both issues.
	  See also: gcc/c-parser.c gcc/upc/upc-act.c

2010-09-23  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix Bug 29: Layout qualifier within a typedef is not
	  incorporated into the referencing type.
	  This was semi-fixed a few times before.  This update fixes a few
	  more places where the layout qualifier wasn't being propagated
	  through typedef's properly.  What made this a bit tricky is shown in
	  the example cited in the bug report:
	  typedef shared [5] int A_t; A_t A[5*THREADS];
	  In the typedef, the blocksize is being applied to a shared *scalar*,
	  and the code was applying the blocksize only to arrays.  This update
	  handles shared scalars correctly.

2010-09-22  Gary Funck  <gary@intrepid.com>

	* c-parser.c, c-tree.h, stub-upc.c: Fix Bug 403: Nested
	  upc_forall() semantics are not implemented
	  The checkforall test in the Berkeley harness test suite indicated
	  that GCC/UPC was not properly implementing nested upc_forall
	  semantics.  Nested upc_forall statements (both statically or
	  dynamically nested) must implement their affinity clause as if it
	  were "continue"; thus all steps in the loop must execute without
	  regard for affinity.  To implement these semantics a global depth
	  counter, __upc_forall_depth, is maintained by the generated code
	  that implements upc_forall.
	  See also: gcc/c-parser.c gcc/c-tree.h gcc/stub-upc.c
	  gcc/upc/upc-act.c gcc/upc/upc-act.h libupc/include/gcc-upc-lib.in
	  libupc/include/upc.h libupc/smp/upc_main.c

2010-09-19  Gary Funck  <gary@intrepid.com>

	* c-decl.c: c-decl.c: zero out the layout specifier, after
	  processing an array type.
	  Fix the previous fix, that moved the setting of the type's layout
	  qualifier to the outside of the array type processing loop.  What is
	  missing from the fix is that the layout_qualifier variable needs to
	  be cleared after setting the type's blocksize.

2010-09-19  Gary Funck  <gary@intrepid.com>

	* config/upc-conf.h: Fix Bug 375: error message is off-by-one when
	  given blocksize is greater than UPC_MAX_BLOCKSIZE.
	  The value we were using for UPC_MAX_BLOCK_SIZE was one bigger than
	  the actual maximum block size.  Therefore, the message was correct,
	  but the underlying value that was being checked was wrong.  Change
	  the values so that they agree with the actual implementation-defined
	  limit.

2010-09-11  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix Bug 402: ICE: '[*]' layout factor on
	  multi-dimensional shared array with dynamic threads.
	  This declaration caused an internal compiler error when compiled
	  with dynamic threads:
	      shared [*] int A[THREADS][16]; The bug was discovered when
	  compiling the RTED_UPC test suite.
	  The fix is to process layout qualifiers after the entire array type
	  has been built.  Otherwise, we try to calculate the blocksize on a
	  shared array type that has not had its "size depends upon the value
	  of THREADS" flag set.
	  Also, added a test case.
	  See also: libupc/testsuite/libupc.upc/intrepid/test18.upc

2010-07-11  Gary Funck  <gary@intrepid.com>

	Fix a bug where a statement in c_build_qualified_type()
	in the trunk had been inadvertently deleted.
	This bug showed up in the IA64 port, because jmpbuf's
	on that architecture must be 16 byte aligned, and they were not.
	c-typeck.c (c_build_qualified_type): Revive the deleted line.

2010-07-08  Gary Funck  <gary@intrepid.com>

	Make changes so that other language compilers
	will build and bootstrap.
	* c-family/c-common.c (compiling_upc, flag_upc,
	flag_upc_instrument, flag_upc_instrument_functions,
	use_upc_dwarf2_extensions): Move to stub-upc.c and
	upc-lang.c.
	* c-family/c-common.h (use_upc_dwarf2_extensions,
	compiling_upc): Add extern definitions - needed
	to compile/build other language front ends.
	* c-family/c.opt: Fix the spelling of ObjC.
	It had been incorrectly spelled as Objc.
	* c-family/c.opt: Add UPC for the various switches
	that are valid for both C and ObjC.
	* c-family/c-opts.c: Add CL_UPC to the list of
	supported options switches when compiling assembly
	language.
	* lto/lto-lang.c (use_upc_dwarf2_extensions,
	flag_upc_instrument, flag_upc_instrument_functions):
	Remove these definitions.  They have been moved
	to c-family/stub-upc.c.
	* upc/ChangeLog: Move relevant entries
	to ChangeLog.upc.
	* c-family/stub-upc.c (compiling_upc, flag_upc,
	flag_upc_instrument, flag_upc_instrument_functions,
	use_upc_dwarf2_extensions): Moved from c-common.c
	* upc/upc-lang.c (compiling_upc, flag_upc,
	flag_upc_instrument, flag_upc_instrument_functions,
	use_upc_dwarf2_extensions): Moved from c-common.c
	* objc/objc-act.c (objc_gimplify_expr): Add additional
	parameters to c_gimplify_expr() call, that are used
	by upc's tree rewrites.
	* cp/cp-gimplify.c (cp_gimplify_expr): Likewise.
	* gcc/cp/lex.c (init_reswords): If not compiling
	UPC, then mask off the UPC keywords.
	* cp/Make-lang.in (C_STUB_OBJS): Use this
	make macro to link with c-family/stub-objc.o
	and c-family/stub-upc.o.
	* fortran/Make-lang.in (C_STUB_OBJS): Likewise.
	* java/Make-lang.in (C_STUB_OBJS): Likewise.
	* objc/Make-lang.in: Link with c-family/stub-upc.o
	to avoid undefined references.
	c-parser.c: Fix line indentation.
	* libcpp/include/cpplib.h: Remove CL_UPC from
	the list of language kinds accepted by the
	C preprocessor.  This is not necessary because
	UPC is a derivative of C99, and does not need
	a different language kind.
	* c-family/c-opts.c (c_common_handle_option):
	Call set_std_c99() when processing the
	"--lang upc" switch, instead of setting the
	language kind to CL_UPC.
	* libupc/testsuite/libupc.upc/intrepid/ChangeLog: New.

2010-07-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 161517 into gupc branch.
	* gcc/stub-upc.c: Move to gcc/c-family/.
	* libupc/testsuite/libupc.upc/intrepid/test19.upc:
	Add 'unused' attributes to avoid "set, but
	not referenced" warnings.
	* libupc/testsuite/libupc.upc/intrepid/test18.upc:
	Likewise.

2010-03-01  Gary Funck  <gary@intrepid.com>

	Create gupc branch from trunk version 157149.

2011-10-04  Gary Funck  <gary@intrepid.com>

	Merge trunk version 179421 into gupc branch.
	* tree.c (build_opaque_vector_type): Add null UPC layout qualifier
	argument to the call to check_qualified_type().

2011-09-22  Gary Funck  <gary@intrepid.com>

	* tree-pretty-print.c (dump_generic_node): Print UPC type qualifier
	information.
	(dump_upc_type_quals): New.

2011-09-22  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_get_block_factor): test TYPE_HAS_BLOCK_FACTOR()
	before calling TYPE_BLOCK_FACTOR().  This fits better with
	recent encoding of block factor values with a hash table.

2011-09-15  Nenad Vukicevic  <nenad@intrepid.com>

	Add to FLAGS the flags needed to disable inlining of
	UPC run-time access routines.
	* testsuite/lib/target-supports.exp
	(add_options_for_upc_library_calls): New.

2011-09-15  Gary Funck  <gary@intrepid.com>

	Fix ICE involving shared bit field accesses.
	* tree.c (build3_stat): Propagate TEEE_SHARED()
	TREE_STRICT() and TREE_RELAXED() flags, if applicable.

2011-09-15  Gary Funck  <gary@intrepid.com>

	Fix ICE involving shared bit field accesses.
	* upc/upc-genericize.c (upc_simplify_shared_ref): Improve
	"shared bit fields not yet implemented" error message
	by adding file/line number location.

2011-09-13  Gary Funck  <gary@intrepid.com>

	Merge trunk version 178795 into gupc branch.
	Incorporates fix to PR bootstrap/50010 for x86-32.

2011-09-13  Gary Funck  <gary@intrepid.com>

	* upc/upc-tree.def (UPC_FORALL_STMT): Fix spelling error in comments.
	* upc/upc-lang.c (upc_init_options): Ditto.
	* upc/upc-genericize.c (lookup_unshared_var, upc_shared_addr_rep,
	upc_genericize_expr, upc_genericize_compound_expr): Ditto.
	* upc/upc-act.c (upc_parse_init, upc_build_pointer_type,
	upc_block_factor_insert, upc_pts_is_valid_p): Ditto.

2011-09-08  Gary Funck  <gary@intrepid.com>

	Merge trunk version 178557 into gupc branch.

2011-09-07  Gary Funck  <gary@intrepid.com>

	Ensure that UPC pointer-to-shared type alignment is
	propagated to the final type.  Revert to long-standing
	alignment policy: twice the size of a "C" pointer.
	* tree.c (build_pointer_type): Propagate the alignment
	of the UPC pointer-to-shared representation type
	into the newly built pointer type.

2011-09-07  Gary Funck  <gary@intrepid.com>

	Ensure that UPC pointer-to-shared type alignment is
	propagated to the final type.  Revert to long-standing
	alignment policy: twice the size of a "C" pointer.
	* upc/upc-pts-struct.c (upc_pts_struct_init_type): Ensure that
	shared pointers have twice the alignment of a pointer.
	* upc/upc-act.c (upc_cpp_builtins): Unconditionally emit
	the definition of __UPC_PTS_ALIGN__.

2011-09-02  Gary Funck  <gary@intrepid.com>

	Align UPC pointers-to-shared, only if the target enforces
	strict alignment.
	* upc/upc-pts-struct.c (upc_pts_struct_init_type): Align a
	UPC pointer-to-shared type, only if the target requires
	strict alignment.
	* upc/upc-act.c (upc_cpp_builtins): Output pre-defined macro,
	__UPC_PTS_ALIGN__, only if the target requires strict alignment.

2011-08-30  Gary Funck  <gary@intrepid.com>

	* tree.h (check_qualified_type): Change 'const_tree'
	argument types back to 'tree' to avoid complaints
	of assignment drops qualifiers for invocations of the
	newly implemented TYPE_BLOCK_FACTOR() macro, which
	invokes hash functions with 'tree' pointer values that
	are not const qualified.
	* tree.c (check_qualified_type, check_aligned_type): Ditto.
	* c-typeck.c (comptypes_internal): Ditto.

2011-08-29  Gary Funck  <gary@intrepid.com>

	Fixes for regressions noted running "make check"
	versus GCC trunk.
	* fold-const.c (fold_unary_loc): Execute UPC-specific
	checks for a cast-of-a-cast, only if one of the
	operands is a UPC pointer-to-shared value.
	* opts.c (print_specific_help):  Fix a comparison
	in an assert that checks that there are enough
	bits reserved for the number of languages defined
	in the .opt files.

2011-08-29  Gary Funck  <gary@intrepid.com>

	Implement a hash table to record UPC block factors.
	* c-family/stub-upc.c (upc_block_factor_insert,
	upc_block_factor_lookup): New dummy stub procedures.
	* c-family/c-common.c (c_sizeof_or_alignof_type):
	Rename UPC_TYPE_HAS_THREADS_FACTOR() to TYPE_HAS_THREADS_FACTOR().
	* tree.c (copy_node_stat): call SET_TYPE_BLOCK_FACTOR()
	to copy (hashed) UPC blocking factor.
	(set_type_quals): Likewise.
	* tree.h: Rename UPC_TYPE_HAS_THREADS_FACTOR() to
	TYPE_HAS_THREADS_FACTOR().
	(type_common.block_factor): Delete.
	(TYPE_HAS_BLOCK_FACTOR_0, TYPE_HAS_BLOCK_FACTOR_X,
	TYPE_HAS_BLOCK_FACTOR, SET_TYPE_BLOCK_FACTOR): New.
	(TYPE_BLOCK_FACTOR): Re-implement, using hash table for
	UPC blocking factors greater than one.
	* dwarf2out.c (modified_type_die): Re-implement
	logic that records UPC blocking factor in the generated
	DWARF2 debugging information.
	(add_subscript_info): Rename UPC_TYPE_HAS_THREADS_FACTOR() to
	TYPE_HAS_THREADS_FACTOR().
	* c-decl.c (finish_decl, grokdeclarator):
	Rename UPC_TYPE_HAS_THREADS_FACTOR() to TYPE_HAS_THREADS_FACTOR().
	* print-tree.c (print_node): Check for TYPE_LANG_FLAG_* flags
	used by UPC, and print UPC-specific information.

2011-08-29  Gary Funck  <gary@intrepid.com>

	Implement a hash table to record UPC block factors.
	* upc/upc-act.c (upc_block_factor_for_type): New garbage-collected
	hash table.
	(upc_lang_init, upc_finish): Move to end of source file.
	(upc_lang_init): create  upc_block_factor_for_type hash table.
	(upc_block_factor_lookup, upc_block_factor_insert): New.
	(upc_grok_layout_qualifier, upc_lang_layout_decl, upc_pts_int_sum):
	Rename UPC_TYPE_HAS_THREADS_FACTOR() to TYPE_HAS_THREADS_FACTOR().
	(upc_grok_layout_qualifier): convert blocking factor to sizetype
	before checking for equality to element type's blocking factor.

2011-08-28  Gary Funck  <gary@intrepid.com>

	Re-work the type machinery to fully support and to unify support
	for the UPC layout qualifier (blocking factor).
	* c-family/stub-upc.c (upc_set_block_factor): Delete.
	  (upc_grok_layout_qualifier): rename from upc_apply_layout_qualifier()
	  and update prototype.
	* c-family/c-common.c (complete_array_type): call newly
	  defined c_build_qualified_type_1() instead of
	  upc_set_block_factor().
	* c-family/c-upc.h (pc_grok_layout_qualifier): rename from
	  upc_apply_layout_qualifier() and update prototype.
	  (upc_set_block_factor): Delete prototype.
	* c-family/c-common.h (c_build_qualified_type): redefine
	  as a pre-processor macro that invokes c_build_qualified_type_1()
	  with a null UPC layout qualifier.
	  (c_build_qualified_type_1): New.  Add layout qualifier argument
	  to old c_build_qualified_type() prototype.
	* tree.c (set_type_quals, check_qualified_type):
	  Add layout qualifier as argument.
	  (check_aligned_type): Add check for UPC block factor equality.
	  (get_qualified_type_1): Rename from get_qualified_type() and
	  add layout qualifier as argument.
	  (build_qualified_type_1): Rename from build_qualified_type() and
	  add layout qualifier as argument.
	* tree.h (check_qualified_type): Add layout qualifier as argument
	  to the prototype.
	  (get_qualified_type): Re-define as a as a pre-processor macro
	  that invokes get_qualified_type_1() with a null
	  UPC layout qualifier.
	  (get_qualified_type_1): Rename from get_qualified_type() and
	  add layout qualifier as argument.
	* cp/tree.c (c_build_qualified_type_1): Rename from
	  c_build_qualified_type() and add (unused) layout qualifier
	  argument.
	* c-decl.c (finish_decl): re-format long error messages.
	  (grokdeclarator): Re-work the logic so that it calls
	  upc_grok_layout_qualifier() to handle the UPC layout
	  qualifier, if present.
	* c-typeck.c (qualify_type, common_pointer_type,
	  build_component_ref): Re-work the logic so that it calls
	  upc_grok_layout_qualifier() to handle the UPC layout qualifier,
	  if present.
	  (c_build_qualified_type_1): Rename from c_build_qualified_type()
	  and add layout qualifier argument.
	* print_tree.c (print_node): Re-format a long line.

2011-08-28  Gary Funck  <gary@intrepid.com>

	Re-work the type machinery to fully support and to unify support
	for the UPC layout qualifier (blocking factor).
	* upc/upc-genericize.c (upc_simplify_shared_ref): Call
	c_build_qualified_type_1() instead of upc_set_block_factor()
	to assert a zero blocking factor.
	* upc/upc-pts-struct.c (upc_pts_struct_init_type): Call
	c_build_qualified_type_1() to build predefined shared
	qualified types, instead of build_variant_type_copy().
	* upc/upc-pts-packed.c (upc_pts_packed_init_type): Call
	c_build_qualified_type_1() to build predefined shared
	qualified types, instead of build_variant_type_copy().
	* upc/upc-act.c (upc_set_block_factor): Delete.
	(upc_grok_layout_qualifier): Rename from upc_apply_layout_qualifier().
	Rework logic so that it returns a blocking factor rather than
	a qualified type.  Add 'loc' argument and call error_at().
	Add an ELEM_BLOCK_FACTOR argument and Implement logic that merges
	the block size of the element type into the result type, and checks
	for errors due to an attempt to merge differing blocking factors.

2011-08-26  Gary Funck  <gary@intrepid.com>

	Merge trunk version 177949 into gupc branch.
	* c-family/c-common.h (enum rid): Bump the number of type modifiers
	  in the comment.
	* ../libcpp/init.c (struct lang_flags): Adjust the entry for UPC
	  to add new rliterals column value.

2011-08-26  Gary Funck  <gary@intrepid.com>

	* convert.c (convert_to_integer): Fix the check for the
	  difference between two UPC pointers-to-shared values.

2011-08-23  Nenad Vukicevic  <nenad@intrepid.com>

	* configure.ac: Fix the name for --with-upc-pts-packed-bits
	  option. Support --with-upc-packed-bits as deprecated. Fix the code to
	  correctly check packed bits.
	* configure: Re-generate.

2011-08-16  Gary Funck  <gary@intrepid.com>

	* c-parser.c (c_parser_upc_sync_statement): issue error diagnostic if
	  the barrier id expression is not an integer expression.

2011-08-16  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_decl_init): Do not attempt to expand
	  an error mark node.  Fixes ICE after error diagnostic.
	* upc/upc-cmd.c (main): detect missing option argument for
	  options that require an argument, and print error diagnostic.
	  (get_print_cmd): Re-direct error output to /dev/null to
	  avoid issuing duplicate error messages.

2011-08-12  Gary Funck  <gary@intrepid.com>

	* config/i386/i386.h (MAX_FIXED_MODE_SIZE): Delete
	  (revert to trunk).
	* upc/upc-pts-struct.c (upc_pts_struct_init_type):
	  Set mode of UPC pointer-to-shared rep. to an
	  integral mode of size at least as large as the
	  size of the representation's struct type.

2011-08-12  Gary Funck  <gary@intrepid.com>

	Rework/simplify the UPC genericize pass.
	* c-family/stub-upc.c (upc_apply_layout_qualifier,
	  upc_build_pointer_type): New.
	  (upc_set_block_factor): Adjust to new calling sequence.
	  (upc_build_shared_var_addr): Delete.
	* c-family/c-common.c (complete_array_type): Adjust call
	  to upc_set_block_factor().
	* c-family/c-upc.h (upc_apply_layout_qualifier,
	  upc_build_pointer_type): New.
	  (upc_build_shared_var_addr): Delete.
	  (upc_set_block_factor): Adjust to new calling sequence.
	* tree.h (TI_UPC_CHAR_PTS_TYPE, upc_char_pts_type_node): New.
	* c-decl.c (grokdeclarator): Call newly defined
	  upc_apply_layout_qualifier() instead of upc_set_block_factor().
	* c-decl.c (grokdeclarator): Split long UPC-related error
	  messages into two lines.
	* c-typeck.c (build_unary_op): Do not call upc_build_shared_var_addr()
	  directly.  Revert that change to trunk. (upc_genericize() will
	  handle lowering the expressions that take the address of a
	  UPC variable).
	* config/i386/i386.c (ix86_promote_function_mode): For UPC
	  pointers-to-shared, return the type mode of the UPC pointer-to-shared
	  representation type.

2011-08-12  Gary Funck  <gary@intrepid.com>

	Rework/simplify the UPC genericize pass.
	* upc/upc-pts.h (upc_pts_ops_t): Remove 'add_offset' field.
	* upc/upc-act.h: Cosmetic change.
	* upc/config-lang.in (gtypes): Add upc-genericize.[ch] to the list.
	* upc/upc-genericize.c (upc_expand_get):
	  Add WANT_STABLE_VALUE parameter.
	  (upc_build_shared_var_addr, upc_shared_addr_rep): New.
	  (uid_tree_map, unshared_vars, uid_tree_map_hash, uid_tree_map_eq,
	  create_unshared_var, lookup_unshared_var, map_unshared_var,
	  unshared_var_addr, unshared_var_name,
	  upc_free_unshared_var_table): Move from upc-act.c.
	  (upc_expand_get, upc_expand_put): Change their source and/or
	  destination parameters so that they are no longer addresses
	  of the objects, but rather references to the objects themselves.
	  (upc_simplify_shared_ref): Rewrite (simplify/generalize).
	  (upc_shared_addr_rep): New.
	  (upc_shared_addr):  Adjust call to upc_build_shared_var_addr(),
	  and re-factor the logic.
	  (upc_genericize_sync_stmt): Re-format comment.
	  (upc_genericize_shared_var_ref): Adjust call to upc_expand_get().
	  (upc_genericize_addr_expr): Re-factor the logic.
	  (upc_genericize_indirect_ref, upc_genericize_field_ref):
	  Adjust call to upc_expand_get() and re-factor the logic.
	  (upc_genericize_modify_expr): Adjust call to upc_expand_put()
	  and re-factor the logic.
	  (upc_genericize_expr): Improve/fix comments.
	  (upc_genericize_finish, upc_genericize_init): New.
	* upc/upc-pts-struct.c (upc_pts_struct_build_add_offset): Delete.
	  (upc_char_pts_type_node): Create new global type node.
	  (upc_pts_struct_is_null_p): Generalize variable names to
	  reflect the fact that the vaddr field can be either first/last.
	  (upc_pts_struct_build_sum): Make corrections to comments.
	  (upc_pts_struct_build_add_offset): Delete.
	* upc/upc-genericize.h (upc_genericize_finish, upc_genericize_init):
	  New prototypes.
	* upc/upc-pts-packed.c (upc_pts_packed_build_add_offset): Delete.
	  (upc_char_pts_type_node): Create new global type node.
	* upc/Make-lang.in: Add dependencies to gtype-upc.h
	  and gt-upc-upc-genericize.h.
	* upc/upc-act.c: Adjust includes to reflect moving the functions
	  that handle the UPC unshared "shadow variables" into
	  upc-genericize.c.  Improve/fix various comments.
	* upc/upc-act.c (upc_parse_init): Call upc_genericize_init().
	  (upc_build_pointer_type): New.
	  (upc_set_block_factor): Re-purpose.  Move the front-end
	  related error checks into upc_apply_layout_qualifier().
	  (upc_apply_layout_qualifier): New.
	  (upc_write_global_declarations): Call upc_genericize_finish().

2011-08-10  Gary Funck  <gary@intrepid.com>

	Implement additional fixes for recent merge with trunk.
	* explow.c (promote_mode): Do not attempt to promote
	  the mode for UPC pointer-to-shared types.
	* config/i386/i386.c (function_value_64): Ditto.

2011-08-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 177548 into gupc branch.
	* config/i386/i386.c (ix86_promote_function_mode):
	  Do not promote UPC pointers-to-shared to Pmode.
	* c-family/c-common.c (pointer_int_sum):
	  Also check the pointer operand, rather than just
	  its type, when making the decision to derive
	  the equivalent unshared type.
	* tree.c (build2_stat): If the type of the result
	  passed in as an argument is a UPC shared type,
	  derive the unshared equivalent when calculating
	  the result type of the node.

2011-07-15  Nenad Vukicevic  <nenad@intrepid.com>

	* config/darwin.c: Disable var_tracking option
	  on -O0 as it is supposed to run only when optimization
	  is applied. See GCC bug 49743.

2011-07-11  Gary Funck  <gary@intrepid.com>

	* upc/upc-genericize.c (upc_expand_put): Fix bug, where strict/relaxed
	qualification was incorrectly derived from the source operand.
	(upc_genericize_fndecl): New.
	(upc_genericize): Call upc_genericize_fndecl() to avoid calling
	c_genericize() more than once in the event of nested procedures.
	(upc_genericize_real_imag_ref): Rename,
	was: upc_genericize_real_image_ref.
	(upc_expand_put): call internal_error() with meaningful message
	in lieu of abort().
	(upc_genericize_real_imag_ref): call internal_error() with
	meaningful message in lieu of gcc_unreachable().

2011-07-06  Gary Funck  <gary@intrepid.com>

	Re-implement the pass that lowers trees generated by
	the UPC front-end into GENERIC.  Previously this was
	done within the gimplification framework, but this
	required that gimplification be run before inlining
	and various other passes, which did not fit in well
	with the current design of the middle-end passes.
	Now, the lowering is done by a newly defined language
	specific genericize hook.  With this change, we are
	are able to undo some extensions made to the gimplify
	logic, and thus can revert several files to trunk.
	* c-decl.c: Add a check for UPC deprecated names which
	  may appear as undefined function names.
	* libfuncs.h (LTI_upc_barrier, LTI_upc_notify, LTI_upc_wait,
	  LTI_upc_getaddr): Remove definitions of unused UPC
	  library function names.  These were defined back when
	  the libfunc interface was used to call these routines.
	* timevar.def (TV_TREE_UPC_GENERICIZE): New. Track time spent
	  in UPC lowering (genericize) pass.
	* langhooks.h (gimplify_expr): Revert to trunk's definition.
	  (instrument_func): Delete this hook.  Now handled in
	  upc_genericize().
	* tree-pass.h: Revert to trunk.
	* c-typeck.c (build_unary_op): Adjust reference to
	  upc_genericize() in a comment.
	* gimplify.c (create_tmp_var_raw): Delete logic that
	  was converting UPC shared types into unshared types
	  to be used for temporaries.  Now handled in  upc_genericize().
	  Replace with an assertion check.
	  (prepare_gimple_addressable): Revert to trunk's definition.
	  No longer needed as an externally called function.
	  (flag_instrument_functions_exclude_p): Re-define as
	  an externally called function.
	  (gimplify_function_tree): Delete code that implemented
	  call to UPC's language specific function instrumentation hook.
	* gimple.h (flag_instrument_functions_exclude_p): Define as extern.
	  (prepare_gimple_addressable): Delete extern definition;
	  revert to trunk's definition.
	* lnaghooks-def.h (lhd_gimplify_expr): Revert to trunk's definition.
	  (LANG_HOOKS_INSTRUMENT_FUNC): Remove, no longer needed for UPC.
	* c-family/c-gimplify.c: Revert to trunk.
	* cp/cp-gimplify.c: Revert to trunk.
	* cp/cp-tree.h: Revert to trunk.
	* explow.c: Revert to trunk.
	* langhooks.c: Revert to trunk.
	* libfuncs.h: Revert to trunk.
	* objc/objc-act.c: Revert to trunk.

2011-07-06  Gary Funck  <gary@intrepid.com>

	Improve/simplify the logic in upc_genericize.
	* upc/upc-genericize.c (upc_create_tmp_var): Delete the
	  PREFIX argument.  Aways use "UPC" as the prefix.
	  (upc_genericize_compound_expr): Add a WANT_VALUE argument.
	  (upc_genericize_cond_expr): New.
	  (upc_genericize_decl_expr): New.
	  (upc_genericize_stmt): New.
	  (upc_copy_value_to_tmp_var, upc_expand_get): Adjust call
	  to upc_create_tmp_var().
	  (upc_genericize_expr): Change the handling
	  of the want_value flag passed in the DATA argument.
	  Always assert this flag after processing EXPR_P.
	  (upc_genericize_compound_expr): Adjust call
	  to upc_genericize_compound_expr() and call
	  upc_genericize_cond_expr() and upc_genericize_decl_expr().

2011-07-06  Gary Funck  <gary@intrepid.com>

	Re-implement the pass that lowers trees generated by
	the UPC front-end into GENERIC.  Previously this was
	done within the gimplification framework, but this
	required that gimplification be run before inlining
	and various other passes, which did not fit in well
	with the current design of the middle-end passes.
	Now, the lowering is done by a newly defined language
	specific genericize hook.  With this change, we are
	are able to undo some extensions made to the gimplify
	logic, and thus can revert several files to trunk.
	* upc/upc-genericize.c: Rename upc-gimplify.c to upc-genericize.c.
	* upc/upc-genericize.h: Rename upc-gimplify.h to upc-genericize.h.
	* upc/Make-lang.in: Adjust to refer to upc-genericize.[cho].
	* upc/upc-lnag.c: refer to upc-genericize.h.
	  (LANG_HOOKS_GENERICIZE): define as upc_genericize.
	  (LANG_HOOKS_GIMPLIFY_EXPR): Delete.
	  (LANG_HOOKS_INSTRUMENT_FUNC): Delete.
	* upc/upc-act.c: Minor code format fix.

2011-06-30  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt: Bring options definitions up-to-date
	with respect to changes made in the trunk.

2011-06-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 175584 into gupc branch.

2011-06-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 175584 into gupc branch.
	* upc/upc-act.c (upc_handle_option): Change reference to
	have_named_sections so that it refers to the
	targetm_common structure.

2011-06-28  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.h (upc_write_init_func, upc_free_unshared_var_table):
	Remove extern definitions. Now declared as 'static'.
	* upc/upc-gimplify.c, upc/upc-lang.c,
	upc-pts-struct.c, upc-gasp.c, upc-pts-packed.c,
	upc-cmd.c, upc-act.c: Improve/add comments, fix
	typos and spelling errors.

2011-06-13  Gary Funck  <gary@intrepid.com>

	libcpp/
	* include/cpplib.h (enum c_lang):
	Move the entry for CLK_UPC so that it follows CLK_STDC1X.
	This keeps all the "C" variants together.
	* init.c (lang_defaults): Add an entry for UPC.

2011-06-10  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_set_block_factor): Handle the case where
	the UPC blocking factor expression overflowed.

2011-06-09  Gary Funck  <gary@intrepid.com>

	* c-parser.c (upc_localsizeof_type): Fix an ICE when compiling for
	a 32-bit target, the size expression overflowed, the result was
	error_mark_node, and an ICE was triggered on an attempt to evaluate
	C_TYPE_VARIABLE_SIZE() on the error node.
	(upc_blocksizeof_expr, upc_blocksizeof_type,
	upc_elemsizeof_expr, upc_elemsizeof_type, upc_localsizeof_expr):
	Make similar changes to avoid further processing of error_mark_node.

2011-06-07  Gary Funck  <gary@intrepid.com>

	* sel-sched.c (move_op): Incorporate the following
	patch to eliminate ICE at -O3 on IA64/Altix.

2011-06-07  Alexander Monakov  <amonakov@ispras.ru>

	* sel-sched.c (move_op): Use correct type for 'res'.  Verify that
	code_motion_path_driver returned 0 or 1.
	(sel_region_finish): Clear h_d_i_d.

2011-06-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 174558 into gupc branch.

2011-06-02  Gary Funck  <gary@intrepid.com>

	Merge trunk version 174558 into gupc branch.
	* upc/upc-lang.c (upc_check_decl_init): Use recently defined
	'append_to_statement_list_force' function to add UPC
	initialization statements to the UPC initialization
	statement list ('upc_init_stmt_list').
	(upc_build_init_func): Use recently defined
	'append_to_statement_list_force' function to add
	statements listed in 'upc_init_stmt_list' onto the
	function body constructed to implement initialization
	of UPC declarations that require active initialization
	at program start up.  The previous methods of manipulating
	statement lists no longer worked, due to changes in the
	the statement list structure.

2011-05-30  Gary Funck  <gary@intrepid.com>

	* configure.ac: Make the default order of the virtual
	  address field in a UPC pointer-to-shared to be "first".
	  This reverts to the previous setting, and is a short term
	  measure to work around a bug found on the IA64,
	  where vaddr=last led to incorrect code generation.
	  Rename UPC_PTS_VADDR_FIRST to HAVE_UPC_PTS_VADDR_FIRST
	  in AC_DEFINE(), to agree with recent changes in files
	  that reference this define.
	  configure, config.in: Regenerate.

2011-05-26  Gary Funck  <gary@intrepid.com>

	* configure.ac: Fix typo when referring to $upc_vaddr_order.
	  configure: Regenerate.
	* ../fixincludes/fixincl.x: Revert to trunk.
	  This file is auto-generated, and should not be merged.

2011-05-23  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts-struct.c: Revert to code that aligned the
	  internal pointer-to-shared representation to
	  twice the alignment of a pointer.  This fixes
	  an ICE that occurred when building the compiler
	  on an IA64 target.

2011-05-18  Gary Funck  <gary@intrepid.com>

	Merge trunk version 173845 into gupc branch.

2011-05-17  Gary Funck  <gary@intrepid.com>

	* c-family/stub-upc.c (upc_rts_forall_depth_var): New.
	  c-family/c-upc.h (upc_rts_forall_depth_var): Define.
	* c-family/c-pragma.c: Remove conditional compilation
	  with HANDLE_PRAGMA_UPC and HANDLE_PRAGMA_PUPC.
	  Test 'compiling_upc' when compiling to determine if
	  the "upc" and "pupc" pragmas should be registered.
	* defaults.h (UPC_SHARED_SECTION_NAME, UPC_SHARED_BEGIN_NAME,
	  UPC_SHARED_END_NAME, UPC_PGM_INFO_SECTION_NAME,
	  UPC_PGM_INFO_BEGIN_NAME, UPC_PGM_INFO_END_NAME,
	  UPC_INIT_SECTION_NAME, UPC_INIT_BEGIN_NAME,
	  UPC_INIT_END_NAME, UPC_INIT_ARRAY_SECTION_NAME,
	  UPC_INIT_ARRAY_BEGIN_NAME, UPC_INIT_ARRAY_END_NAME): New.
	  Move these target-dependent definitions from config/upc-conf.h
	  to here.
	* configure.ac: Improve the logic for UPC-related options.
	  Delete references to pre-processor definitions that have
	  been moved to "upc/upc-pts.h".
	* configure, config.in: Regenerate.
	* Makefile.in (UPC_PTS_REP): Remove definition and revert
	  to trunk.  This substitution variable was used to
	  configure the representation-specific versions of
	  the tree rewrites that operate on UPC pointer-to-shared
	  types and objects.
	* c-parser.c (c_parser_upc_forall_statement): Remove
	  reference to UPC_FORALL_DEPTH_NAME, and call
	  newly defined upc_rts_forall_depth_var() instead.
	* config/upc-config.h: Delete. Various definitions
	  moved to "upc/upc-rts-names.h", "defaults.h", and
	  "upc/upc-pts.h".
	* doc/tm.texi.in (HAVE_UPC_PTS_VADDR_FIRST,
	  HAVE_UPC_PTS_PACKED_REP, HAVE_UPC_PTS_STRUCT_REP,
	  UPC_SHARED_SECTION_NAME, UPC_SHARED_BEGIN_NAME,
	  UPC_SHARED_END_NAME, UPC_PGM_INFO_SECTION_NAME,
	  UPC_PGM_INFO_BEGIN_NAME, UPC_PGM_INFO_END_NAME,
	  UPC_INIT_SECTION_NAME, UPC_INIT_BEGIN_NAME,
	  UPC_INIT_END_NAME, UPC_INIT_ARRAY_SECTION_NAME,
	  UPC_INIT_ARRAY_BEGIN_NAME, UPC_INIT_ARRAY_END_NAME):
	  New.  Document UPC target macros.
	  doc/tm.texi: Regenerate.

2011-05-17  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts.h (upc_pts_build_value, upc_pts_build_add_offset,
	  upc_pts_build_cond_expr, upc_pts_build_constant,
	  upc_pts_build_cvt, upc_pts_build_diff, upc_pts_build_sum,
	  upc_pts_build_threadof, upc_pts_init_type): Remove extern
	  definitions.
	  (upc_pts_ops_t): New. Define handler table that will
	  implement either the 'packed' or the 'struct' representation
	  of a UPC pointer-to-shared value.
	  (upc_pts_packed_ops, upc_pts_struct_ops): New. Define extern that
	  refers to the packed and the struct UPC pointer-to-shared
	  representation implementation.
	  (upc_pts): New. Define handler table that is set up at initialization
	  to refer to the handlers for the UPC pointer-to-shared
	  representation (packed/struct) that has been configured.
	  Add conditional compilation test for HAVE_UPC_PTS_PACKED_REP
	  and configure the UPC pointer-to-shared definitions that
	  are specific to the configured UPC pointer-to-shared
	  representation.
	* upc/upc-act.h (upc_pts_is_valid_p): Rename extern definition from
	  is_valid_pts_p to upc_pts_is_valid_p.
	* lang-specs.h: Reformat the UPC compilation specs.
	  to improve readability.
	* upc/upc-rts-names.h: New. Define the names of UPC runtime
	  library functions that implement UPC language statement
	  semantics.  These definitions were moved from config/upc-conf.h
	* upc/upc-gimplify.c: Add include of "upc-rts-names.h".
	  Refer to newly defined pointer manipulation routines
	  by indirecting through the newly defined "pts" handler table.
	  Re-format, re-indent.
	* upc/upc-lang.c: Add include of "upc-pts.h".  Fix a comment.
	* upc/config-lang.in: Remove logic that inserted "config/upc-conf.h"
	  into the target include and file path.
	* upc/upc-pts-struct.c: Add include of "upc-rts-names.h".
	  (upc_pts_struct_ops): Define the pointer manipulation
	  handler table that implements operations on UPC
	  pointers-to-shared, represented as a struct.
	  Re-format and re-indent.
	* upc/upc-gasp.c: Add include of "upc-rts-names.h".
	  Re-format and re-indent.
	* upc/upc-pts-packed.c: Add include of "upc-rts-names.h".
	  (upc_pts_packed_ops): Define the pointer manipulation
	  handler table that implements operations on UPC
	  pointers-to-shared, represented as a packed integer.
	  Re-format and re-indent.
	* upc/Make-lang.in: Compile both "upc-pts-packed.c" and
	  "upc-pts-struct.c".  One/other will be selected at
	  compilation time to implement operations on UPC
	  on the UPC pointer-to-shared that has been configured.
	  Add dependencies on "upc-rts-names.h".
	* upc/upc-cmd.c: Re-format and re-indent.
	* upc/upc-act.c: Add include of "upc-rts-names.h".
	  (upc_pts): New. Add definition of the handler
	  table that implements representation specific
	  operations on trees that refer to UPC pointer-to-shared
	  objects and types.  Re-format and re-indent.

2011-05-07  Gary Funck  <gary@intrepid.com>

	* ../configure.ac: Disable build of libupc
	  on non POSIX hosted systems.  Use AS_HELP_STRING
	  to define messages.  Remove 'word-pair' as a
	  possible --with-upc-pts UPC pointer-to-shared
	  representation.
	* ../configure: Regenerate.
	* configure.ac: Use AS_HELP_STRING to define messages.
	  Remove 'word-pair' as a possible --with-upc-pts
	  UPC pointer-to-shared representation.
	  (UPC_MAX_THREADS): Limit the maximum value to 2^31-1.
	  (UPC_MAX_BLOCK_SIZE): Correct the default value.
	* configure: Regenerate.
	* config.in: Regenerate. Delete UPC_PTS_WORD_PAIR_REP
	  definition.
	* ChangeLog.upc: Fix some typos.

2011-05-07  Gary Funck  <gary@intrepid.com>

	* ../maintainer-scripts/gcc_release: Add "upc"
	  as one of the released languages.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Eliminate compilation warnings, by fixing
	#include's and updating function prototypes.
	* c-family/c-cppbuiltin.c: Include c-upc.h.
	* optabs.c (gen_libfunc): Change type of 'suffix'
	  parameter to conform with prototype.
	* cp/cp-gimplify.c (cp_gimplify_expr): Add extra parameters
	  ('gimple_test_f' and 'fallback') used by extended gimplify_expr
	  hook used by UPC.
	* cp/cp-tree.h (cp_gimplify_expr): Add extra parameters to
	  the prototype.
	* objc/objc-act.c (objc_gimplify_expr): Pass extra dummy
	  argument values to cp_gimplify_expr.
	* config.in (HAVE_UPC_AFFINITY_SUPPORT,
	  HAVE_UPC_NUMA_SUPPORT): Regenerate.  Remove
	  pre-processor definitions that are no longer
	  needed to build the 'upc' command (upc-cmd.c)
	  because the linker specs. defined in libupc
	  take care of linking in the needed libraries.
	* c-parser.c (c_parser_upc_forall_statement):
	  initialize affinity_loc to avoid "maybe unused" warning.
	  (c_parser_upc_sync_statement): Remove un-needed
	  'ret' variable.  Cast return value from
	  'upc_build_sync_stmt' to 'void' to avoid
	  compile-time warning.
	* config/upc-conf.h (UPC_MAX_THREADS): Define as an
	  integer constant, not a string.  Range is restricted
	  to maximum positive 32-bit integer (2+ billion) to
	  fit in with the use of 'int' in the front-end's
	  switch handling logic.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Upgrade c-family source files to conform with modularity
	improvements.  Mainly, remove #include of c-tree.h in files
	under c-family, and define a new UPC-specific #include file,
	c-upc.h, and use it.
	* c-family/stub-upc.c: Remove #include of c-tree.h and
	  upc/upc-act.h.  Replace with #include of c-common.h
	  and c-upc.h.
	  (upc_get_unshared_type, upc_pts_cvt_op_p, upc_blocksizeof_expr,
	  upc_blocksizeof_type, upc_elemsizeof_expr, upc_elemsizeof_type,
	  upc_localsizeof_expr, upc_localsizeof_type,
	  upc_shared_type_p): Delete.
	* c-family/c-opts.c: Add #include of c-upc.h
	* c-family/c-common.c: Remove #include of c-tree.h and
	  add #include of c-upc.h.
	* c-family/c-upc.h: New. Define API for UPC-specific functions
	  (mostly implemented in upc/upc-act.c).
	* c-family/c-common.h (upc_cpp_builtins,
	  upc_write_global_declarations): Remove extern definitions.
	* c-family/c-pragma.c: Remove #include of c-tree.h.
	  Add #include of c-upc.h.
	* tree.h (UPC_TYPE_HAS_THREADS_FACTOR): New.  Move from
	  c-tree.h.
	  (upc_shared_type_p, upc_pts_cvt_op_p): New.  Move from
	  upc/upc-act.c, and define as a macro.
	  (expand_affinity_test): Remove unused external definition.
	  (build_upc_unshared_type): Add external definition.
	  (upc_shared_type_p): Remove external definition.
	* c-config-lang.in: Update gtfiles to refer to c-family/c-upc.h.
	* dojump.c: Remove #include of c-tree.h.
	* c-tree.h: Remove definition of UPC_TYPE_HAS_THREADS_FACTOR
	  and move to tree.h.
	  (count_upc_threads_refs, is_multiple_of_upc_threads,
	  set_upc_threads_refs_to_one, c_expr, upc_affinity_test,
	  upc_build_shared_var_addr, upc_build_sync_stmt,
	  upc_check_decl_init, upc_check_decl, upc_decl_init, c_expr,
	  upc_get_block_factor, upc_instrument_forall, upc_is_null_pts_p,
	  c_expr, upc_num_threads, upc_diagnose_deprecated_stmt,
	  upc_pts_cvt_op_p, upc_pts_diff, upc_pts_increment,
	  upc_pts_int_sum, upc_set_block_factor, upc_set_decl_section,
	  permit_pragma_upc, deny_pragma_upc, pragma_upc_permitted_p,
	  set_upc_consistency_mode, get_upc_consistency_mode,
	  push_upc_consistency_mode, pop_upc_consistency_mode,
	  get_upc_pupc_mode):
	  Move external definitions to c-family/c-upc.h.
	  (upc_blocksizeof_type, upc_localsizeof_type,
	  upc_elemsizeof_type): Remove external definitions;
	  these functions were moved to c-parser.c.
	* c-decl.c: Add #include of c-upc.h.
	* c-typeck.c: Add #include of c-upc.h.
	* c-convert.c: Add #include of c-upc.h.
	* ChangeLog.upc: Fix typo.
	* Makefile.in: Add references to c-family/c-upc.h, everywhere
	  there is a reference to c-family/c-objc.h.
	  Remove extraneous reference to upc-act.h.
	* c-parser.c: Add #include of c-upc.h.
	  (upc_blocksizeof_expr, upc_blocksizeof_type,
	  upc_elemsizeof_expr, upc_elemsizeof_type,
	  upc_localsizeof_expr, upc_localsizeof_type):
	  Move from upc/upc-act.c.
	* tree.c (build_upc_unshared_type): New.
	  Move upc_get_unshared_type from upc/upc-act.c and rename
	  to build_upc_unshared_type.
	  c-family/c-common.c (pointer_int_sum): refer to renamed
	  build_upc_unshared_type function.
	  c-convert.c (convert): Ditto.
	  convert.c (convert_to_pointer): Ditto.
	  c-typeck.c (build_unary_op, build_modify_expr,
	  really_start_incremental_init): Ditto.
	  gimplify.c (create_tmp_var_raw): Ditto.
	  tree.c (build1_stat): Ditto.
	  tree.h (upc_get_unshared_type): Rename to
	  build_upc_unshared_type.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 173471 into gupc branch.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Eliminate compilation warnings, by fixing
	#include's and updating function prototypes.
	* upc/upc-gimplify.c: Include bitmap.h.
	  (upc_gimplify_real_image_ref): Mark various parameters
	  as unused.  This is a stub procedure for now.
	* upc/upc-lang.c: Include c-family/c-upc.h.
	  upc-gasp.c: Ditto.
	* upc/upc-cmd.c (no_start_files): Delete unused variable.
	  The -nostartfiles switch is now handled by the linker spec.
	* ChangeLog: Spell check.

2011-05-06  Gary Funck  <gary@intrepid.com>

	Upgrade c-family source files to conform with modularity
	improvements.  Mainly, remove #include of c-tree.h in files
	under c-family, and define a new UPC-specific #include file,
	c-upc.h, and use it.
	* upc/upc-act.h (upc_write_global_declarations,
	  upc_check_decl, upc_build_sync_stmt, upc_affinity_test,
	  upc_num_threads, upc_diagnose_deprecated_stmt):
	  Move external definitions to c-family/c-upc.h
	  (upc_blocksizeof_expr, upc_blocksizeof_type,
	  upc_elemsizeof_expr, upc_elemsizeof_type,
	  upc_localsizeof_expr, upc_localsizeof_type):
	  Remove external definitions; these functions
	  were moved from upc-act.c to c-parser.c.
	* upc/upc-gimplify.c: Add #include of c-family/c-upc.h.
	  upc-pts-packed.c: Ditto.
	  upc-pts-struct.c: Ditto.
	* upc/config-lang.in: Update gtfiles to refer to c-upc.h
	  and other files.
	* upc/upc-act.c: Add #include of c-family/c-upc.h.
	  (upc_blocksize, upc_elemsizeof, upc_localsizeof):
	  Make external so that it can be called from c-parser.c.
	  (upc_blocksizeof_expr, upc_blocksizeof_type,
	  upc_elemsizeof_expr, upc_elemsizeof_type,
	  upc_localsizeof_expr, upc_localsizeof_type):
	  Move from upc/upc-act.c to c-parser.c.
	  (upc_set_block_factor): Fix typo in error message.
	  (upc_shared_type_p, upc_pts_cvt_op_p): Delete.
	  Move to tree.h and define as a macro.
	  (upc_get_unshared_type): Delete. renamed to
	  build_upc_unshared_type and moved to tree.c.
	* upc/upc-gimplify.c (upc_gimplify_lval, upc_gimplify_expr):
	  refer to renamed build_upc_unshared_type function.
	  upc-act.c (create_unshared_var): Ditto.

2011-05-05  Gary Funck  <gary@intrepid.com>

	Make changes that bring the GUPC branch more closely in sync.
	with the GCC trunk.  Revert any fixes that are not UPC-specific.
	Remove gratuitous re-formatting.
	* ../libstdc++-v3/config/os/bionic/ctype_noninline.h: Delete.
	  This file should have been removed in a previous merge
	  with the trunk.
	* ../configure.ac: Remove Cray Catamount/CNL support.
	* ../configure: Regenerate.
	* ../config.sub: Remove Cray Catamount/CNL support.
	* config.gcc: Remove Cray Catamount/CNL support.
	* ../maintainer-scripts/gcc_release: Revert to trunk.
	* c-family/c-common.h: Define parse_optimize_options.  Its definition
	  was missed in a previous merge with the trunk.
	* dwarf2out.c: Revert a fix which removed the 'type_main_variant'
	  procedure.
	* dwarf2out.c: Revert a fix that added a check for VECTOR_TYPE
	  in addition to ARRAY_TYPE.
	* c-typeck.c: Remove an extra newline character.
	* varasm.c: Revert a fix that improved an error message
	  when TLS common data is unimplemented.
	* varasm.c: Revert a gcc_assert that had been added which
	  checked for a null DECL_SIZE_UNIT field.
	* emultls.c: Revert to trunk. Remove possible fix.
	* Makefile.in: Revert extra blank line that is present
	  in the trunk version.
	* Makefile.in: Revert a fix that handled long shell
	  argument lists for plugin headers.
	* config/ia64/ia64.opt: Revert an option setting
	  that increased the default TLS address range.
	* config/ia64/crtbegin.asm: Revert to trunk.
	  Removes an extra newline character.
	* ChangeLog.upc: Spell check.

2011-05-03  Gary Funck  <gary@intrepid.com>

	* c-family/c-common.c: Remove extraneous FIXME/TODO comments.
	  (c_apply_type_quals_to_decl): Ditto.
	* c-family/c-common.h: Ditto.
	* dojump.c: Ditto.
	* c-decl.c (merge_decls): Ditto.
	* c-typeck.c (qualify_type, default_conversion,
	  build_component_ref, build_unary_op,
	  c_build_qualified_type): Ditto.
	* gimplify.c (create_tmp_var_raw): Remove UPC-specific dead code.

2011-05-03  Gary Funck  <gary@intrepid.com>

	* upc/upc-lang.c: Remove extraneous FIXME/TODO comments.
	* upc/upc-pts-packed.c (upc_pts_build_cvt): Ditto.
	* upc/upc-act.c (upc_set_block_factor): Ditto.

2011-04-29  Gary Funck  <gary@intrepid.com>

	* c-decl.c (finish_decl): Improve error diagnostics.
	  (grokdeclarator): Ditto.
	* c-typeck.c (build_c_cast): Improve error diagnostics.
	  (convert_for_assignment): Ditto.
	  (build_binary_op): Ditto.
	* c-parser.c (c_parser_upc_forall_statement):
	  Improve error diagnostics.
	* convert.c (convert_to_integer):  Improve error diagnostics.

2011-04-29  Gary Funck  <gary@intrepid.com>

	* upc/upc-gimplify.c (upc_expand_get): Improve error diagnostics.
	  (upc_expand_put): Ditto.
	  (upc_shared_addr): Ditto.
	  (upc_gimplify_sync_stmt): Ditto.
	  (upc_gimplify_field_ref): Ditto.
	* upc/upc-pts-struct.c (upc_pts_build_diff): Improve error diagnostics.
	  (upc_pts_build_cvt): Ditto.
	* upc/upc-act.c (upc_handle_option): Improve error diagnostics.
	  (upc_lang_init): Ditto.
	  (upc_sizeof_type_check): Ditto.
	  (upc_set_block_factor): Ditto.
	  (upc_decl_init): Ditto.
	  (upc_affinity_test): Ditto.
	  (upc_num_threads): Ditto.
	  (upc_diagnose_deprecated_stmt): Ditto.
	  (upc_build_shared_var_addr): Ditto.
	  (upc_pts_int_sum): Ditto.
	  (upc_pts_diff): Ditto.

2011-04-28  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (create_unshared_var): call upc_get_unshared_type()
	  instead of using TYPE_MAIN_VARIANT() to create an equivalent type
	  that is not a UPC shared type.  This is sometimes necessary
	  when the given shared type is derived from a typedef.

2011-04-24  Gary Funck  <gary@intrepid.com>

	* c-parser.c (c_parser_upc_sync_statement): Fix ICE that
	  occurred if there is an error in the barrier id
	  expression.  Map error_mark_node into NULL.

2011-04-24  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_handle_option): Fix incorrect error
	  diagnostic messages when both -fupc-debug and
	  -fupc-inline-lib are asserted.

2011-04-24  Gary Funck  <gary@intrepid.com>

	* upc/upc-cmd.c (GCC_WORD_SWITCH_TAKES_ARG): Add "--param"
	  to the list of switches that accept arguments.
	  (main): Check for switches that have a following
	  argument inside the loop that copies arguments and
	  adds '-x upc' or '-x none' as necessary.
	  (main): Misc. clean ups and simplifications.

2011-04-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172873 into gupc branch.

2011-04-22  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172873 into gupc branch.
	* upc/upc-act.c (upc_build_init_func): assert DECL_PRESERVE_P()
	  on init_func() to prevent it from being removed from
	  the call graph.

2011-04-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172359 into gupc branch.

2011-04-19  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172359 into gupc branch.
	* upc/upc-lang.c (upc_init_ts): New.
	  (LANG_HOOKS_INIT_TS): use upc_init_ts.

2011-04-19  Gary Funck  <gary@intrepid.com>

	Eliminate warnings when compiling upc-cmd.c.
	* upc/upc-cmd.c (file_exists): Remove.
	  (arg_copy): Remove const qualifier.

2011-04-14  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt: Add UPC as a valid language for various
	  switches where it is valid for "C", that were not updated
	  in previous merges with trunk.

2011-04-13  Gary Funck  <gary@intrepid.com>

	* c-family/c.opt (fupc-pre-include): New option definition.
	* gcc.c (upc_options): Do not add "-include gcc-upc.h" if
	  -fno-upc-pre-include is asserted.

2011-04-13  Gary Funck  <gary@intrepid.com>

	* upc/upc-cmd.c (GCC_WORD_SWITCH_TAKES_ARG): Add "dumpbase"
	  to the list, and alphabetize.

2011-04-13  Gary Funck  <gary@intrepid.com>

	* upc/upc-gimplify.c (upc_gimplify_real_image_ref): New.
	  Currently, a not-yet-implemented stub.
	  (upc_gimplify_lval): call upc_gimplify_real_image_ref to
	  rewrite UPC shared REALPART_EXPR and IMAGPART_EXPR lvalues.
	  This will avoid an ICE when compiling regular "C"
	  code that refers to those operators.

2011-04-13  Gary Funck  <gary@intrepid.com>

	* upc/upc-cmd.c: Do not add "-isystem <libupc_path>" if
	  -fno-upc-pre-include is asserted.

2011-04-07  Gary Funck  <gary@intrepid.com>

	Merge trunk version 172158 into gupc branch.
	to bring in the following fix.

2011-04-05  Bernd Schmidt  <bernds@codesourcery.com>

	PR bootstrap/48403
	* haifa-sched.c (schedule_block): Increment cycle_issued_insns only
	if old and new states differ.

2011-04-06  Gary Funck  <gary@intrepid.com>

	Merge trunk version 171966 into gupc branch.

2011-04-01  Gary Funck  <gary@intrepid.com>

	* tree.h (tree_base): Move UPC flag bits into bit fields
	  located just before spare bits.  Decrement spare bits.
	  Rename 'shared_flag' -> 'upc_shared_flag',
	  'relaxed_flag' -> 'upc_relaxed_flag',
	  'strict_flag' -> 'upc_strict_flag, and adjust macros
	  that reference them accordingly.

2011-04-01  Gary Funck  <gary@intrepid.com>

	* c-decl.c (grokdeclarator): Fix formatting of
	  code that sets UPC block size on scalars.

2011-04-01  Gary Funck  <gary@intrepid.com>

	* c-decl.c (grokdeclarator): Revert use of white space
	  to match the trunk (to rationalize diffs).
	* c-typeck.c (convert_for_assignment): Ditto.
	* tree-ssa.c (useless_type_conversion_p): Ditto.

2011-03-23  Gary Funck  <gary@intrepid.com>

	* DEV-PHASE: bump to 4.7.0-1 to reflect recent creation of
	  the GCC 4.6 release branch.

2011-03-22  Gary Funck  <gary@intrepid.com>

	* upc/upc-cmd.c: Move linker switches into libupc/libupc.spec.
	  (UPC_LINKER_SCRIPT, LIBNUMA, LIBUPC, LIBUPC_PT) Remove.
	  (find_ld_script) Remove.

2011-03-21  Gary Funck  <gary@intrepid.com>

	Merge trunk version 171202 into gupc branch.

2011-03-20  Gary Funck  <gary@intrepid.com>

	* varasm.c: Call error() directly with a format specifier,
	  rather than using sprintf() to format the message.
	  This should make it easier to internationalize UPC's error messages.

2011-03-20  Gary Funck  <gary@intrepid.com>

	* configure.ac: Fix the check for gnu ld when enabling
	  UPC link script support.
	  configure: Regenerate (also picks up changes from previous
	  merge with trunk).

2011-03-20  Gary Funck  <gary@intrepid.com>

	Move UPC start files, end files, and linker specs.
	into libupc.  This reduces the impact on common GCC
	configuration files, and ensures that these UPC-specific
	components are only built when the UPC language dialect is selected.
	* c-family/c.opt: Add -fupc-link switch, used to select UPC-specific
	  linker specs. Fix typo in -fupc-debug message.
	* config/upc-conf.h, config/darwin.h: Move defines for
	  UPC-related section begins/ends into libupc/config/default/
	  upc-crt-config.h.
	* config/darwin.h(LINK_COMMAND_SPEC_A): Add call outs to
	  UPC-related linker compiler specifications,
	  accessed via %:include().
	* configure.ac, configure: Remove logic related to building
	  upc-crtbegin/end. Remove config. tests for numa and cpu
	  affinity (previously used by the 'upc' driver); these
	  settings are now propagated by target-specific compiler
	  specs. built by libupc.  Regenerate autoconf.
	* gcc.c (LINK_COMMAND_SPEC): Add call outs to UPC-related
	  linker compiler specifications, accessed via %:include().
	  Define 'upc_crtbegin_spec', 'upc_crtend_spec', and
	  'link_upc_spec'.
	* Makefile.in: Remove definition of UPC_CRTSTUFF_CFLAGS.
	* config/linux.h, config/i386/darwin.h, config/i386/linux64.h,
	  config/i386/linux.h, config/i386/t-darwin, config/i386/t-darwin64,
	  config/ia64/linux.h, config/mips/t-iris,
	  config/mips/iris6.h: Revert to trunk version 167307.
	libgcc/
	* configure, configure.ac, config.host, Makefile.in:
	  Revert to trunk version 167307.

2011-03-20  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Call error() directly with a format specifier,
	  rather than using sprintf() to format the message.
	  This should make it easier to internationalize UPC's error messages.

2011-03-20  Gary Funck  <gary@intrepid.com>

	Move UPC start files, end files, and linker specs.
	into libupc.  This reduces the impact on common GCC
	configuration files, and ensures that these UPC-specific
	components are only built when the UPC language dialect is selected.
	* upc/config-lang.in: Remove setting of 'upc_extra_parts', which
	  was used to specify which upc-crtbegin and upc-crtend files
	  need to built.  Remove extraneous (commented out)
	  settings of 'cfiles'.  The listed configuration files
	  have been reverted to trunk, and weren't referenced
	  via cfiles in any event.
	* upc/upc-cmd.c: Remove test for HAVE_UPC_LINK_SCRIPT.
	  Simply test for the presence of the UPC link script
	  in the current directory or the libupc directory.
	  Add -B<path-to-libupc> to the switches passed to 'gcc';
	  this is needed in order to find the upc-crtbegin
	  and upc-crtend object files now built in libupc.
	  Remove test for and inclusion of UPC_LINKER_SWITCHES.
	  if extra switches are needed for a particular target
	  (like SGI/Irix), they will be defined by the custom
	  linker spec. built in libupc.  Remove test for
	  HAVE_UPC_NUMA_SUPPORT; if '-lnuma' is needed, it
	  will be added to the custom linker specs. built
	  in libupc.
	* upc/upc-crtstuff.c: Move to libupc.

2011-02-23  Gary Funck  <gary@intrepid.com>

	* c-decl.c (undeclared_variable): fix typo. Inadvertently
	removed negation on following 'if'.

2011-02-22  Gary Funck  <gary@intrepid.com>

	* c-decl.c (undeclared_variable): call upc_diagnose_deprecated_stmt
	to check for the usage of certain deprecated UPC keywords.
	* c-family/stub-upc.c (upc_diagnose_deprecated_stmt): New.
	* c-tree.h (undeclared_variable): Define prototype.

2011-02-22  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c (upc_diagnose_deprecated_stmt): New.
	  upc-act.h (upc_diagnose_deprecated_stmt): Define.
	  Check usage of deprecated keywords and issue
	  error message.

2011-02-12  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: (build_c_cast, convert_for_assignment)
	  Diagnose an attempt to convert from an integer to
	  a pointer-to-shared as an error.  Also, fix various
	  error messages so that they use the preferred term
	  pointer-to-shared instead of "shared pointer".

2011-02-08  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts-struct.c: Fix bug: (pts + int) fails when int is negative
	  for struct-pts representation
	  Analysis indicated that for something like (+ ptr -80) this was
	  being represented as (+ ptr (- 80)) and further, when the
	  calculations were propagated into the individual operations on the
	  components of the 'struct' pointer, it would end up with something
	  like (+ ptr.vaddr (- 80)), and the type of (- 80) would end up as
	  "long unsigned int" because of the addition to the pointer.  This
	  caused the calculations involving the signed 'int' operand to be
	  performed incorrectly.  This fix insures that the 'int' operand is
	  signed.

2011-02-08  Gary Funck  <gary@intrepid.com>

	* upc/config-lang.in, upc/lang-specs.h, upc/Makefile.in,
	  upc/Make-lang.in, upc/upc.1, upc/upc-act.c, upc/upc-act.h,
	  upc/upc-cmd.c, upc/upc-crtstuff.c, upc/upc-gasp.c,
	  upc/upc-gasp.h, upc/upc-gimplify.c, upc/upc-gimplify.h,
	  upc/upc-lang.c, upc/upc-pts.h, upc/upc-pts-packed.c,
	  upc/upc-pts-struct.c, upc/upc-tree.def, upc/upc-tree.h:
	Update copyright notices.

2011-02-07  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: (convert_for_assignment)
	  Fix typo. in error message.

2011-01-23  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: (c_build_qualified_type)
	  derive UPC block size by calling upc_get_block_size(),
	  to ensure that the element type of an array of an array
	  is derived correctly.

2011-01-09  Gary Funck  <gary@intrepid.com>

	Fix behavior of upc_localsizeof() when called in a dynamic
	threads compilation environment.  This bug, and the expected
	behavior is documented in this bug report:
	https://upc-bugs.lbl.gov/bugzilla/show_bug.cgi?id=2960.
	* upc/_act.c (upc_localsizeof): Re-implement.

2010-12-29  Gary Funck  <gary@intrepid.com>

	Merge trunk version 168314 into gupc branch.

2010-12-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 167307 into gupc branch.

2010-12-15  Gary Funck  <gary@intrepid.com>

	Merge trunk version 167307 into gupc branch.
	* upc/_act.h: (upc_handle_option) add location and struct
	cl_option_handlers * parameters.
	(upc_finish_file) Remove.
	(upc_write_global_declarations) New, replaces upc_finish_file.
	* lang-spec.h: Disable multi-file compilation for .upc files.
	This fixes an issue where file-scoped static variables were
	diagnosed as multiply-defined.  Both "C" and "ObjC" also disable
	multi-file compilation.
	* upc/upc-gimplify.c: (upc_expand_put) Check for INDIRECT_REF_P()
	explicitly when deciding whether a UPC shared object is addressable.
	is_gimple_addressable() used to do this, but now checks for MEM_REF
	which does not apply to UPC shared objects.
	(upc_gimplify_lval, upc_gimplify_expr) Delete references to
	ALIGN_INDIRECT_REF and MISALIGNED_INDIRECT_REF.
	These are no longer defined.
	(upc_genericize) Add call to bitmap_obstack_initialize()
	and bitmap_obstack_release() around call to gimplify_function_tree().
	* upc/upc-lang.c: Add #include of "opts.h" and "options.h".
	(flag_upc_debug, flag_upc_inline_lib, flag_upc_instrument,
	flag_upc_instrument_functions) Remove.  Use definitions
	generated by the options file.
	(upc_init_options) Use cl_decoded_option struct.
	(LANG_HOOKS_WRITE_GLOBALS) Define as upc_write_global_declarations.
	(finish_file) Delete.
	(upc_init_options) Call control_warning_option() to specify
	-Werror=pointer-arith as the default.  Remove call to
	enable_warning_as_error().
	* upc/upc-pts-struct.c: (upc_pts_init_type) Move test that
	UPC_PTS_THREAD_SIZE is a multiple of a byte into an "if" statement
	rather than an #ifdef; this macro now depends upon a
	target size macro which must be evaluated at runtime.
	* upc/Make-lang.in: (cc1-dummy) Remove make target.
	(cc1upc-checksum.c) Generate directly from object files.
	* upc/upc-cmd.c: (SWITCH_TAKES_ARG, WORD_SWITCH_TAKES_ARG) Delete
	references to these deprecated macro definitions.
	(GCC_WORD_SWITCH_TAKES_ARG, GCC_WORD_SWITCH_TAKES_ARG) New.
	(all_exec_args) Delete variable.
	(exec_args) Re-define as (const char *).
	(exec_arg_list) New.  Make copy of exec_args to pass to 'exec'.
	* upc/upc-act.c: (upc_handle_option) Update argument list to accept
	(cl_option_handlers *) argument.
	(upc_finish_file) Rename to upc_write_global_declarations.
	(upc_write_global_declarations) New.

2010-10-19  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix typo in previous fix
	  which led to a mis-compare for equal block sizes.

2010-10-18  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix bug: Cast of (shared <type> * shared) not
	  diagnosed as an error
	  The conversion from any type (shared or not) to
	  a shared type is likely either meaningless or an error.  This update
	  makes any conversion to a shared type, an error.

2010-10-18  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix bug: passing int to shared pointer arg.
	  generates spurious warning
	  Add a #define procedure that does the same thing as
	  WARN_FOR_ASSIGNMENT but issues an error diagnostic instead.  Use
	  this procedure to diagnose passing an integer value to a
	  pointer-to-shared as an error.

2010-10-18  Gary Funck  <gary@intrepid.com>

	* c-typeck.c: Fix bug: shared [] in prototype silently ignored when
	  matching routine declaration.
	  When checking for type compatibility, shared qualified types must
	  have the same block factor.  This check was missing from
	  comptypes_internal().  This update adds the check for blocking
	  factor equality.

2010-10-17  Gary Funck  <gary@intrepid.com>

	* dwarf2out.c: Fix GCC Bug 45870 - note: non-delegitimized UNSPEC 5
	  found (-O1 -g)
	  See: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45870#c6

2010-10-17  Gary Funck  <gary@intrepid.com>

	* tree-cfg.c: Implement the fix for GCC Bugzilla Bug
	  45869 - [4.5/4.6 Regression] type mismatch in shift expression
	  produces ice with -O3 and -m32.
	  See: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45869

2010-10-17  Gary Funck  <gary@intrepid.com>

	* c-common.c: Diagnose the application of the various "*sizeof"
	  operations on generic pointer-to-shared as a compilation error.

2010-10-17  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix a segfault/ICE that occurred when printing an error
	  message regarding a function parameter being declared with a shared
	  qualifier.
	  The parameter's 'name' value is not defined at this point, and
	  cannot be used in the error message.  This update removes the
	  reference to 'name', and eliminates the segfault.

2010-10-17  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Issue a compilation error on attempts to perform
	  arithmetic on generic pointer-to-shared values.
	  (The rest of this update is a small code clean up.)

2010-10-17  Gary Funck  <gary@intrepid.com>

	* upc/upc-lang.c: For UPC only, issue errors for arithmetic and related
	  operations on void types.
	  This update simulates the effect of -Werror=pointer-arith, thus
	  causing arithmetic on void types, sizeof(void) and so on to be
	  considered compilation errors.  This meets the expectations of some
	  harness tests and the RTED/CTED test suites.  GCC is more
	  permissive, but since this is for UPC only, we can fairly safely
	  define this new policy.

2010-10-16  Gary Funck  <gary@intrepid.com>

	* Makefile.in: Implement fixes for SGI/IRIX/MIPS port.
	  The gcc/Makefile.in rules for install-plugin had to be re-written to
	  break up a long list of header files that exceeded the command line
	  limitation imposed by Irix.
	  Access functions for TFmode types had to be implemented.
	  Apparently, this is the mode used for the SGI/MIPS port to represent
	  "long float".

2010-10-16  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Fix bug: Static initialization of shared
	  arrays is unsupported -- issue an error message.
	  Currently, static initialization of a shared array is not
	  implemented correctly.
	  We do not plan to fix this for a while, therefore the compiler will
	  issue an error message indicating that this is an unsupported
	  operation.

2010-10-14  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix bug: Multiple equal blocking factors specified
	  via typedef chain should not be diagnosed as an error.
	  If the block size that is given by the typedef is equal to the block
	  size given explicitly in the variable declaration, then do not
	  complain.  The easiest way to make this check was to create a
	  temporary type that is a clone of the element type and then set its
	  block size using the given layout qualifier.  Then compare the block
	  size of the temporary (the declaration) to the block size specified
	  in the typedef.  This complexity is needed, because the '[*]' block
	  size needs to be calculated, and the '[]' needs to be mapped into a
	  zero block size.

2010-10-13  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Fix bug: negative layout qualifiers not diagnosed
	  as an error.
	  The CTED_UPC test c_A_1_3_b.upc, specified a negative blocksize, but
	  it was not diagnosed as an error.  With this fix, negative block
	  sizes will generate a translation error.

2010-10-10  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix bug: ICE: two or more layout qualifiers
	  specified
	  The compiler properly detected the presence of two or more layout
	  qualifiers as an error, but then hit an assertion check, because the
	  code that followed the error expected to see a qualifier and not a
	  layout specifier.  The fix is simple: just return immediately after
	  detecting the error.

2010-10-10  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Improve error diagnostics for various cases of UPC
	  shared array type declarations.
	  Add the check for this error: "In the dynamic translation
	  environment, THREADS may not appear in declarations of shared arrays
	  with indefinite block size".  Also, fix up a few of the other
	  related error diagnostics.

2010-10-10  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Fix bug: ICE: Attempt to take the difference of
	  shared and non-shared pointers
	  The compiler detected the error, and then tried to return
	  error_mark_node.  This apparently is not acceptable, as there is an
	  explicit assertion check to prevent this from happening in
	  build_binary_op.  Return the more user-friendly size_one_node
	  instead.

2010-10-09  Gary Funck  <gary@intrepid.com>

	* c-common.c: Fix bug: segfault on incomplete array definition.
	  This turned out to be a bit complicated.   The logic in
	  upc_lang_layout_decl had to be re-arranged to avoid trying to lookup
	  the THREADS identifier in the case where the blocking factor has
	  been set to indefinite ([]).  This can happen when indefinite array
	  declarations are processed for shared arrays.  At that time, the
	  file scope has been closed and THREADS is no longer in scope.  Some
	  more work is needed on upc_lang_layout_decl().  It has some
	  duplication, and notably duplicates the two branches of the if
	  having to do with TYPE_SIZE and TYPE_SIZE_UNIT, that appear in the
	  caller of this routine (layout_decl()).
	  The method of forcing a layout qualifier of [] in the indefinite
	  declaration handler is odd a well.  The code that just does the
	  setting of the block factor, needs to moved into its own routine
	  that doesn't depend upon a declspec for '[]' to be passed in, just
	  in order to set the blocking factor to some value (in this case, 0).
	  Also, the logic for how that shared type is constructed is strange.
	  First the type with 0 blocking factor is set.  Then the shared
	  qualifier is removed from the type, and then added back later.  The
	  intermediate type has a blocking factor set, but it has no shared
	  qualifier.  Fixing this will require some thought.  It is tempting
	  just to make indefinite shared arrays an error, rather than forcing
	  the dimension to be '1'.
	  This likely fixes a serious error in the previous update to
	  upc_lang_layout_decl(), where it didn't have the logic to set
	  TYPE_SIZE_UNIT() in the main part of the 'if' statement.  This means
	  the previous update would fail on many tests.

2010-10-09  Gary Funck  <gary@intrepid.com>

	* varasm.c: Add an assertion check for the case that DECL_SIZE_UNIT
	  (decl) is null, which can happen if some layout error occurred
	  upstream.

2010-10-09  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix bug: file scope shared arrays mis-diagnosed as
	  "variable-sized" when compiled in dynamic threads.
	  This long-standing bug is easily fixed.  Just check
	  for the situation that the non-constant sized type is shared and
	  that it does not have a dimension that references a multiple of
	  threads.  If this criteria is met, then issue a meaningful
	  diagnostic.

2010-10-09  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Fix bug: segfault on incomplete array definition.
	  This turned out to be a bit complicated.   The logic in
	  upc_lang_layout_decl had to be re-arranged to avoid trying to lookup
	  the THREADS identifier in the case where the blocking factor has
	  been set to indefinite ([]).  This can happen when indefinite array
	  declarations are processed for shared arrays.  At that time, the
	  file scope has been closed and THREADS is no longer in scope.  Some
	  more work is needed on upc_lang_layout_decl().  It has some
	  duplication, and notably duplicates the two branches of the if
	  having to do with TYPE_SIZE and TYPE_SIZE_UNIT, that appear in the
	  caller of this routine (layout_decl()).
	  The method of forcing a layout qualifier of [] in the indefinite
	  declaration handler is odd a well.  The code that just does the
	  setting of the block factor, needs to moved into its own routine
	  that doesn't depend upon a declspec for '[]' to be passed in, just
	  in order to set the blocking factor to some value (in this case, 0).
	  Also, the logic for how that shared type is constructed is strange.
	  First the type with 0 blocking factor is set.  Then the shared
	  qualifier is removed from the type, and then added back later.  The
	  intermediate type has a blocking factor set, but it has no shared
	  qualifier.  Fixing this will require some thought.  It is tempting
	  just to make indefinite shared arrays an error, rather than forcing
	  the dimension to be '1'.
	  This likely fixes a serious error in the previous update to
	  upc_lang_layout_decl(), where it didn't have the logic to set
	  TYPE_SIZE_UNIT() in the main part of the 'if' statement.  This means
	  the previous update would fail on many tests.
	  See also: gcc/c-common.c gcc/upc/upc-act.c

2010-10-01  Gary Funck  <gary@intrepid.com>

	* configure, configure.ac: Update manual page, and bug reporting
	  URL.
	  Update "man" page to reflect debugging switches.  Also, some general
	  clean up.  Change the bug reporting URL to point to gccupc.org.

2010-10-01  Gary Funck  <gary@intrepid.com>

	* upc/upc-manpage.html, upc.1: Update manual page, and bug reporting
	  URL.
	  Update "man" page to reflect debugging switches.  Also, some general
	  clean up.  Change the bug reporting URL to point to gccupc.org.
	  See also: gcc/configure gcc/configure.ac gcc/upc/upc-manpage.html
	  gcc/upc/upc.1

2010-10-01  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Do not zap all qualifier bits when constructing a
	  non-shared result node.
	  This fix was suggested by Paul H. in the following Berkeley Bugzilla
	  report: https://upc-bugs.lbl.gov/bugzilla/show_bug.cgi?id=2061 The
	  use of "!" rather than "~" zapped all the type qualifier bits rather
	  than just those that are related to the "shared" qualifier.  This
	  fix clears only the relevant bits.

2010-09-27  Gary Funck  <gary@intrepid.com>

	* c-parser.c, config/upc-conf.h: Issue a descriptive message when
	  the UPC forall depth count variable is not found.
	  The __upc_forall_depth variable should be defined in gcc-upc-lib.h.
	  The compiler will generate code that references this variable in
	  order to implement nested upc_forall semantics.  If there is a
	  compiler build or install problem, this variable may not be found.
	  In this case, terminate with an internal_error().

2010-09-26  Gary Funck  <gary@intrepid.com>

	* c-parser.c: Fix Bug 240: upc_forall with empty clauses
	  mis-diagnosed as syntax error.
	  Fix a failure exhibited by the Berkeley test case,
	  bug873a.upc, which has the code:
	       double d;
	       upc_forall (;;;d) {...} The compiler did not properly handle
	  the empty "condition" clause, and did not recover well when it was
	  determined that the use of a double value, "d" above, was neither a
	  pointer-to-shared nor an integer expression.  The update implements a
	  fix for both issues.
	  See also: gcc/c-parser.c gcc/upc/upc-act.c

2010-09-26  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Fix bug: upc_forall with empty clauses
	  mis-diagnosed as syntax error.
	  A failure was exhibited by the Berkeley test case,
	  bug873a.upc, which has the code:
	       double d;
	       upc_forall (;;;d) {...} The compiler did not properly handle
	  the empty "condition" clause, and did not recover well when it was
	  determined that the use of a double value, "d" above, was neither a
	  pointer-to-shared nor an integer expression.  The update implements a
	  fix for both issues.
	  See also: gcc/c-parser.c gcc/upc/upc-act.c

2010-09-25  Gary Funck  <gary@intrepid.com>

	* upc/upc-pts-struct.c: Fix an ICE on 32-bit/struct target: failed
	  gimple check when calculating affinity for upc_forall.
	  Intrepid test, test10.upc, failed to compile due a mis-match between
	  the COMPONENT_REF node and the internal 'thread' field.  Changed the
	  code to make the types agree, and added a conversion to sizetype if
	  necessary.

2010-09-23  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix Bug 29: Layout qualifier within a typedef is not
	  incorporated into the referencing type.
	  This was semi-fixed a few times before.  This update fixes a few
	  more places where the layout qualifier wasn't being propagated
	  through typedef's properly.  What made this a bit tricky is shown in
	  the example cited in the bug report:
	  typedef shared [5] int A_t; A_t A[5*THREADS];
	  In the typedef, the blocksize is being applied to a shared *scalar*,
	  and the code was applying the blocksize only to arrays.  This update
	  handles shared scalars correctly.

2010-09-23  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c: Fix bug: ICE: '[*]' layout factor applied to array
	  with static threads and size not a multiple of threads.
	  Add an extra check for an attempt to apply a '[*]' layout qualifier
	  to a shared array that does not specify a size that is a multiple of
	  THREADS, when compiled in a static THREADS compilation environment.

2010-09-22  Gary Funck  <gary@intrepid.com>

	* c-parser.c, c-tree.h, stub-upc.c: Fix Bug 403: Nested
	  upc_forall() semantics are not implemented
	  The checkforall test in the Berkeley harness test suite indicated
	  that GCC/UPC was not properly implementing nested upc_forall
	  semantics.  Nested upc_forall statements (both statically or
	  dynamically nested) must implement their affinity clause as if it
	  were "continue"; thus all steps in the loop must execute without
	  regard for affinity.  To implement these semantics a global depth
	  counter, __upc_forall_depth, is maintained by the generated code
	  that implements upc_forall.
	  See also: gcc/c-parser.c gcc/c-tree.h gcc/stub-upc.c
	  gcc/upc/upc-act.c gcc/upc/upc-act.h libupc/include/gcc-upc-lib.in
	  libupc/include/upc.h libupc/smp/upc_main.c

2010-09-22  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c, upc/upc-act.h: Fix bug: Nested upc_forall() semantics
	  are not implemented
	  The checkforall test in the Berkeley harness test suite indicated
	  that GCC/UPC was not properly implementing nested upc_forall
	  semantics.  Nested upc_forall statements (both statically or
	  dynamically nested) must implement their affinity clause as if it
	  were "continue"; thus all steps in the loop must execute without
	  regard for affinity.  To implement these semantics a global depth
	  counter, __upc_forall_depth, is maintained by the generated code
	  that implements upc_forall.
	  See also: gcc/c-parser.c gcc/c-tree.h gcc/stub-upc.c
	  gcc/upc/upc-act.c gcc/upc/upc-act.h libupc/include/gcc-upc-lib.in
	  libupc/include/upc.h libupc/smp/upc_main.c

2010-09-19  Gary Funck  <gary@intrepid.com>

	* c-decl.c: c-decl.c: zero out the layout specifier, after
	  processing an array type.
	  Fix the previous fix, that moved the setting of the type's layout
	  qualifier to the outside of the array type processing loop.  What is
	  missing from the fix is that the layout_qualifier variable needs to
	  be cleared after setting the type's blocksize.

2010-09-19  Gary Funck  <gary@intrepid.com>

	* config/upc-conf.h: Fix Bug 375: error message is off-by-one when
	  given blocksize is greater than UPC_MAX_BLOCKSIZE.
	  The value we were using for UPC_MAX_BLOCK_SIZE was one bigger than
	  the actual maximum block size.  Therefore, the message was correct,
	  but the underlying value that was being checked was wrong.  Change
	  the values so that they agree with the actual implementation-defined
	  limit.

2010-09-18  Gary Funck  <gary@intrepid.com>

	* upc/upc-act.c, upc/upc-pts-packed.c, upc/upc-pts-struct.c:
	  Implement -fupc-debug switch.

2010-09-11  Gary Funck  <gary@intrepid.com>

	* c-decl.c: Fix Bug 402: ICE: '[*]' layout factor on
	  multi-dimensional shared array with dynamic threads.
	  This declaration caused an internal compiler error when compiled
	  with dynamic threads:
	      shared [*] int A[THREADS][16]; The bug was discovered when
	  compiling the RTED_UPC test suite.
	  The fix is to process layout qualifiers after the entire array type
	  has been built.  Otherwise, we try to calculate the blocksize on a
	  shared array type that has not had its "size depends upon the value
	  of THREADS" flag set.
	  Also, added a test case.
	  See also: libupc/testsuite/libupc.upc/intrepid/test18.upc

2010-07-11  Gary Funck  <gary@intrepid.com>

	Fix a bug where a statement in c_build_qualified_type()
	in the trunk had been inadvertently deleted.
	This bug showed up in the IA64 port, because jmpbuf's
	on that architecture must be 16 byte aligned, and they were not.
	c-typeck.c (c_build_qualified_type): Revive the deleted line.

2010-07-08  Gary Funck  <gary@intrepid.com>

	Make changes so that other language compilers
	will build and bootstrap.
	* c-family/c-common.c (compiling_upc, flag_upc,
	flag_upc_instrument, flag_upc_instrument_functions,
	use_upc_dwarf2_extensions): Move to stub-upc.c and
	upc-lang.c.
	* c-family/c-common.h (use_upc_dwarf2_extensions,
	compiling_upc): Add extern definitions - needed
	to compile/build other language front ends.
	* c-family/c.opt: Fix the spelling of ObjC.
	It had been incorrectly spelled as Objc.
	* c-family/c.opt: Add UPC for the various switches
	that are valid for both C and ObjC.
	* c-family/c-opts.c: Add CL_UPC to the list of
	supported options switches when compiling assembly
	language.
	* lto/lto-lang.c (use_upc_dwarf2_extensions,
	flag_upc_instrument, flag_upc_instrument_functions):
	Remove these definitions.  They have been moved
	to c-family/stub-upc.c.
	* upc/ChangeLog: Move relevant entries
	to ChangeLog.upc.
	* c-family/stub-upc.c (compiling_upc, flag_upc,
	flag_upc_instrument, flag_upc_instrument_functions,
	use_upc_dwarf2_extensions): Moved from c-common.c
	* upc/upc-lang.c (compiling_upc, flag_upc,
	flag_upc_instrument, flag_upc_instrument_functions,
	use_upc_dwarf2_extensions): Moved from c-common.c
	* objc/objc-act.c (objc_gimplify_expr): Add additional
	parameters to c_gimplify_expr() call, that are used
	by upc's tree rewrites.
	* cp/cp-gimplify.c (cp_gimplify_expr): Likewise.
	* gcc/cp/lex.c (init_reswords): If not compiling
	UPC, then mask off the UPC keywords.
	* cp/Make-lang.in (C_STUB_OBJS): Use this
	make macro to link with c-family/stub-objc.o
	and c-family/stub-upc.o.
	* fortran/Make-lang.in (C_STUB_OBJS): Likewise.
	* java/Make-lang.in (C_STUB_OBJS): Likewise.
	* objc/Make-lang.in: Link with c-family/stub-upc.o
	to avoid undefined references.
	c-parser.c: Fix line indentation.
	* libcpp/include/cpplib.h: Remove CL_UPC from
	the list of language kinds accepted by the
	C preprocessor.  This is not necessary because
	UPC is a derivative of C99, and does not need
	a different language kind.
	* c-family/c-opts.c (c_common_handle_option):
	Call set_std_c99() when processing the
	"--lang upc" switch, instead of setting the
	language kind to CL_UPC.
	* libupc/testsuite/libupc.upc/intrepid/ChangeLog: New.

2010-07-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 161517 into gupc branch.
	* gcc/stub-upc.c: Move to gcc/c-family/.
	* libupc/testsuite/libupc.upc/intrepid/test19.upc:
	Add 'unused' attributes to avoid "set, but
	not referenced" warnings.
	* libupc/testsuite/libupc.upc/intrepid/test18.upc:
	Likewise.

2010-07-03  Gary Funck  <gary@intrepid.com>

	Merge trunk version 161517 into gupc branch.
	* upc/config-lang.in: Update references to files
	  moved into c-family/.
	* upc/Make-lang.in: Likewise.
	* upc/upc-act.c: Likewise.
	* upc/upc-gasp.c: Likewise.
	* upc/upc-gimplify.c: Likewise.
	* upc/upc-lang.c: Likewise.
	* upc/upc-pts-packed.c: Likewise.
	* upc/upc-pts-struct.c: Likewise.
	* upc/upc-act.c: (upc_handle_option) add parameters to
	  effect pass through call to c_common_handle_option.
	* upc/upc-act.h: (upc_handle_option) Likewise.
	* upc/upc-act.c: (map_unshared_var) used typed ggc allocation.
	* upc/upc-act.c: (upc_build_init_func) add call to
	  to mark_decl_referenced(), to ensure that UPC shared
	  variable initializer function is not removed from
	  the call tree graph.

2010-03-01  Gary Funck  <gary@intrepid.com>

	Create gupc branch from trunk version 157149.