summaryrefslogtreecommitdiff
path: root/Xcode/LLVM.xcodeproj/project.pbxproj
blob: 60b849124c347224ef5eddb996dd06030b2fe424 (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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 42;
	objects = {

/* Begin PBXAggregateTarget section */
		CF0329BC08D1BE8E0030FD33 /* LLVM full llc */ = {
			isa = PBXAggregateTarget;
			buildConfigurationList = CF0329C708D1BEC40030FD33 /* Build configuration list for PBXAggregateTarget "LLVM full llc" */;
			buildPhases = (
			);
			buildSettings = {
				OPTIMIZATION_CFLAGS = "";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM full llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			dependencies = (
				CF0329BE08D1BE970030FD33 /* PBXTargetDependency */,
				CF0329C008D1BE9B0030FD33 /* PBXTargetDependency */,
			);
			name = "LLVM full llc";
			productName = "LLVM full llc";
		};
/* End PBXAggregateTarget section */

/* Begin PBXBuildStyle section */
		014CEA520018CE5811CA2923 /* Debug */ = {
			isa = PBXBuildStyle;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				DEBUGGING_SYMBOLS = YES;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				OPTIMIZATION_CFLAGS = "-O0";
				ZERO_LINK = YES;
			};
			name = Debug;
		};
		014CEA530018CE5811CA2923 /* Release */ = {
			isa = PBXBuildStyle;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				ZERO_LINK = NO;
			};
			name = Release;
		};
/* End PBXBuildStyle section */

/* Begin PBXContainerItemProxy section */
		CF0329BD08D1BE970030FD33 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = CF0329B608D1BE110030FD33;
			remoteInfo = "LLVM lib";
		};
		CF0329BF08D1BE9B0030FD33 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = CF0329BB08D1BE5D0030FD33;
			remoteInfo = "LLVM llc";
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		CF26835B09178F5500C5F253 /* TargetInstrItineraries.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TargetInstrItineraries.h; sourceTree = "<group>"; };
		CF490CD50903C9260072DB1C /* PPC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPC.h; sourceTree = "<group>"; };
		CF490CD60903C9260072DB1C /* PPCAsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCAsmPrinter.cpp; sourceTree = "<group>"; };
		CF490CD70903C9260072DB1C /* PPCBranchSelector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCBranchSelector.cpp; sourceTree = "<group>"; };
		CF490CD80903C9260072DB1C /* PPCCodeEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCCodeEmitter.cpp; sourceTree = "<group>"; };
		CF490CD90903C9260072DB1C /* PPCFrameInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCFrameInfo.h; sourceTree = "<group>"; };
		CF490CDA0903C9260072DB1C /* PPCInstrBuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCInstrBuilder.h; sourceTree = "<group>"; };
		CF490CDB0903C9260072DB1C /* PPCInstrFormats.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCInstrFormats.td; sourceTree = "<group>"; };
		CF490CDC0903C9260072DB1C /* PPCInstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCInstrInfo.cpp; sourceTree = "<group>"; };
		CF490CDD0903C9260072DB1C /* PPCInstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCInstrInfo.h; sourceTree = "<group>"; };
		CF490CDE0903C9260072DB1C /* PPCInstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCInstrInfo.td; sourceTree = "<group>"; };
		CF490CDF0903C9260072DB1C /* PPCISelDAGToDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCISelDAGToDAG.cpp; sourceTree = "<group>"; };
		CF490CE00903C9260072DB1C /* PPCISelLowering.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCISelLowering.cpp; sourceTree = "<group>"; };
		CF490CE10903C9260072DB1C /* PPCISelLowering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCISelLowering.h; sourceTree = "<group>"; };
		CF490CE30903C9260072DB1C /* PPCJITInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCJITInfo.cpp; sourceTree = "<group>"; };
		CF490CE40903C9260072DB1C /* PPCJITInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCJITInfo.h; sourceTree = "<group>"; };
		CF490CE50903C9260072DB1C /* PPCRegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCRegisterInfo.cpp; sourceTree = "<group>"; };
		CF490CE60903C9260072DB1C /* PPCRegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCRegisterInfo.h; sourceTree = "<group>"; };
		CF490CE70903C9260072DB1C /* PPCRegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCRegisterInfo.td; sourceTree = "<group>"; };
		CF490CE80903C9260072DB1C /* PPCRelocations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCRelocations.h; sourceTree = "<group>"; };
		CF490CE90903C9260072DB1C /* PPCSubtarget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCSubtarget.cpp; sourceTree = "<group>"; };
		CF490CEA0903C9260072DB1C /* PPCSubtarget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCSubtarget.h; sourceTree = "<group>"; };
		CF490CEB0903C9260072DB1C /* PPCTargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PPCTargetMachine.cpp; sourceTree = "<group>"; };
		CF490CEC0903C9260072DB1C /* PPCTargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PPCTargetMachine.h; sourceTree = "<group>"; };
		CF490D0E090541A30072DB1C /* PPCSchedule.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCSchedule.td; sourceTree = "<group>"; };
		CF490D0F090541A30072DB1C /* PPCScheduleG3.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCScheduleG3.td; sourceTree = "<group>"; };
		CF490D10090541A30072DB1C /* PPCScheduleG4.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCScheduleG4.td; sourceTree = "<group>"; };
		CF490D11090541A30072DB1C /* PPCScheduleG4Plus.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCScheduleG4Plus.td; sourceTree = "<group>"; };
		CF490D12090541A30072DB1C /* PPCScheduleG5.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPCScheduleG5.td; sourceTree = "<group>"; };
		CF490D14090541D30072DB1C /* TargetSchedule.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TargetSchedule.td; sourceTree = "<group>"; };
		CF490D15090541D30072DB1C /* TargetSelectionDAG.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TargetSelectionDAG.td; sourceTree = "<group>"; };
		CF490D890906A78C0072DB1C /* PPC.td */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = PPC.td; sourceTree = "<group>"; };
		CF490E2F0907BBF80072DB1C /* SubtargetEmitter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubtargetEmitter.h; sourceTree = "<group>"; };
		CF490E300907BBF80072DB1C /* SubtargetEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SubtargetEmitter.cpp; sourceTree = "<group>"; };
		CF6529A6095B21A8007F884E /* MachineDebugInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MachineDebugInfo.cpp; sourceTree = "<group>"; };
		CF6B5AFD095C82C300D1EA42 /* DAGCombiner.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DAGCombiner.cpp; sourceTree = "<group>"; };
		CF6F487109505E1500BC9E82 /* MachineDebugInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MachineDebugInfo.h; sourceTree = "<group>"; };
		CF73C0A2098A4FDF00627152 /* InlineAsm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InlineAsm.h; sourceTree = "<group>"; };
		CF73C0A3098A4FDF00627152 /* TypeSymbolTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TypeSymbolTable.h; sourceTree = "<group>"; };
		CF73C0A4098A4FDF00627152 /* ValueSymbolTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ValueSymbolTable.h; sourceTree = "<group>"; };
		CF73C0A5098A507300627152 /* ConstantFolding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConstantFolding.h; sourceTree = "<group>"; };
		CF73C0A6098A507300627152 /* ET-Forest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ET-Forest.h"; sourceTree = "<group>"; };
		CF73C0A7098A507300627152 /* LinkAllAnalyses.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LinkAllAnalyses.h; sourceTree = "<group>"; };
		CF73C0A8098A50C200627152 /* AutoUpgrade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AutoUpgrade.h; sourceTree = "<group>"; };
		CF73C0A9098A50FD00627152 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
		CF73C0AD098A519400627152 /* DataTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataTypes.h; sourceTree = "<group>"; };
		CF73C0AE098A51AD00627152 /* Alarm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Alarm.h; sourceTree = "<group>"; };
		CF73C0AF098A51DD00627152 /* RSProfiling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSProfiling.h; sourceTree = "<group>"; };
		CF73C0B0098A523C00627152 /* ConstantFolding.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ConstantFolding.cpp; sourceTree = "<group>"; };
		CF73C0B4098A538B00627152 /* SparcV8Subtarget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV8Subtarget.cpp; sourceTree = "<group>"; };
		CF73C0B5098A538B00627152 /* SparcV8Subtarget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SparcV8Subtarget.h; sourceTree = "<group>"; };
		CF73C0B6098A53EF00627152 /* IA64Bundling.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = IA64Bundling.cpp; sourceTree = "<group>"; };
		CF73C0B7098A546000627152 /* RSProfiling.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RSProfiling.cpp; sourceTree = "<group>"; };
		CF73C0B8098A546000627152 /* RSProfiling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSProfiling.h; sourceTree = "<group>"; };
		CF73C0B9098A546000627152 /* Reg2Mem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Reg2Mem.cpp; sourceTree = "<group>"; };
		CF73C0BC098A551F00627152 /* AutoUpgrade.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AutoUpgrade.cpp; path = ../lib/VMCore/AutoUpgrade.cpp; sourceTree = SOURCE_ROOT; };
		CF73C0BD098A551F00627152 /* InlineAsm.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = InlineAsm.cpp; path = ../lib/VMCore/InlineAsm.cpp; sourceTree = SOURCE_ROOT; };
		CF73C0BE098A551F00627152 /* TypeSymbolTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = TypeSymbolTable.cpp; path = ../lib/VMCore/TypeSymbolTable.cpp; sourceTree = SOURCE_ROOT; };
		CF73C0BF098A551F00627152 /* ValueSymbolTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ValueSymbolTable.cpp; path = ../lib/VMCore/ValueSymbolTable.cpp; sourceTree = SOURCE_ROOT; };
		CF7FFA1F0985081C008B0087 /* ScheduleDAGList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScheduleDAGList.cpp; sourceTree = "<group>"; };
		CF7FFA200985081C008B0087 /* ScheduleDAGSimple.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScheduleDAGSimple.cpp; sourceTree = "<group>"; };
		CF7FFA2109850864008B0087 /* ScheduleDAG.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScheduleDAG.h; sourceTree = "<group>"; };
		CF8E00490989162500DA2399 /* Dwarf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dwarf.h; sourceTree = "<group>"; };
		CF9BCD0808C74DE0001E7011 /* SubtargetFeature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubtargetFeature.h; sourceTree = "<group>"; };
		CF9BCD1508C75070001E7011 /* SubtargetFeature.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SubtargetFeature.cpp; sourceTree = "<group>"; };
		CFBD8B1A090E76540020B107 /* AlphaISelDAGToDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaISelDAGToDAG.cpp; sourceTree = "<group>"; };
		CFBD8B1B090E76540020B107 /* AlphaISelLowering.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaISelLowering.cpp; sourceTree = "<group>"; };
		CFBD8B1C090E76540020B107 /* AlphaISelLowering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlphaISelLowering.h; sourceTree = "<group>"; };
		CFBD8B1D090E76540020B107 /* AlphaSubtarget.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaSubtarget.cpp; sourceTree = "<group>"; };
		CFBD8B1E090E76540020B107 /* AlphaSubtarget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlphaSubtarget.h; sourceTree = "<group>"; };
		CFC244570959DEF2009F8C47 /* DwarfWriter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DwarfWriter.cpp; sourceTree = "<group>"; };
		CFC244BB0959F24C009F8C47 /* X86ISelDAGToDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = X86ISelDAGToDAG.cpp; sourceTree = "<group>"; };
		CFC244BC0959F24C009F8C47 /* X86ISelLowering.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = X86ISelLowering.cpp; sourceTree = "<group>"; };
		CFC244BD0959F24C009F8C47 /* X86ISelLowering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = X86ISelLowering.h; sourceTree = "<group>"; };
		CFC244BE0959F284009F8C47 /* SparcV8ISelDAGToDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV8ISelDAGToDAG.cpp; sourceTree = "<group>"; };
		CFC244BF0959F2E3009F8C47 /* IA64ISelDAGToDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = IA64ISelDAGToDAG.cpp; sourceTree = "<group>"; };
		CFC244C00959F2E3009F8C47 /* IA64ISelLowering.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = IA64ISelLowering.cpp; sourceTree = "<group>"; };
		CFC244C10959F2E3009F8C47 /* IA64ISelLowering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IA64ISelLowering.h; sourceTree = "<group>"; };
		CFF8B434097C605F0047F72A /* UniqueVector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UniqueVector.h; sourceTree = "<group>"; };
		DE4DA0390911476D0012D44B /* LoopSimplify.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = LoopSimplify.cpp; path = ../lib/Transforms/Utils/LoopSimplify.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA03C091147920012D44B /* LiveInterval.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = LiveInterval.h; path = ../include/llvm/CodeGen/LiveInterval.h; sourceTree = SOURCE_ROOT; };
		DE4DA03D091147920012D44B /* LiveIntervalAnalysis.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = LiveIntervalAnalysis.h; path = ../include/llvm/CodeGen/LiveIntervalAnalysis.h; sourceTree = SOURCE_ROOT; };
		DE4DA03E091147C00012D44B /* PrintSCC.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PrintSCC.cpp; path = ../tools/analyze/PrintSCC.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA03F091147DD0012D44B /* PPC.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPC.h; path = ../lib/Target/PowerPC/PPC.h; sourceTree = SOURCE_ROOT; };
		DE4DA040091147DD0012D44B /* PPC.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPC.td; path = ../lib/Target/PowerPC/PPC.td; sourceTree = SOURCE_ROOT; };
		DE4DA041091147DD0012D44B /* PPCAsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCAsmPrinter.cpp; path = ../lib/Target/PowerPC/PPCAsmPrinter.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA042091147DD0012D44B /* PPCBranchSelector.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCBranchSelector.cpp; path = ../lib/Target/PowerPC/PPCBranchSelector.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA043091147DD0012D44B /* PPCCodeEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCCodeEmitter.cpp; path = ../lib/Target/PowerPC/PPCCodeEmitter.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA044091147DD0012D44B /* PPCFrameInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCFrameInfo.h; path = ../lib/Target/PowerPC/PPCFrameInfo.h; sourceTree = SOURCE_ROOT; };
		DE4DA045091147ED0012D44B /* PPCInstrBuilder.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCInstrBuilder.h; path = ../lib/Target/PowerPC/PPCInstrBuilder.h; sourceTree = SOURCE_ROOT; };
		DE4DA046091147ED0012D44B /* PPCInstrFormats.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCInstrFormats.td; path = ../lib/Target/PowerPC/PPCInstrFormats.td; sourceTree = SOURCE_ROOT; };
		DE4DA047091147ED0012D44B /* PPCInstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCInstrInfo.cpp; path = ../lib/Target/PowerPC/PPCInstrInfo.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA048091147ED0012D44B /* PPCInstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCInstrInfo.h; path = ../lib/Target/PowerPC/PPCInstrInfo.h; sourceTree = SOURCE_ROOT; };
		DE4DA049091147ED0012D44B /* PPCInstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCInstrInfo.td; path = ../lib/Target/PowerPC/PPCInstrInfo.td; sourceTree = SOURCE_ROOT; };
		DE4DA04A091147ED0012D44B /* PPCISelDAGToDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCISelDAGToDAG.cpp; path = ../lib/Target/PowerPC/PPCISelDAGToDAG.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA04B091147ED0012D44B /* PPCISelLowering.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCISelLowering.cpp; path = ../lib/Target/PowerPC/PPCISelLowering.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA04C091147ED0012D44B /* PPCISelLowering.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCISelLowering.h; path = ../lib/Target/PowerPC/PPCISelLowering.h; sourceTree = SOURCE_ROOT; };
		DE4DA04E091147ED0012D44B /* PPCJITInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCJITInfo.cpp; path = ../lib/Target/PowerPC/PPCJITInfo.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA04F091147ED0012D44B /* PPCJITInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCJITInfo.h; path = ../lib/Target/PowerPC/PPCJITInfo.h; sourceTree = SOURCE_ROOT; };
		DE4DA050091147ED0012D44B /* PPCRegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCRegisterInfo.cpp; path = ../lib/Target/PowerPC/PPCRegisterInfo.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA051091147ED0012D44B /* PPCRegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCRegisterInfo.h; path = ../lib/Target/PowerPC/PPCRegisterInfo.h; sourceTree = SOURCE_ROOT; };
		DE4DA052091147ED0012D44B /* PPCRegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCRegisterInfo.td; path = ../lib/Target/PowerPC/PPCRegisterInfo.td; sourceTree = SOURCE_ROOT; };
		DE4DA053091147ED0012D44B /* PPCRelocations.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCRelocations.h; path = ../lib/Target/PowerPC/PPCRelocations.h; sourceTree = SOURCE_ROOT; };
		DE4DA054091147ED0012D44B /* PPCSchedule.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCSchedule.td; path = ../lib/Target/PowerPC/PPCSchedule.td; sourceTree = SOURCE_ROOT; };
		DE4DA055091147ED0012D44B /* PPCScheduleG3.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCScheduleG3.td; path = ../lib/Target/PowerPC/PPCScheduleG3.td; sourceTree = SOURCE_ROOT; };
		DE4DA056091147ED0012D44B /* PPCScheduleG4.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCScheduleG4.td; path = ../lib/Target/PowerPC/PPCScheduleG4.td; sourceTree = SOURCE_ROOT; };
		DE4DA057091147ED0012D44B /* PPCScheduleG4Plus.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCScheduleG4Plus.td; path = ../lib/Target/PowerPC/PPCScheduleG4Plus.td; sourceTree = SOURCE_ROOT; };
		DE4DA058091147ED0012D44B /* PPCScheduleG5.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = PPCScheduleG5.td; path = ../lib/Target/PowerPC/PPCScheduleG5.td; sourceTree = SOURCE_ROOT; };
		DE4DA059091147ED0012D44B /* PPCSubtarget.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCSubtarget.cpp; path = ../lib/Target/PowerPC/PPCSubtarget.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA05A091147ED0012D44B /* PPCSubtarget.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCSubtarget.h; path = ../lib/Target/PowerPC/PPCSubtarget.h; sourceTree = SOURCE_ROOT; };
		DE4DA05B091147ED0012D44B /* PPCTargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = PPCTargetMachine.cpp; path = ../lib/Target/PowerPC/PPCTargetMachine.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA05C091147ED0012D44B /* PPCTargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PPCTargetMachine.h; path = ../lib/Target/PowerPC/PPCTargetMachine.h; sourceTree = SOURCE_ROOT; };
		DE4DA065091148520012D44B /* SubtargetEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SubtargetEmitter.cpp; path = ../utils/TableGen/SubtargetEmitter.cpp; sourceTree = SOURCE_ROOT; };
		DE4DA066091148520012D44B /* SubtargetEmitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SubtargetEmitter.h; path = ../utils/TableGen/SubtargetEmitter.h; sourceTree = SOURCE_ROOT; };
		DE66EC5B08ABE86900323D32 /* AsmWriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = AsmWriter.cpp; path = ../lib/VMCore/AsmWriter.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC5C08ABE86A00323D32 /* BasicBlock.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = BasicBlock.cpp; path = ../lib/VMCore/BasicBlock.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC5D08ABE86A00323D32 /* ConstantFolding.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ConstantFolding.cpp; path = ../lib/VMCore/ConstantFolding.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC5E08ABE86A00323D32 /* ConstantFolding.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ConstantFolding.h; path = ../lib/VMCore/ConstantFolding.h; sourceTree = SOURCE_ROOT; };
		DE66EC5F08ABE86A00323D32 /* ConstantRange.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ConstantRange.cpp; path = ../lib/VMCore/ConstantRange.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6008ABE86A00323D32 /* Constants.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Constants.cpp; path = ../lib/VMCore/Constants.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6108ABE86A00323D32 /* Dominators.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Dominators.cpp; path = ../lib/VMCore/Dominators.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6208ABE86A00323D32 /* Function.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Function.cpp; path = ../lib/VMCore/Function.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6308ABE86A00323D32 /* Globals.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Globals.cpp; path = ../lib/VMCore/Globals.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6408ABE86A00323D32 /* Instruction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Instruction.cpp; path = ../lib/VMCore/Instruction.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6508ABE86A00323D32 /* Instructions.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Instructions.cpp; path = ../lib/VMCore/Instructions.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6608ABE86A00323D32 /* LeakDetector.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = LeakDetector.cpp; path = ../lib/VMCore/LeakDetector.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6708ABE86A00323D32 /* Mangler.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Mangler.cpp; path = ../lib/VMCore/Mangler.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6808ABE86A00323D32 /* Module.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Module.cpp; path = ../lib/VMCore/Module.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6908ABE86A00323D32 /* ModuleProvider.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ModuleProvider.cpp; path = ../lib/VMCore/ModuleProvider.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6A08ABE86A00323D32 /* Pass.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Pass.cpp; path = ../lib/VMCore/Pass.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6B08ABE86A00323D32 /* PassManagerT.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PassManagerT.h; path = ../lib/VMCore/PassManagerT.h; sourceTree = SOURCE_ROOT; };
		DE66EC6C08ABE86A00323D32 /* SymbolTable.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = SymbolTable.cpp; path = ../lib/VMCore/SymbolTable.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6D08ABE86A00323D32 /* SymbolTableListTraitsImpl.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SymbolTableListTraitsImpl.h; path = ../lib/VMCore/SymbolTableListTraitsImpl.h; sourceTree = SOURCE_ROOT; };
		DE66EC6E08ABE86A00323D32 /* Type.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Type.cpp; path = ../lib/VMCore/Type.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC6F08ABE86A00323D32 /* Value.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../lib/VMCore/Value.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC7008ABE86A00323D32 /* Verifier.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Verifier.cpp; path = ../lib/VMCore/Verifier.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC8A08ABEAF000323D32 /* Lexer.l */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.lex; name = Lexer.l; path = ../lib/AsmParser/Lexer.l; sourceTree = SOURCE_ROOT; };
		DE66EC8E08ABEAF000323D32 /* llvmAsmParser.y */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.yacc; name = llvmAsmParser.y; path = ../lib/AsmParser/llvmAsmParser.y; sourceTree = SOURCE_ROOT; };
		DE66EC8F08ABEAF000323D32 /* Parser.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = Parser.cpp; path = ../lib/AsmParser/Parser.cpp; sourceTree = SOURCE_ROOT; };
		DE66EC9008ABEAF000323D32 /* ParserInternals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ParserInternals.h; path = ../lib/AsmParser/ParserInternals.h; sourceTree = SOURCE_ROOT; };
		DE66EC9408ABEB3900323D32 /* Analyzer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Analyzer.cpp; sourceTree = "<group>"; };
		DE66EC9E08ABEB3900323D32 /* Reader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Reader.cpp; sourceTree = "<group>"; };
		DE66EC9F08ABEB3900323D32 /* Reader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Reader.h; sourceTree = "<group>"; };
		DE66ECA008ABEB3900323D32 /* ReaderWrappers.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ReaderWrappers.cpp; sourceTree = "<group>"; };
		DE66ECA208ABEB8000323D32 /* Archive.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Archive.cpp; sourceTree = "<group>"; };
		DE66ECA308ABEB8000323D32 /* ArchiveInternals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ArchiveInternals.h; sourceTree = "<group>"; };
		DE66ECA408ABEB8000323D32 /* ArchiveReader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ArchiveReader.cpp; sourceTree = "<group>"; };
		DE66ECA508ABEB8000323D32 /* ArchiveWriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ArchiveWriter.cpp; sourceTree = "<group>"; };
		DE66ECB708ABEB8000323D32 /* SlotCalculator.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SlotCalculator.cpp; sourceTree = "<group>"; };
		DE66ECB808ABEB8000323D32 /* SlotCalculator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SlotCalculator.h; sourceTree = "<group>"; };
		DE66ECB908ABEB8000323D32 /* SlotTable.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SlotTable.h; sourceTree = "<group>"; };
		DE66ECBA08ABEB8000323D32 /* Writer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Writer.cpp; sourceTree = "<group>"; };
		DE66ECBB08ABEB8000323D32 /* WriterInternals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WriterInternals.h; sourceTree = "<group>"; };
		DE66ECBE08ABEC0700323D32 /* AliasAnalysis.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AliasAnalysis.cpp; sourceTree = "<group>"; };
		DE66ECBF08ABEC0700323D32 /* AliasAnalysisCounter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AliasAnalysisCounter.cpp; sourceTree = "<group>"; };
		DE66ECC008ABEC0700323D32 /* AliasAnalysisEvaluator.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AliasAnalysisEvaluator.cpp; sourceTree = "<group>"; };
		DE66ECC108ABEC0700323D32 /* AliasSetTracker.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AliasSetTracker.cpp; sourceTree = "<group>"; };
		DE66ECC208ABEC0700323D32 /* BasicAliasAnalysis.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BasicAliasAnalysis.cpp; sourceTree = "<group>"; };
		DE66ECC308ABEC0700323D32 /* CFGPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CFGPrinter.cpp; sourceTree = "<group>"; };
		DE66ECC508ABEC0700323D32 /* BottomUpClosure.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BottomUpClosure.cpp; sourceTree = "<group>"; };
		DE66ECC608ABEC0700323D32 /* CompleteBottomUp.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CompleteBottomUp.cpp; sourceTree = "<group>"; };
		DE66ECC708ABEC0700323D32 /* DataStructure.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DataStructure.cpp; sourceTree = "<group>"; };
		DE66ECC808ABEC0700323D32 /* DataStructureAA.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DataStructureAA.cpp; sourceTree = "<group>"; };
		DE66ECC908ABEC0700323D32 /* DataStructureOpt.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DataStructureOpt.cpp; sourceTree = "<group>"; };
		DE66ECCA08ABEC0700323D32 /* DataStructureStats.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DataStructureStats.cpp; sourceTree = "<group>"; };
		DE66ECE508ABEC0700323D32 /* EquivClassGraphs.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = EquivClassGraphs.cpp; sourceTree = "<group>"; };
		DE66ECE608ABEC0700323D32 /* GraphChecker.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GraphChecker.cpp; sourceTree = "<group>"; };
		DE66ECE708ABEC0700323D32 /* Local.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Local.cpp; sourceTree = "<group>"; };
		DE66ECE908ABEC0700323D32 /* Printer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Printer.cpp; sourceTree = "<group>"; };
		DE66ECEA08ABEC0700323D32 /* Steensgaard.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Steensgaard.cpp; sourceTree = "<group>"; };
		DE66ECEB08ABEC0700323D32 /* TopDownClosure.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TopDownClosure.cpp; sourceTree = "<group>"; };
		DE66ED1708ABEC0800323D32 /* InstCount.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InstCount.cpp; sourceTree = "<group>"; };
		DE66ED1808ABEC0800323D32 /* Interval.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Interval.cpp; sourceTree = "<group>"; };
		DE66ED1908ABEC0800323D32 /* IntervalPartition.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IntervalPartition.cpp; sourceTree = "<group>"; };
		DE66ED1B08ABEC0800323D32 /* Andersens.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Andersens.cpp; sourceTree = "<group>"; };
		DE66ED1C08ABEC0800323D32 /* CallGraph.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CallGraph.cpp; sourceTree = "<group>"; };
		DE66ED1D08ABEC0800323D32 /* CallGraphSCCPass.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CallGraphSCCPass.cpp; sourceTree = "<group>"; };
		DE66ED2F08ABEC0800323D32 /* FindUsedTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = FindUsedTypes.cpp; sourceTree = "<group>"; };
		DE66ED3008ABEC0800323D32 /* GlobalsModRef.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GlobalsModRef.cpp; sourceTree = "<group>"; };
		DE66ED3308ABEC0800323D32 /* LoadValueNumbering.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LoadValueNumbering.cpp; sourceTree = "<group>"; };
		DE66ED3408ABEC0800323D32 /* LoopInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LoopInfo.cpp; sourceTree = "<group>"; };
		DE66ED3608ABEC0800323D32 /* PostDominators.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PostDominators.cpp; sourceTree = "<group>"; };
		DE66ED3708ABEC0800323D32 /* ProfileInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ProfileInfo.cpp; sourceTree = "<group>"; };
		DE66ED3808ABEC0800323D32 /* ProfileInfoLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ProfileInfoLoader.cpp; sourceTree = "<group>"; };
		DE66ED3908ABEC0800323D32 /* ProfileInfoLoaderPass.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ProfileInfoLoaderPass.cpp; sourceTree = "<group>"; };
		DE66ED3A08ABEC0800323D32 /* ScalarEvolution.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ScalarEvolution.cpp; sourceTree = "<group>"; };
		DE66ED3B08ABEC0800323D32 /* ScalarEvolutionExpander.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ScalarEvolutionExpander.cpp; sourceTree = "<group>"; };
		DE66ED3C08ABEC0800323D32 /* Trace.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Trace.cpp; sourceTree = "<group>"; };
		DE66ED3D08ABEC0800323D32 /* ValueNumbering.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ValueNumbering.cpp; sourceTree = "<group>"; };
		DE66ED3F08ABEC2A00323D32 /* AsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AsmPrinter.cpp; sourceTree = "<group>"; };
		DE66ED4008ABEC2A00323D32 /* BranchFolding.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BranchFolding.cpp; sourceTree = "<group>"; };
		DE66ED6F08ABEC2B00323D32 /* ELFWriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ELFWriter.cpp; sourceTree = "<group>"; };
		DE66ED7008ABEC2B00323D32 /* IntrinsicLowering.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IntrinsicLowering.cpp; sourceTree = "<group>"; };
		DE66ED7108ABEC2B00323D32 /* LiveInterval.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LiveInterval.cpp; sourceTree = "<group>"; };
		DE66ED7308ABEC2B00323D32 /* LiveIntervalAnalysis.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LiveIntervalAnalysis.cpp; sourceTree = "<group>"; };
		DE66ED7508ABEC2B00323D32 /* LiveVariables.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LiveVariables.cpp; sourceTree = "<group>"; };
		DE66ED7608ABEC2B00323D32 /* MachineBasicBlock.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MachineBasicBlock.cpp; sourceTree = "<group>"; };
		DE66ED7708ABEC2B00323D32 /* MachineCodeEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MachineCodeEmitter.cpp; sourceTree = "<group>"; };
		DE66ED7808ABEC2B00323D32 /* MachineFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MachineFunction.cpp; sourceTree = "<group>"; };
		DE66ED7908ABEC2B00323D32 /* MachineInstr.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MachineInstr.cpp; sourceTree = "<group>"; };
		DE66ED7B08ABEC2B00323D32 /* Passes.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Passes.cpp; sourceTree = "<group>"; };
		DE66ED7C08ABEC2B00323D32 /* PHIElimination.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PHIElimination.cpp; sourceTree = "<group>"; };
		DE66ED7D08ABEC2B00323D32 /* PhysRegTracker.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PhysRegTracker.h; sourceTree = "<group>"; };
		DE66ED7E08ABEC2B00323D32 /* PrologEpilogInserter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PrologEpilogInserter.cpp; sourceTree = "<group>"; };
		DE66ED8008ABEC2B00323D32 /* RegAllocLinearScan.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RegAllocLinearScan.cpp; sourceTree = "<group>"; };
		DE66ED8108ABEC2B00323D32 /* RegAllocLocal.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RegAllocLocal.cpp; sourceTree = "<group>"; };
		DE66ED8208ABEC2B00323D32 /* RegAllocSimple.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RegAllocSimple.cpp; sourceTree = "<group>"; };
		DE66ED9008ABEC2B00323D32 /* LegalizeDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LegalizeDAG.cpp; sourceTree = "<group>"; };
		DE66ED9208ABEC2B00323D32 /* SelectionDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SelectionDAG.cpp; sourceTree = "<group>"; };
		DE66ED9308ABEC2B00323D32 /* SelectionDAGISel.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SelectionDAGISel.cpp; sourceTree = "<group>"; };
		DE66ED9408ABEC2B00323D32 /* SelectionDAGPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SelectionDAGPrinter.cpp; sourceTree = "<group>"; };
		DE66ED9508ABEC2B00323D32 /* TwoAddressInstructionPass.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TwoAddressInstructionPass.cpp; sourceTree = "<group>"; };
		DE66ED9608ABEC2B00323D32 /* UnreachableBlockElim.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = UnreachableBlockElim.cpp; sourceTree = "<group>"; };
		DE66ED9708ABEC2B00323D32 /* ValueTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ValueTypes.cpp; sourceTree = "<group>"; };
		DE66ED9808ABEC2B00323D32 /* VirtRegMap.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = VirtRegMap.cpp; sourceTree = "<group>"; };
		DE66ED9908ABEC2B00323D32 /* VirtRegMap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = VirtRegMap.h; sourceTree = "<group>"; };
		DE66EDB108ABEC7300323D32 /* Debugger.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Debugger.cpp; sourceTree = "<group>"; };
		DE66EDB208ABEC7300323D32 /* FDHandle.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = FDHandle.cpp; sourceTree = "<group>"; };
		DE66EDB308ABEC7300323D32 /* FDHandle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = FDHandle.h; sourceTree = "<group>"; };
		DE66EDB508ABEC7300323D32 /* ProgramInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ProgramInfo.cpp; sourceTree = "<group>"; };
		DE66EDB608ABEC7300323D32 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		DE66EDB708ABEC7300323D32 /* RuntimeInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RuntimeInfo.cpp; sourceTree = "<group>"; };
		DE66EDB808ABEC7300323D32 /* SourceFile.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SourceFile.cpp; sourceTree = "<group>"; };
		DE66EDB908ABEC7300323D32 /* SourceLanguage-CFamily.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "SourceLanguage-CFamily.cpp"; sourceTree = "<group>"; };
		DE66EDBA08ABEC7300323D32 /* SourceLanguage-CPlusPlus.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "SourceLanguage-CPlusPlus.cpp"; sourceTree = "<group>"; };
		DE66EDBB08ABEC7300323D32 /* SourceLanguage-Unknown.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "SourceLanguage-Unknown.cpp"; sourceTree = "<group>"; };
		DE66EDBC08ABEC7300323D32 /* SourceLanguage.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SourceLanguage.cpp; sourceTree = "<group>"; };
		DE66EDBD08ABEC7300323D32 /* UnixLocalInferiorProcess.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = UnixLocalInferiorProcess.cpp; sourceTree = "<group>"; };
		DE66EDC408ABEC9000323D32 /* ExecutionEngine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ExecutionEngine.cpp; sourceTree = "<group>"; };
		DE66EDCE08ABEC9000323D32 /* Execution.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Execution.cpp; sourceTree = "<group>"; };
		DE66EDCF08ABEC9000323D32 /* ExternalFunctions.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ExternalFunctions.cpp; sourceTree = "<group>"; };
		DE66EDD008ABEC9000323D32 /* Interpreter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Interpreter.cpp; sourceTree = "<group>"; };
		DE66EDD108ABEC9000323D32 /* Interpreter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Interpreter.h; sourceTree = "<group>"; };
		DE66EDDE08ABEC9100323D32 /* Intercept.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Intercept.cpp; sourceTree = "<group>"; };
		DE66EDDF08ABEC9100323D32 /* JIT.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JIT.cpp; sourceTree = "<group>"; };
		DE66EDE008ABEC9100323D32 /* JIT.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JIT.h; sourceTree = "<group>"; };
		DE66EDE108ABEC9100323D32 /* JITEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JITEmitter.cpp; sourceTree = "<group>"; };
		DE66EDE308ABEC9100323D32 /* TargetSelect.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetSelect.cpp; sourceTree = "<group>"; };
		DE66EDF608ABEDD300323D32 /* LinkArchives.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LinkArchives.cpp; sourceTree = "<group>"; };
		DE66EDF708ABEDD300323D32 /* Linker.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Linker.cpp; sourceTree = "<group>"; };
		DE66EDF808ABEDD300323D32 /* LinkItems.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LinkItems.cpp; sourceTree = "<group>"; };
		DE66EDF908ABEDD300323D32 /* LinkModules.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LinkModules.cpp; sourceTree = "<group>"; };
		DE66EDFC08ABEDE600323D32 /* Annotation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Annotation.cpp; sourceTree = "<group>"; };
		DE66EDFE08ABEDE600323D32 /* blocksort.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = blocksort.c; sourceTree = "<group>"; };
		DE66EDFF08ABEDE600323D32 /* bzlib.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = bzlib.c; sourceTree = "<group>"; };
		DE66EE0008ABEDE600323D32 /* bzlib.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = bzlib.h; sourceTree = "<group>"; };
		DE66EE0108ABEDE600323D32 /* bzlib_private.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = bzlib_private.h; sourceTree = "<group>"; };
		DE66EE0208ABEDE600323D32 /* CHANGES */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = CHANGES; sourceTree = "<group>"; };
		DE66EE0308ABEDE600323D32 /* compress.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = compress.c; sourceTree = "<group>"; };
		DE66EE0408ABEDE600323D32 /* crctable.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = crctable.c; sourceTree = "<group>"; };
		DE66EE1508ABEDE600323D32 /* decompress.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = decompress.c; sourceTree = "<group>"; };
		DE66EE1608ABEDE600323D32 /* huffman.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = huffman.c; sourceTree = "<group>"; };
		DE66EE1708ABEDE600323D32 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
		DE66EE1908ABEDE600323D32 /* randtable.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = randtable.c; sourceTree = "<group>"; };
		DE66EE1A08ABEDE600323D32 /* README */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
		DE66EE1B08ABEDE600323D32 /* README.COMPILATION.PROBLEMS */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README.COMPILATION.PROBLEMS; sourceTree = "<group>"; };
		DE66EE1C08ABEDE600323D32 /* Y2K_INFO */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Y2K_INFO; sourceTree = "<group>"; };
		DE66EE1D08ABEDE600323D32 /* CommandLine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CommandLine.cpp; sourceTree = "<group>"; };
		DE66EE1E08ABEDE600323D32 /* Compressor.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Compressor.cpp; sourceTree = "<group>"; };
		DE66EE3D08ABEDE600323D32 /* Debug.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Debug.cpp; sourceTree = "<group>"; };
		DE66EE3E08ABEDE600323D32 /* FileUtilities.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = FileUtilities.cpp; sourceTree = "<group>"; };
		DE66EE3F08ABEDE600323D32 /* IsInf.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IsInf.cpp; sourceTree = "<group>"; };
		DE66EE4008ABEDE600323D32 /* IsNAN.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IsNAN.cpp; sourceTree = "<group>"; };
		DE66EE4208ABEDE600323D32 /* PluginLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PluginLoader.cpp; sourceTree = "<group>"; };
		DE66EE4308ABEDE600323D32 /* SlowOperationInformer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SlowOperationInformer.cpp; sourceTree = "<group>"; };
		DE66EE4408ABEDE600323D32 /* Statistic.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Statistic.cpp; sourceTree = "<group>"; };
		DE66EE4508ABEDE700323D32 /* StringExtras.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = StringExtras.cpp; sourceTree = "<group>"; };
		DE66EE4608ABEDE700323D32 /* SystemUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SystemUtils.cpp; sourceTree = "<group>"; };
		DE66EE4708ABEDE700323D32 /* Timer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Timer.cpp; sourceTree = "<group>"; };
		DE66EE4808ABEDE700323D32 /* ToolRunner.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ToolRunner.cpp; sourceTree = "<group>"; };
		DE66EE6008ABEE3400323D32 /* DynamicLibrary.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DynamicLibrary.cpp; sourceTree = "<group>"; };
		DE66EE6108ABEE3400323D32 /* LICENSE.TXT */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = LICENSE.TXT; sourceTree = "<group>"; };
		DE66EE6208ABEE3400323D32 /* ltdl.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = ltdl.c; sourceTree = "<group>"; };
		DE66EE6308ABEE3400323D32 /* ltdl.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ltdl.h; sourceTree = "<group>"; };
		DE66EE6508ABEE3400323D32 /* MappedFile.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MappedFile.cpp; sourceTree = "<group>"; };
		DE66EE6608ABEE3400323D32 /* Memory.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Memory.cpp; sourceTree = "<group>"; };
		DE66EE6708ABEE3400323D32 /* Mutex.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Mutex.cpp; sourceTree = "<group>"; };
		DE66EE6808ABEE3400323D32 /* Path.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Path.cpp; sourceTree = "<group>"; };
		DE66EE6908ABEE3400323D32 /* Process.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Process.cpp; sourceTree = "<group>"; };
		DE66EE6A08ABEE3400323D32 /* Program.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Program.cpp; sourceTree = "<group>"; };
		DE66EE6B08ABEE3400323D32 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		DE66EE7C08ABEE3400323D32 /* Signals.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Signals.cpp; sourceTree = "<group>"; };
		DE66EE7D08ABEE3400323D32 /* TimeValue.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TimeValue.cpp; sourceTree = "<group>"; };
		DE66EE7F08ABEE3500323D32 /* MappedFile.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = MappedFile.inc; sourceTree = "<group>"; };
		DE66EE8008ABEE3500323D32 /* Memory.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Memory.inc; sourceTree = "<group>"; };
		DE66EE8108ABEE3500323D32 /* Mutex.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Mutex.inc; sourceTree = "<group>"; };
		DE66EE8208ABEE3500323D32 /* Path.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Path.inc; sourceTree = "<group>"; };
		DE66EE8308ABEE3500323D32 /* Process.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Process.inc; sourceTree = "<group>"; };
		DE66EE8408ABEE3500323D32 /* Program.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Program.inc; sourceTree = "<group>"; };
		DE66EE8508ABEE3500323D32 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		DE66EE8608ABEE3500323D32 /* Signals.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Signals.inc; sourceTree = "<group>"; };
		DE66EE8808ABEE3500323D32 /* Process.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Process.cpp; sourceTree = "<group>"; };
		DE66EE8908ABEE3500323D32 /* TimeValue.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = TimeValue.inc; sourceTree = "<group>"; };
		DE66EE8A08ABEE3500323D32 /* Unix.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Unix.h; sourceTree = "<group>"; };
		DE66EE8C08ABEE3500323D32 /* DynamicLibrary.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = DynamicLibrary.inc; sourceTree = "<group>"; };
		DE66EE8D08ABEE3500323D32 /* MappedFile.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = MappedFile.inc; sourceTree = "<group>"; };
		DE66EE8E08ABEE3500323D32 /* Memory.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Memory.inc; sourceTree = "<group>"; };
		DE66EE8F08ABEE3500323D32 /* Mutex.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Mutex.inc; sourceTree = "<group>"; };
		DE66EE9008ABEE3500323D32 /* Path.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Path.inc; sourceTree = "<group>"; };
		DE66EE9108ABEE3500323D32 /* Process.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Process.inc; sourceTree = "<group>"; };
		DE66EE9208ABEE3500323D32 /* Program.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Program.inc; sourceTree = "<group>"; };
		DE66EE9308ABEE3500323D32 /* Signals.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Signals.inc; sourceTree = "<group>"; };
		DE66EE9408ABEE3500323D32 /* TimeValue.inc */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = TimeValue.inc; sourceTree = "<group>"; };
		DE66EE9508ABEE3500323D32 /* Win32.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Win32.h; sourceTree = "<group>"; };
		DE66EE9808ABEE5E00323D32 /* Alpha.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Alpha.h; sourceTree = "<group>"; };
		DE66EE9908ABEE5E00323D32 /* Alpha.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Alpha.td; sourceTree = "<group>"; };
		DE66EE9A08ABEE5E00323D32 /* AlphaAsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaAsmPrinter.cpp; sourceTree = "<group>"; };
		DE66EE9B08ABEE5E00323D32 /* AlphaCodeEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaCodeEmitter.cpp; sourceTree = "<group>"; };
		DE66EEA308ABEE5E00323D32 /* AlphaInstrFormats.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = AlphaInstrFormats.td; sourceTree = "<group>"; };
		DE66EEA408ABEE5E00323D32 /* AlphaInstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaInstrInfo.cpp; sourceTree = "<group>"; };
		DE66EEA508ABEE5E00323D32 /* AlphaInstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AlphaInstrInfo.h; sourceTree = "<group>"; };
		DE66EEA608ABEE5E00323D32 /* AlphaInstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = AlphaInstrInfo.td; sourceTree = "<group>"; };
		DE66EEA908ABEE5E00323D32 /* AlphaJITInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaJITInfo.cpp; sourceTree = "<group>"; };
		DE66EEAA08ABEE5E00323D32 /* AlphaJITInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AlphaJITInfo.h; sourceTree = "<group>"; };
		DE66EEAB08ABEE5E00323D32 /* AlphaRegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaRegisterInfo.cpp; sourceTree = "<group>"; };
		DE66EEAC08ABEE5E00323D32 /* AlphaRegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AlphaRegisterInfo.h; sourceTree = "<group>"; };
		DE66EEAD08ABEE5E00323D32 /* AlphaRegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = AlphaRegisterInfo.td; sourceTree = "<group>"; };
		DE66EEAE08ABEE5E00323D32 /* AlphaRelocations.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AlphaRelocations.h; sourceTree = "<group>"; };
		DE66EEAF08ABEE5E00323D32 /* AlphaTargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AlphaTargetMachine.cpp; sourceTree = "<group>"; };
		DE66EEB008ABEE5E00323D32 /* AlphaTargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AlphaTargetMachine.h; sourceTree = "<group>"; };
		DE66EECA08ABEE5E00323D32 /* CTargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CTargetMachine.h; sourceTree = "<group>"; };
		DE66EED008ABEE5E00323D32 /* Writer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Writer.cpp; sourceTree = "<group>"; };
		DE66EEF808ABEE5E00323D32 /* IA64.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IA64.h; sourceTree = "<group>"; };
		DE66EEF908ABEE5E00323D32 /* IA64.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = IA64.td; sourceTree = "<group>"; };
		DE66EEFA08ABEE5E00323D32 /* IA64AsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IA64AsmPrinter.cpp; sourceTree = "<group>"; };
		DE66EF0108ABEE5E00323D32 /* IA64InstrBuilder.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IA64InstrBuilder.h; sourceTree = "<group>"; };
		DE66EF0208ABEE5E00323D32 /* IA64InstrFormats.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = IA64InstrFormats.td; sourceTree = "<group>"; };
		DE66EF0308ABEE5E00323D32 /* IA64InstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IA64InstrInfo.cpp; sourceTree = "<group>"; };
		DE66EF0408ABEE5E00323D32 /* IA64InstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IA64InstrInfo.h; sourceTree = "<group>"; };
		DE66EF0508ABEE5E00323D32 /* IA64InstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = IA64InstrInfo.td; sourceTree = "<group>"; };
		DE66EF0708ABEE5E00323D32 /* IA64MachineFunctionInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IA64MachineFunctionInfo.h; sourceTree = "<group>"; };
		DE66EF0808ABEE5E00323D32 /* IA64RegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IA64RegisterInfo.cpp; sourceTree = "<group>"; };
		DE66EF0908ABEE5E00323D32 /* IA64RegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IA64RegisterInfo.h; sourceTree = "<group>"; };
		DE66EF0A08ABEE5E00323D32 /* IA64RegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = IA64RegisterInfo.td; sourceTree = "<group>"; };
		DE66EF0B08ABEE5E00323D32 /* IA64TargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IA64TargetMachine.cpp; sourceTree = "<group>"; };
		DE66EF0C08ABEE5E00323D32 /* IA64TargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IA64TargetMachine.h; sourceTree = "<group>"; };
		DE66EF0E08ABEE5E00323D32 /* README */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README; sourceTree = "<group>"; };
		DE66EF1008ABEE5E00323D32 /* MRegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MRegisterInfo.cpp; sourceTree = "<group>"; };
		DE66EF3D08ABEE5F00323D32 /* LICENSE.TXT */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = LICENSE.TXT; sourceTree = "<group>"; };
		DE66EF6F08ABEE5F00323D32 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		DE66EF8208ABEE5F00323D32 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		DE66EF8308ABEE5F00323D32 /* Skeleton.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Skeleton.h; sourceTree = "<group>"; };
		DE66EF8408ABEE5F00323D32 /* Skeleton.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Skeleton.td; sourceTree = "<group>"; };
		DE66EF8A08ABEE5F00323D32 /* SkeletonInstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SkeletonInstrInfo.cpp; sourceTree = "<group>"; };
		DE66EF8B08ABEE5F00323D32 /* SkeletonInstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SkeletonInstrInfo.h; sourceTree = "<group>"; };
		DE66EF8C08ABEE5F00323D32 /* SkeletonInstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SkeletonInstrInfo.td; sourceTree = "<group>"; };
		DE66EF8D08ABEE5F00323D32 /* SkeletonJITInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SkeletonJITInfo.cpp; sourceTree = "<group>"; };
		DE66EF8E08ABEE5F00323D32 /* SkeletonJITInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SkeletonJITInfo.h; sourceTree = "<group>"; };
		DE66EF8F08ABEE5F00323D32 /* SkeletonRegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SkeletonRegisterInfo.cpp; sourceTree = "<group>"; };
		DE66EF9008ABEE5F00323D32 /* SkeletonRegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SkeletonRegisterInfo.h; sourceTree = "<group>"; };
		DE66EF9108ABEE5F00323D32 /* SkeletonRegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SkeletonRegisterInfo.td; sourceTree = "<group>"; };
		DE66EF9208ABEE5F00323D32 /* SkeletonTargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SkeletonTargetMachine.cpp; sourceTree = "<group>"; };
		DE66EF9308ABEE5F00323D32 /* SkeletonTargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SkeletonTargetMachine.h; sourceTree = "<group>"; };
		DE66EFAF08ABEE5F00323D32 /* DelaySlotFiller.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DelaySlotFiller.cpp; sourceTree = "<group>"; };
		DE66EFB008ABEE5F00323D32 /* FPMover.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = FPMover.cpp; sourceTree = "<group>"; };
		DE66EFB208ABEE5F00323D32 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		DE66EFB308ABEE5F00323D32 /* SparcV8.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV8.h; sourceTree = "<group>"; };
		DE66EFB408ABEE5F00323D32 /* SparcV8.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV8.td; sourceTree = "<group>"; };
		DE66EFB508ABEE5F00323D32 /* SparcV8AsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV8AsmPrinter.cpp; sourceTree = "<group>"; };
		DE66EFBD08ABEE5F00323D32 /* SparcV8InstrFormats.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV8InstrFormats.td; sourceTree = "<group>"; };
		DE66EFBE08ABEE5F00323D32 /* SparcV8InstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV8InstrInfo.cpp; sourceTree = "<group>"; };
		DE66EFBF08ABEE5F00323D32 /* SparcV8InstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV8InstrInfo.h; sourceTree = "<group>"; };
		DE66EFC008ABEE5F00323D32 /* SparcV8InstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV8InstrInfo.td; sourceTree = "<group>"; };
		DE66EFC408ABEE5F00323D32 /* SparcV8RegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV8RegisterInfo.cpp; sourceTree = "<group>"; };
		DE66EFC508ABEE5F00323D32 /* SparcV8RegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV8RegisterInfo.h; sourceTree = "<group>"; };
		DE66EFC608ABEE5F00323D32 /* SparcV8RegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV8RegisterInfo.td; sourceTree = "<group>"; };
		DE66EFC708ABEE5F00323D32 /* SparcV8TargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV8TargetMachine.cpp; sourceTree = "<group>"; };
		DE66EFC808ABEE5F00323D32 /* SparcV8TargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV8TargetMachine.h; sourceTree = "<group>"; };
		DE66EFFA08ABEE6000323D32 /* DecomposeMultiDimRefs.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DecomposeMultiDimRefs.cpp; sourceTree = "<group>"; };
		DE66EFFB08ABEE6000323D32 /* EmitBytecodeToAssembly.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = EmitBytecodeToAssembly.cpp; sourceTree = "<group>"; };
		DE66F00708ABEE6000323D32 /* InstrScheduling.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InstrScheduling.cpp; sourceTree = "<group>"; };
		DE66F00908ABEE6000323D32 /* SchedGraph.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SchedGraph.cpp; sourceTree = "<group>"; };
		DE66F00A08ABEE6000323D32 /* SchedGraph.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SchedGraph.h; sourceTree = "<group>"; };
		DE66F00B08ABEE6000323D32 /* SchedGraphCommon.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SchedGraphCommon.cpp; sourceTree = "<group>"; };
		DE66F00C08ABEE6000323D32 /* SchedPriorities.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SchedPriorities.cpp; sourceTree = "<group>"; };
		DE66F00D08ABEE6000323D32 /* SchedPriorities.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SchedPriorities.h; sourceTree = "<group>"; };
		DE66F00E08ABEE6000323D32 /* InternalGlobalMapper.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InternalGlobalMapper.cpp; sourceTree = "<group>"; };
		DE66F01008ABEE6000323D32 /* BBLiveVar.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BBLiveVar.cpp; sourceTree = "<group>"; };
		DE66F01108ABEE6000323D32 /* BBLiveVar.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BBLiveVar.h; sourceTree = "<group>"; };
		DE66F01A08ABEE6000323D32 /* FunctionLiveVarInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = FunctionLiveVarInfo.cpp; sourceTree = "<group>"; };
		DE66F01B08ABEE6000323D32 /* FunctionLiveVarInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = FunctionLiveVarInfo.h; sourceTree = "<group>"; };
		DE66F01D08ABEE6000323D32 /* ValueSet.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ValueSet.cpp; sourceTree = "<group>"; };
		DE66F01E08ABEE6000323D32 /* MachineCodeForInstruction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MachineCodeForInstruction.cpp; sourceTree = "<group>"; };
		DE66F01F08ABEE6000323D32 /* MachineCodeForInstruction.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineCodeForInstruction.h; sourceTree = "<group>"; };
		DE66F02008ABEE6000323D32 /* MachineFunctionInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MachineFunctionInfo.cpp; sourceTree = "<group>"; };
		DE66F02108ABEE6000323D32 /* MachineFunctionInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineFunctionInfo.h; sourceTree = "<group>"; };
		DE66F02208ABEE6000323D32 /* MachineInstrAnnot.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineInstrAnnot.h; sourceTree = "<group>"; };
		DE66F02408ABEE6000323D32 /* MappingInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MappingInfo.cpp; sourceTree = "<group>"; };
		DE66F02508ABEE6000323D32 /* MappingInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MappingInfo.h; sourceTree = "<group>"; };
		DE66F03708ABEE6000323D32 /* DependenceAnalyzer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DependenceAnalyzer.cpp; sourceTree = "<group>"; };
		DE66F03808ABEE6000323D32 /* DependenceAnalyzer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DependenceAnalyzer.h; sourceTree = "<group>"; };
		DE66F03A08ABEE6000323D32 /* ModuloScheduling.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ModuloScheduling.cpp; sourceTree = "<group>"; };
		DE66F03B08ABEE6000323D32 /* ModuloScheduling.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ModuloScheduling.h; sourceTree = "<group>"; };
		DE66F03C08ABEE6000323D32 /* ModuloSchedulingSuperBlock.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ModuloSchedulingSuperBlock.cpp; sourceTree = "<group>"; };
		DE66F03D08ABEE6000323D32 /* ModuloSchedulingSuperBlock.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ModuloSchedulingSuperBlock.h; sourceTree = "<group>"; };
		DE66F03E08ABEE6000323D32 /* MSchedGraph.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MSchedGraph.cpp; sourceTree = "<group>"; };
		DE66F03F08ABEE6000323D32 /* MSchedGraph.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MSchedGraph.h; sourceTree = "<group>"; };
		DE66F04008ABEE6000323D32 /* MSchedGraphSB.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MSchedGraphSB.cpp; sourceTree = "<group>"; };
		DE66F04108ABEE6000323D32 /* MSchedGraphSB.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MSchedGraphSB.h; sourceTree = "<group>"; };
		DE66F04208ABEE6000323D32 /* MSSchedule.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MSSchedule.cpp; sourceTree = "<group>"; };
		DE66F04308ABEE6000323D32 /* MSSchedule.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MSSchedule.h; sourceTree = "<group>"; };
		DE66F04408ABEE6000323D32 /* MSScheduleSB.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = MSScheduleSB.cpp; sourceTree = "<group>"; };
		DE66F04508ABEE6000323D32 /* MSScheduleSB.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MSScheduleSB.h; sourceTree = "<group>"; };
		DE66F04708ABEE6000323D32 /* AllocInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AllocInfo.h; sourceTree = "<group>"; };
		DE66F05408ABEE6000323D32 /* IGNode.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IGNode.cpp; sourceTree = "<group>"; };
		DE66F05508ABEE6000323D32 /* IGNode.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IGNode.h; sourceTree = "<group>"; };
		DE66F05608ABEE6000323D32 /* InterferenceGraph.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InterferenceGraph.cpp; sourceTree = "<group>"; };
		DE66F05708ABEE6000323D32 /* InterferenceGraph.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InterferenceGraph.h; sourceTree = "<group>"; };
		DE66F05808ABEE6000323D32 /* LiveRange.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LiveRange.h; sourceTree = "<group>"; };
		DE66F05908ABEE6000323D32 /* LiveRangeInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LiveRangeInfo.cpp; sourceTree = "<group>"; };
		DE66F05A08ABEE6000323D32 /* LiveRangeInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LiveRangeInfo.h; sourceTree = "<group>"; };
		DE66F05D08ABEE6000323D32 /* PhyRegAlloc.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PhyRegAlloc.cpp; sourceTree = "<group>"; };
		DE66F05E08ABEE6000323D32 /* PhyRegAlloc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PhyRegAlloc.h; sourceTree = "<group>"; };
		DE66F05F08ABEE6000323D32 /* RegAllocCommon.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RegAllocCommon.h; sourceTree = "<group>"; };
		DE66F06008ABEE6000323D32 /* RegClass.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RegClass.cpp; sourceTree = "<group>"; };
		DE66F06108ABEE6000323D32 /* RegClass.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RegClass.h; sourceTree = "<group>"; };
		DE66F06208ABEE6000323D32 /* SparcV9.burg.in */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9.burg.in; sourceTree = "<group>"; };
		DE66F06608ABEE6000323D32 /* SparcV9.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9.td; sourceTree = "<group>"; };
		DE66F06708ABEE6000323D32 /* SparcV9_F2.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9_F2.td; sourceTree = "<group>"; };
		DE66F06808ABEE6000323D32 /* SparcV9_F3.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9_F3.td; sourceTree = "<group>"; };
		DE66F06908ABEE6000323D32 /* SparcV9_F4.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9_F4.td; sourceTree = "<group>"; };
		DE66F06A08ABEE6000323D32 /* SparcV9AsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9AsmPrinter.cpp; sourceTree = "<group>"; };
		DE66F06B08ABEE6000323D32 /* SparcV9BurgISel.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9BurgISel.cpp; sourceTree = "<group>"; };
		DE66F06C08ABEE6000323D32 /* SparcV9BurgISel.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9BurgISel.h; sourceTree = "<group>"; };
		DE66F06D08ABEE6000323D32 /* SparcV9CodeEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9CodeEmitter.cpp; sourceTree = "<group>"; };
		DE66F06E08ABEE6000323D32 /* SparcV9CodeEmitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9CodeEmitter.h; sourceTree = "<group>"; };
		DE66F06F08ABEE6000323D32 /* SparcV9FrameInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9FrameInfo.cpp; sourceTree = "<group>"; };
		DE66F07008ABEE6000323D32 /* SparcV9FrameInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9FrameInfo.h; sourceTree = "<group>"; };
		DE66F07208ABEE6000323D32 /* SparcV9Instr.def */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9Instr.def; sourceTree = "<group>"; };
		DE66F07308ABEE6000323D32 /* SparcV9InstrForest.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9InstrForest.h; sourceTree = "<group>"; };
		DE66F07408ABEE6000323D32 /* SparcV9InstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9InstrInfo.h; sourceTree = "<group>"; };
		DE66F07508ABEE6000323D32 /* SparcV9InstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9InstrInfo.td; sourceTree = "<group>"; };
		DE66F07608ABEE6000323D32 /* SparcV9Internals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9Internals.h; sourceTree = "<group>"; };
		DE66F07708ABEE6000323D32 /* SparcV9JITInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9JITInfo.cpp; sourceTree = "<group>"; };
		DE66F07808ABEE6000323D32 /* SparcV9JITInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9JITInfo.h; sourceTree = "<group>"; };
		DE66F07908ABEE6000323D32 /* SparcV9PeepholeOpts.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9PeepholeOpts.cpp; sourceTree = "<group>"; };
		DE66F07A08ABEE6000323D32 /* SparcV9PreSelection.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9PreSelection.cpp; sourceTree = "<group>"; };
		DE66F07B08ABEE6000323D32 /* SparcV9PrologEpilogInserter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9PrologEpilogInserter.cpp; sourceTree = "<group>"; };
		DE66F07C08ABEE6000323D32 /* SparcV9RegClassInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9RegClassInfo.cpp; sourceTree = "<group>"; };
		DE66F07D08ABEE6000323D32 /* SparcV9RegClassInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9RegClassInfo.h; sourceTree = "<group>"; };
		DE66F07E08ABEE6000323D32 /* SparcV9RegInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9RegInfo.cpp; sourceTree = "<group>"; };
		DE66F07F08ABEE6000323D32 /* SparcV9RegInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9RegInfo.h; sourceTree = "<group>"; };
		DE66F08008ABEE6000323D32 /* SparcV9RegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9RegisterInfo.cpp; sourceTree = "<group>"; };
		DE66F08108ABEE6000323D32 /* SparcV9RegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9RegisterInfo.h; sourceTree = "<group>"; };
		DE66F08208ABEE6000323D32 /* SparcV9RegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = SparcV9RegisterInfo.td; sourceTree = "<group>"; };
		DE66F08308ABEE6000323D32 /* SparcV9Relocations.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9Relocations.h; sourceTree = "<group>"; };
		DE66F08408ABEE6000323D32 /* SparcV9SchedInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9SchedInfo.cpp; sourceTree = "<group>"; };
		DE66F08508ABEE6000323D32 /* SparcV9StackSlots.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9StackSlots.cpp; sourceTree = "<group>"; };
		DE66F08608ABEE6000323D32 /* SparcV9TargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9TargetMachine.cpp; sourceTree = "<group>"; };
		DE66F08708ABEE6000323D32 /* SparcV9TargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9TargetMachine.h; sourceTree = "<group>"; };
		DE66F08808ABEE6000323D32 /* SparcV9TmpInstr.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SparcV9TmpInstr.cpp; sourceTree = "<group>"; };
		DE66F08908ABEE6000323D32 /* SparcV9TmpInstr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SparcV9TmpInstr.h; sourceTree = "<group>"; };
		DE66F08A08ABEE6000323D32 /* Target.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Target.td; sourceTree = "<group>"; };
		DE66F08B08ABEE6000323D32 /* TargetData.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetData.cpp; sourceTree = "<group>"; };
		DE66F08C08ABEE6000323D32 /* TargetFrameInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetFrameInfo.cpp; sourceTree = "<group>"; };
		DE66F08D08ABEE6000323D32 /* TargetInstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetInstrInfo.cpp; sourceTree = "<group>"; };
		DE66F08E08ABEE6000323D32 /* TargetLowering.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetLowering.cpp; sourceTree = "<group>"; };
		DE66F08F08ABEE6000323D32 /* TargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetMachine.cpp; sourceTree = "<group>"; };
		DE66F09008ABEE6000323D32 /* TargetMachineRegistry.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetMachineRegistry.cpp; sourceTree = "<group>"; };
		DE66F09108ABEE6000323D32 /* TargetSchedInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetSchedInfo.cpp; sourceTree = "<group>"; };
		DE66F09208ABEE6000323D32 /* TargetSubtarget.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TargetSubtarget.cpp; sourceTree = "<group>"; };
		DE66F0BC08ABEE6000323D32 /* X86.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86.h; sourceTree = "<group>"; };
		DE66F0BD08ABEE6000323D32 /* X86.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = X86.td; sourceTree = "<group>"; };
		DE66F0BE08ABEE6000323D32 /* X86AsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86AsmPrinter.cpp; sourceTree = "<group>"; };
		DE66F0BF08ABEE6000323D32 /* X86AsmPrinter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86AsmPrinter.h; sourceTree = "<group>"; };
		DE66F0C008ABEE6000323D32 /* X86ATTAsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86ATTAsmPrinter.cpp; sourceTree = "<group>"; };
		DE66F0C108ABEE6000323D32 /* X86ATTAsmPrinter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86ATTAsmPrinter.h; sourceTree = "<group>"; };
		DE66F0C208ABEE6000323D32 /* X86CodeEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86CodeEmitter.cpp; sourceTree = "<group>"; };
		DE66F0C308ABEE6000323D32 /* X86ELFWriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86ELFWriter.cpp; sourceTree = "<group>"; };
		DE66F0C408ABEE6000323D32 /* X86FloatingPoint.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86FloatingPoint.cpp; sourceTree = "<group>"; };
		DE66F0CC08ABEE6000323D32 /* X86InstrBuilder.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86InstrBuilder.h; sourceTree = "<group>"; };
		DE66F0CD08ABEE6000323D32 /* X86InstrInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86InstrInfo.cpp; sourceTree = "<group>"; };
		DE66F0CE08ABEE6000323D32 /* X86InstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86InstrInfo.h; sourceTree = "<group>"; };
		DE66F0CF08ABEE6100323D32 /* X86InstrInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = X86InstrInfo.td; sourceTree = "<group>"; };
		DE66F0D008ABEE6100323D32 /* X86IntelAsmPrinter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86IntelAsmPrinter.cpp; sourceTree = "<group>"; };
		DE66F0D108ABEE6100323D32 /* X86IntelAsmPrinter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86IntelAsmPrinter.h; sourceTree = "<group>"; };
		DE66F0D208ABEE6100323D32 /* X86ISelPattern.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86ISelPattern.cpp; sourceTree = "<group>"; };
		DE66F0D508ABEE6100323D32 /* X86JITInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86JITInfo.cpp; sourceTree = "<group>"; };
		DE66F0D608ABEE6100323D32 /* X86JITInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86JITInfo.h; sourceTree = "<group>"; };
		DE66F0D708ABEE6100323D32 /* X86PeepholeOpt.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86PeepholeOpt.cpp; sourceTree = "<group>"; };
		DE66F0D808ABEE6100323D32 /* X86RegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86RegisterInfo.cpp; sourceTree = "<group>"; };
		DE66F0D908ABEE6100323D32 /* X86RegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86RegisterInfo.h; sourceTree = "<group>"; };
		DE66F0DA08ABEE6100323D32 /* X86RegisterInfo.td */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = X86RegisterInfo.td; sourceTree = "<group>"; };
		DE66F0DB08ABEE6100323D32 /* X86Relocations.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86Relocations.h; sourceTree = "<group>"; };
		DE66F0DC08ABEE6100323D32 /* X86Subtarget.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86Subtarget.cpp; sourceTree = "<group>"; };
		DE66F0DD08ABEE6100323D32 /* X86Subtarget.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86Subtarget.h; sourceTree = "<group>"; };
		DE66F0DE08ABEE6100323D32 /* X86TargetMachine.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = X86TargetMachine.cpp; sourceTree = "<group>"; };
		DE66F0DF08ABEE6100323D32 /* X86TargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = X86TargetMachine.h; sourceTree = "<group>"; };
		DE66F0EA08ABEFB300323D32 /* ExprTypeConvert.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ExprTypeConvert.cpp; sourceTree = "<group>"; };
		DE66F0EF08ABEFB300323D32 /* BlockProfiling.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BlockProfiling.cpp; sourceTree = "<group>"; };
		DE66F0FE08ABEFB300323D32 /* EdgeProfiling.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = EdgeProfiling.cpp; sourceTree = "<group>"; };
		DE66F0FF08ABEFB300323D32 /* EmitFunctions.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = EmitFunctions.cpp; sourceTree = "<group>"; };
		DE66F11B08ABEFB300323D32 /* ProfilingUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ProfilingUtils.cpp; sourceTree = "<group>"; };
		DE66F11C08ABEFB300323D32 /* ProfilingUtils.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ProfilingUtils.h; sourceTree = "<group>"; };
		DE66F11D08ABEFB300323D32 /* TraceBasicBlocks.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TraceBasicBlocks.cpp; sourceTree = "<group>"; };
		DE66F11E08ABEFB300323D32 /* TraceValues.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TraceValues.cpp; sourceTree = "<group>"; };
		DE66F12008ABEFB300323D32 /* ArgumentPromotion.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ArgumentPromotion.cpp; sourceTree = "<group>"; };
		DE66F12108ABEFB300323D32 /* ConstantMerge.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ConstantMerge.cpp; sourceTree = "<group>"; };
		DE66F12208ABEFB300323D32 /* DeadArgumentElimination.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DeadArgumentElimination.cpp; sourceTree = "<group>"; };
		DE66F12308ABEFB300323D32 /* DeadTypeElimination.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DeadTypeElimination.cpp; sourceTree = "<group>"; };
		DE66F14A08ABEFB400323D32 /* ExtractFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ExtractFunction.cpp; sourceTree = "<group>"; };
		DE66F14B08ABEFB400323D32 /* FunctionResolution.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = FunctionResolution.cpp; sourceTree = "<group>"; };
		DE66F14C08ABEFB400323D32 /* GlobalDCE.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GlobalDCE.cpp; sourceTree = "<group>"; };
		DE66F14D08ABEFB400323D32 /* GlobalOpt.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GlobalOpt.cpp; sourceTree = "<group>"; };
		DE66F14E08ABEFB400323D32 /* Inliner.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Inliner.cpp; sourceTree = "<group>"; };
		DE66F14F08ABEFB400323D32 /* Inliner.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Inliner.h; sourceTree = "<group>"; };
		DE66F15008ABEFB400323D32 /* InlineSimple.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InlineSimple.cpp; sourceTree = "<group>"; };
		DE66F15108ABEFB400323D32 /* Internalize.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Internalize.cpp; sourceTree = "<group>"; };
		DE66F15208ABEFB400323D32 /* IPConstantPropagation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IPConstantPropagation.cpp; sourceTree = "<group>"; };
		DE66F15308ABEFB400323D32 /* LoopExtractor.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LoopExtractor.cpp; sourceTree = "<group>"; };
		DE66F15408ABEFB400323D32 /* LowerSetJmp.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LowerSetJmp.cpp; sourceTree = "<group>"; };
		DE66F15608ABEFB400323D32 /* PruneEH.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PruneEH.cpp; sourceTree = "<group>"; };
		DE66F15708ABEFB400323D32 /* RaiseAllocations.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RaiseAllocations.cpp; sourceTree = "<group>"; };
		DE66F15808ABEFB400323D32 /* SimplifyLibCalls.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SimplifyLibCalls.cpp; sourceTree = "<group>"; };
		DE66F15908ABEFB400323D32 /* StripSymbols.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = StripSymbols.cpp; sourceTree = "<group>"; };
		DE66F15A08ABEFB400323D32 /* LevelRaise.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LevelRaise.cpp; sourceTree = "<group>"; };
		DE66F15E08ABEFB400323D32 /* ADCE.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ADCE.cpp; sourceTree = "<group>"; };
		DE66F15F08ABEFB400323D32 /* BasicBlockPlacement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BasicBlockPlacement.cpp; sourceTree = "<group>"; };
		DE66F16008ABEFB400323D32 /* CondPropagate.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CondPropagate.cpp; sourceTree = "<group>"; };
		DE66F16108ABEFB400323D32 /* ConstantProp.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ConstantProp.cpp; sourceTree = "<group>"; };
		DE66F16208ABEFB400323D32 /* CorrelatedExprs.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CorrelatedExprs.cpp; sourceTree = "<group>"; };
		DE66F16308ABEFB400323D32 /* DCE.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DCE.cpp; sourceTree = "<group>"; };
		DE66F16408ABEFB400323D32 /* DeadStoreElimination.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DeadStoreElimination.cpp; sourceTree = "<group>"; };
		DE66F1A308ABEFB400323D32 /* GCSE.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GCSE.cpp; sourceTree = "<group>"; };
		DE66F1A408ABEFB400323D32 /* IndVarSimplify.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = IndVarSimplify.cpp; sourceTree = "<group>"; };
		DE66F1A508ABEFB400323D32 /* InstructionCombining.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InstructionCombining.cpp; sourceTree = "<group>"; };
		DE66F1A608ABEFB400323D32 /* LICM.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LICM.cpp; sourceTree = "<group>"; };
		DE66F1A808ABEFB400323D32 /* LoopStrengthReduce.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LoopStrengthReduce.cpp; sourceTree = "<group>"; };
		DE66F1A908ABEFB400323D32 /* LoopUnroll.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LoopUnroll.cpp; sourceTree = "<group>"; };
		DE66F1AA08ABEFB400323D32 /* LoopUnswitch.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LoopUnswitch.cpp; sourceTree = "<group>"; };
		DE66F1AB08ABEFB400323D32 /* LowerAllocations.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LowerAllocations.cpp; sourceTree = "<group>"; };
		DE66F1AD08ABEFB400323D32 /* LowerGC.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LowerGC.cpp; sourceTree = "<group>"; };
		DE66F1AE08ABEFB400323D32 /* LowerInvoke.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LowerInvoke.cpp; sourceTree = "<group>"; };
		DE66F1AF08ABEFB400323D32 /* LowerPacked.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LowerPacked.cpp; sourceTree = "<group>"; };
		DE66F1B008ABEFB400323D32 /* LowerSelect.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LowerSelect.cpp; sourceTree = "<group>"; };
		DE66F1B108ABEFB400323D32 /* LowerSwitch.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = LowerSwitch.cpp; sourceTree = "<group>"; };
		DE66F1B308ABEFB400323D32 /* Mem2Reg.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Mem2Reg.cpp; sourceTree = "<group>"; };
		DE66F1B508ABEFB400323D32 /* Reassociate.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Reassociate.cpp; sourceTree = "<group>"; };
		DE66F1B608ABEFB400323D32 /* ScalarReplAggregates.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ScalarReplAggregates.cpp; sourceTree = "<group>"; };
		DE66F1B708ABEFB400323D32 /* SCCP.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SCCP.cpp; sourceTree = "<group>"; };
		DE66F1B808ABEFB400323D32 /* SimplifyCFG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SimplifyCFG.cpp; sourceTree = "<group>"; };
		DE66F1B908ABEFB400323D32 /* TailDuplication.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TailDuplication.cpp; sourceTree = "<group>"; };
		DE66F1BA08ABEFB400323D32 /* TailRecursionElimination.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TailRecursionElimination.cpp; sourceTree = "<group>"; };
		DE66F1BB08ABEFB400323D32 /* TransformInternals.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TransformInternals.cpp; sourceTree = "<group>"; };
		DE66F1BC08ABEFB400323D32 /* TransformInternals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TransformInternals.h; sourceTree = "<group>"; };
		DE66F1BE08ABEFB400323D32 /* BasicBlockUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BasicBlockUtils.cpp; sourceTree = "<group>"; };
		DE66F1BF08ABEFB400323D32 /* BreakCriticalEdges.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BreakCriticalEdges.cpp; sourceTree = "<group>"; };
		DE66F1C008ABEFB400323D32 /* CloneFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CloneFunction.cpp; sourceTree = "<group>"; };
		DE66F1C108ABEFB400323D32 /* CloneModule.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CloneModule.cpp; sourceTree = "<group>"; };
		DE66F1C208ABEFB400323D32 /* CloneTrace.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CloneTrace.cpp; sourceTree = "<group>"; };
		DE66F1C308ABEFB400323D32 /* CodeExtractor.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CodeExtractor.cpp; sourceTree = "<group>"; };
		DE66F1E008ABEFB400323D32 /* DemoteRegToStack.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DemoteRegToStack.cpp; sourceTree = "<group>"; };
		DE66F1E108ABEFB400323D32 /* InlineFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InlineFunction.cpp; sourceTree = "<group>"; };
		DE66F1E208ABEFB400323D32 /* Local.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Local.cpp; sourceTree = "<group>"; };
		DE66F1E408ABEFB400323D32 /* PromoteMemoryToRegister.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = PromoteMemoryToRegister.cpp; sourceTree = "<group>"; };
		DE66F1E508ABEFB400323D32 /* SimplifyCFG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = SimplifyCFG.cpp; sourceTree = "<group>"; };
		DE66F1E608ABEFB400323D32 /* UnifyFunctionExitNodes.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = UnifyFunctionExitNodes.cpp; sourceTree = "<group>"; };
		DE66F1E708ABEFB400323D32 /* ValueMapper.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ValueMapper.cpp; sourceTree = "<group>"; };
		DE66F1E808ABEFB400323D32 /* ValueMapper.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ValueMapper.h; sourceTree = "<group>"; };
		DE66F1EA08ABF03100323D32 /* AbstractTypeUser.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AbstractTypeUser.h; sourceTree = "<group>"; };
		DE66F1ED08ABF03100323D32 /* BitSetVector.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BitSetVector.h; sourceTree = "<group>"; };
		DE66F1EE08ABF03100323D32 /* DenseMap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DenseMap.h; sourceTree = "<group>"; };
		DE66F1EF08ABF03100323D32 /* DepthFirstIterator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DepthFirstIterator.h; sourceTree = "<group>"; };
		DE66F1F008ABF03100323D32 /* EquivalenceClasses.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = EquivalenceClasses.h; sourceTree = "<group>"; };
		DE66F1F108ABF03100323D32 /* GraphTraits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = GraphTraits.h; sourceTree = "<group>"; };
		DE66F1F308ABF03100323D32 /* hash_map.in */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = hash_map.in; sourceTree = "<group>"; };
		DE66F1F508ABF03100323D32 /* hash_set.in */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = hash_set.in; sourceTree = "<group>"; };
		DE66F1F608ABF03100323D32 /* HashExtras.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = HashExtras.h; sourceTree = "<group>"; };
		DE66F1F708ABF03100323D32 /* ilist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ilist; sourceTree = "<group>"; };
		DE66F1F908ABF03100323D32 /* iterator.in */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = iterator.in; sourceTree = "<group>"; };
		DE66F1FA08ABF03100323D32 /* PostOrderIterator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PostOrderIterator.h; sourceTree = "<group>"; };
		DE66F1FB08ABF03100323D32 /* SCCIterator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SCCIterator.h; sourceTree = "<group>"; };
		DE66F1FC08ABF03100323D32 /* SetOperations.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SetOperations.h; sourceTree = "<group>"; };
		DE66F1FD08ABF03100323D32 /* SetVector.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SetVector.h; sourceTree = "<group>"; };
		DE66F1FE08ABF03100323D32 /* Statistic.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Statistic.h; sourceTree = "<group>"; };
		DE66F1FF08ABF03100323D32 /* STLExtras.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = STLExtras.h; sourceTree = "<group>"; };
		DE66F20008ABF03100323D32 /* StringExtras.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = StringExtras.h; sourceTree = "<group>"; };
		DE66F20108ABF03100323D32 /* Tree.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Tree.h; sourceTree = "<group>"; };
		DE66F20208ABF03100323D32 /* VectorExtras.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = VectorExtras.h; sourceTree = "<group>"; };
		DE66F20408ABF03100323D32 /* AliasAnalysis.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AliasAnalysis.h; sourceTree = "<group>"; };
		DE66F20508ABF03100323D32 /* AliasSetTracker.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AliasSetTracker.h; sourceTree = "<group>"; };
		DE66F20608ABF03100323D32 /* CallGraph.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CallGraph.h; sourceTree = "<group>"; };
		DE66F20708ABF03100323D32 /* CFGPrinter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CFGPrinter.h; sourceTree = "<group>"; };
		DE66F20808ABF03100323D32 /* ConstantsScanner.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ConstantsScanner.h; sourceTree = "<group>"; };
		DE66F20A08ABF03100323D32 /* DataStructure.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DataStructure.h; sourceTree = "<group>"; };
		DE66F20B08ABF03100323D32 /* DSGraph.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DSGraph.h; sourceTree = "<group>"; };
		DE66F20C08ABF03100323D32 /* DSGraphTraits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DSGraphTraits.h; sourceTree = "<group>"; };
		DE66F20D08ABF03100323D32 /* DSNode.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DSNode.h; sourceTree = "<group>"; };
		DE66F20E08ABF03100323D32 /* DSSupport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DSSupport.h; sourceTree = "<group>"; };
		DE66F20F08ABF03100323D32 /* Dominators.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Dominators.h; sourceTree = "<group>"; };
		DE66F21208ABF03100323D32 /* FindUsedTypes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = FindUsedTypes.h; sourceTree = "<group>"; };
		DE66F21308ABF03100323D32 /* Interval.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Interval.h; sourceTree = "<group>"; };
		DE66F21408ABF03100323D32 /* IntervalIterator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IntervalIterator.h; sourceTree = "<group>"; };
		DE66F21508ABF03100323D32 /* IntervalPartition.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IntervalPartition.h; sourceTree = "<group>"; };
		DE66F21608ABF03100323D32 /* LoadValueNumbering.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LoadValueNumbering.h; sourceTree = "<group>"; };
		DE66F21708ABF03100323D32 /* LoopInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LoopInfo.h; sourceTree = "<group>"; };
		DE66F21808ABF03100323D32 /* Passes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Passes.h; sourceTree = "<group>"; };
		DE66F21908ABF03100323D32 /* PostDominators.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PostDominators.h; sourceTree = "<group>"; };
		DE66F21A08ABF03100323D32 /* ProfileInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ProfileInfo.h; sourceTree = "<group>"; };
		DE66F21B08ABF03100323D32 /* ProfileInfoLoader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ProfileInfoLoader.h; sourceTree = "<group>"; };
		DE66F21C08ABF03100323D32 /* ProfileInfoTypes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ProfileInfoTypes.h; sourceTree = "<group>"; };
		DE66F21D08ABF03100323D32 /* ScalarEvolution.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ScalarEvolution.h; sourceTree = "<group>"; };
		DE66F21E08ABF03100323D32 /* ScalarEvolutionExpander.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ScalarEvolutionExpander.h; sourceTree = "<group>"; };
		DE66F21F08ABF03100323D32 /* ScalarEvolutionExpressions.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ScalarEvolutionExpressions.h; sourceTree = "<group>"; };
		DE66F22008ABF03100323D32 /* Trace.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Trace.h; sourceTree = "<group>"; };
		DE66F22108ABF03100323D32 /* ValueNumbering.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ValueNumbering.h; sourceTree = "<group>"; };
		DE66F22208ABF03100323D32 /* Verifier.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Verifier.h; sourceTree = "<group>"; };
		DE66F22308ABF03100323D32 /* Argument.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Argument.h; sourceTree = "<group>"; };
		DE66F22508ABF03100323D32 /* AsmAnnotationWriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AsmAnnotationWriter.h; sourceTree = "<group>"; };
		DE66F22608ABF03100323D32 /* CachedWriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CachedWriter.h; sourceTree = "<group>"; };
		DE66F22708ABF03100323D32 /* Parser.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Parser.h; sourceTree = "<group>"; };
		DE66F22808ABF03100323D32 /* PrintModulePass.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PrintModulePass.h; sourceTree = "<group>"; };
		DE66F22908ABF03100323D32 /* Writer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Writer.h; sourceTree = "<group>"; };
		DE66F22A08ABF03100323D32 /* BasicBlock.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BasicBlock.h; sourceTree = "<group>"; };
		DE66F22C08ABF03100323D32 /* Analyzer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Analyzer.h; sourceTree = "<group>"; };
		DE66F22D08ABF03100323D32 /* Archive.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Archive.h; sourceTree = "<group>"; };
		DE66F22E08ABF03100323D32 /* BytecodeHandler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BytecodeHandler.h; sourceTree = "<group>"; };
		DE66F22F08ABF03100323D32 /* Format.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Format.h; sourceTree = "<group>"; };
		DE66F23008ABF03100323D32 /* Reader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Reader.h; sourceTree = "<group>"; };
		DE66F23108ABF03100323D32 /* WriteBytecodePass.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WriteBytecodePass.h; sourceTree = "<group>"; };
		DE66F23208ABF03100323D32 /* Writer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Writer.h; sourceTree = "<group>"; };
		DE66F23308ABF03100323D32 /* CallGraphSCCPass.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CallGraphSCCPass.h; sourceTree = "<group>"; };
		DE66F23408ABF03100323D32 /* CallingConv.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CallingConv.h; sourceTree = "<group>"; };
		DE66F23608ABF03100323D32 /* AsmPrinter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AsmPrinter.h; sourceTree = "<group>"; };
		DE66F23708ABF03100323D32 /* ELFWriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ELFWriter.h; sourceTree = "<group>"; };
		DE66F23808ABF03100323D32 /* InstrScheduling.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InstrScheduling.h; sourceTree = "<group>"; };
		DE66F23908ABF03100323D32 /* IntrinsicLowering.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IntrinsicLowering.h; sourceTree = "<group>"; };
		DE66F23A08ABF03100323D32 /* LiveVariables.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LiveVariables.h; sourceTree = "<group>"; };
		DE66F23B08ABF03100323D32 /* MachineBasicBlock.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineBasicBlock.h; sourceTree = "<group>"; };
		DE66F23C08ABF03100323D32 /* MachineCodeEmitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineCodeEmitter.h; sourceTree = "<group>"; };
		DE66F23D08ABF03100323D32 /* MachineConstantPool.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineConstantPool.h; sourceTree = "<group>"; };
		DE66F23E08ABF03100323D32 /* MachineFrameInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineFrameInfo.h; sourceTree = "<group>"; };
		DE66F23F08ABF03100323D32 /* MachineFunction.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineFunction.h; sourceTree = "<group>"; };
		DE66F24008ABF03100323D32 /* MachineFunctionPass.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineFunctionPass.h; sourceTree = "<group>"; };
		DE66F24108ABF03100323D32 /* MachineInstr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineInstr.h; sourceTree = "<group>"; };
		DE66F24208ABF03100323D32 /* MachineInstrBuilder.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineInstrBuilder.h; sourceTree = "<group>"; };
		DE66F24308ABF03100323D32 /* MachineRelocation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MachineRelocation.h; sourceTree = "<group>"; };
		DE66F24408ABF03100323D32 /* Passes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Passes.h; sourceTree = "<group>"; };
		DE66F24508ABF03100323D32 /* SchedGraphCommon.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SchedGraphCommon.h; sourceTree = "<group>"; };
		DE66F24608ABF03100323D32 /* SelectionDAG.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SelectionDAG.h; sourceTree = "<group>"; };
		DE66F24708ABF03100323D32 /* SelectionDAGISel.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SelectionDAGISel.h; sourceTree = "<group>"; };
		DE66F24808ABF03100323D32 /* SelectionDAGNodes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SelectionDAGNodes.h; sourceTree = "<group>"; };
		DE66F24908ABF03100323D32 /* SSARegMap.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SSARegMap.h; sourceTree = "<group>"; };
		DE66F24A08ABF03100323D32 /* ValueSet.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ValueSet.h; sourceTree = "<group>"; };
		DE66F24B08ABF03100323D32 /* ValueTypes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ValueTypes.h; sourceTree = "<group>"; };
		DE66F24E08ABF03100323D32 /* alloca.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = alloca.h; sourceTree = "<group>"; };
		DE66F25008ABF03100323D32 /* config.h.in */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = config.h.in; sourceTree = "<group>"; };
		DE66F25108ABF03100323D32 /* Constant.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Constant.h; sourceTree = "<group>"; };
		DE66F25208ABF03100323D32 /* Constants.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Constants.h; sourceTree = "<group>"; };
		DE66F25408ABF03100323D32 /* Debugger.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Debugger.h; sourceTree = "<group>"; };
		DE66F25508ABF03100323D32 /* InferiorProcess.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InferiorProcess.h; sourceTree = "<group>"; };
		DE66F25608ABF03100323D32 /* ProgramInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ProgramInfo.h; sourceTree = "<group>"; };
		DE66F25708ABF03100323D32 /* RuntimeInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RuntimeInfo.h; sourceTree = "<group>"; };
		DE66F25808ABF03100323D32 /* SourceFile.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SourceFile.h; sourceTree = "<group>"; };
		DE66F25908ABF03100323D32 /* SourceLanguage.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SourceLanguage.h; sourceTree = "<group>"; };
		DE66F25A08ABF03100323D32 /* DerivedTypes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DerivedTypes.h; sourceTree = "<group>"; };
		DE66F25C08ABF03100323D32 /* ExecutionEngine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ExecutionEngine.h; sourceTree = "<group>"; };
		DE66F25D08ABF03100323D32 /* GenericValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = GenericValue.h; sourceTree = "<group>"; };
		DE66F25E08ABF03100323D32 /* Function.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Function.h; sourceTree = "<group>"; };
		DE66F25F08ABF03100323D32 /* GlobalValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = GlobalValue.h; sourceTree = "<group>"; };
		DE66F26008ABF03100323D32 /* GlobalVariable.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = GlobalVariable.h; sourceTree = "<group>"; };
		DE66F26108ABF03100323D32 /* InstrTypes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InstrTypes.h; sourceTree = "<group>"; };
		DE66F26208ABF03100323D32 /* Instruction.def */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = Instruction.def; sourceTree = "<group>"; };
		DE66F26308ABF03100323D32 /* Instruction.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Instruction.h; sourceTree = "<group>"; };
		DE66F26408ABF03100323D32 /* Instructions.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Instructions.h; sourceTree = "<group>"; };
		DE66F26508ABF03100323D32 /* IntrinsicInst.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IntrinsicInst.h; sourceTree = "<group>"; };
		DE66F26608ABF03100323D32 /* Intrinsics.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Intrinsics.h; sourceTree = "<group>"; };
		DE66F26708ABF03100323D32 /* Linker.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Linker.h; sourceTree = "<group>"; };
		DE66F26808ABF03100323D32 /* Module.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Module.h; sourceTree = "<group>"; };
		DE66F26908ABF03200323D32 /* ModuleProvider.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ModuleProvider.h; sourceTree = "<group>"; };
		DE66F26A08ABF03200323D32 /* Pass.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Pass.h; sourceTree = "<group>"; };
		DE66F26B08ABF03200323D32 /* PassAnalysisSupport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PassAnalysisSupport.h; sourceTree = "<group>"; };
		DE66F26C08ABF03200323D32 /* PassManager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PassManager.h; sourceTree = "<group>"; };
		DE66F26D08ABF03200323D32 /* PassSupport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PassSupport.h; sourceTree = "<group>"; };
		DE66F27008ABF03200323D32 /* AIXDataTypesFix.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AIXDataTypesFix.h; sourceTree = "<group>"; };
		DE66F27108ABF03200323D32 /* Annotation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Annotation.h; sourceTree = "<group>"; };
		DE66F27208ABF03200323D32 /* CallSite.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CallSite.h; sourceTree = "<group>"; };
		DE66F27308ABF03200323D32 /* Casting.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Casting.h; sourceTree = "<group>"; };
		DE66F27408ABF03200323D32 /* CFG.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CFG.h; sourceTree = "<group>"; };
		DE66F27508ABF03200323D32 /* CommandLine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CommandLine.h; sourceTree = "<group>"; };
		DE66F27608ABF03200323D32 /* Compressor.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Compressor.h; sourceTree = "<group>"; };
		DE66F27708ABF03200323D32 /* ConstantRange.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ConstantRange.h; sourceTree = "<group>"; };
		DE66F27908ABF03200323D32 /* DataTypes.h.in */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = DataTypes.h.in; sourceTree = "<group>"; };
		DE66F27A08ABF03200323D32 /* Debug.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Debug.h; sourceTree = "<group>"; };
		DE66F27B08ABF03200323D32 /* DOTGraphTraits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOTGraphTraits.h; sourceTree = "<group>"; };
		DE66F27C08ABF03200323D32 /* DynamicLinker.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DynamicLinker.h; sourceTree = "<group>"; };
		DE66F27D08ABF03200323D32 /* ELF.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ELF.h; sourceTree = "<group>"; };
		DE66F27E08ABF03200323D32 /* FileUtilities.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = FileUtilities.h; sourceTree = "<group>"; };
		DE66F27F08ABF03200323D32 /* GetElementPtrTypeIterator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = GetElementPtrTypeIterator.h; sourceTree = "<group>"; };
		DE66F28008ABF03200323D32 /* GraphWriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = GraphWriter.h; sourceTree = "<group>"; };
		DE66F28108ABF03200323D32 /* InstIterator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InstIterator.h; sourceTree = "<group>"; };
		DE66F28208ABF03200323D32 /* InstVisitor.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InstVisitor.h; sourceTree = "<group>"; };
		DE66F28308ABF03200323D32 /* LeakDetector.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LeakDetector.h; sourceTree = "<group>"; };
		DE66F28408ABF03200323D32 /* Mangler.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Mangler.h; sourceTree = "<group>"; };
		DE66F28508ABF03200323D32 /* MathExtras.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MathExtras.h; sourceTree = "<group>"; };
		DE66F28608ABF03200323D32 /* MutexGuard.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MutexGuard.h; sourceTree = "<group>"; };
		DE66F28708ABF03200323D32 /* PassNameParser.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PassNameParser.h; sourceTree = "<group>"; };
		DE66F28808ABF03200323D32 /* PatternMatch.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PatternMatch.h; sourceTree = "<group>"; };
		DE66F28908ABF03200323D32 /* PluginLoader.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PluginLoader.h; sourceTree = "<group>"; };
		DE66F28A08ABF03200323D32 /* SlowOperationInformer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SlowOperationInformer.h; sourceTree = "<group>"; };
		DE66F28B08ABF03200323D32 /* StableBasicBlockNumbering.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = StableBasicBlockNumbering.h; sourceTree = "<group>"; };
		DE66F28C08ABF03200323D32 /* SystemUtils.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SystemUtils.h; sourceTree = "<group>"; };
		DE66F28E08ABF03200323D32 /* Timer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Timer.h; sourceTree = "<group>"; };
		DE66F28F08ABF03200323D32 /* ToolRunner.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ToolRunner.h; sourceTree = "<group>"; };
		DE66F29008ABF03200323D32 /* type_traits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = type_traits.h; sourceTree = "<group>"; };
		DE66F29108ABF03200323D32 /* TypeInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TypeInfo.h; sourceTree = "<group>"; };
		DE66F29208ABF03200323D32 /* SymbolTable.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SymbolTable.h; sourceTree = "<group>"; };
		DE66F29308ABF03200323D32 /* SymbolTableListTraits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = SymbolTableListTraits.h; sourceTree = "<group>"; };
		DE66F29508ABF03200323D32 /* DynamicLibrary.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DynamicLibrary.h; sourceTree = "<group>"; };
		DE66F29608ABF03200323D32 /* LICENSE.TXT */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = LICENSE.TXT; sourceTree = "<group>"; };
		DE66F29708ABF03200323D32 /* MappedFile.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MappedFile.h; sourceTree = "<group>"; };
		DE66F29808ABF03200323D32 /* Memory.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Memory.h; sourceTree = "<group>"; };
		DE66F29908ABF03200323D32 /* Mutex.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Mutex.h; sourceTree = "<group>"; };
		DE66F29A08ABF03200323D32 /* Path.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Path.h; sourceTree = "<group>"; };
		DE66F29B08ABF03200323D32 /* Process.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Process.h; sourceTree = "<group>"; };
		DE66F29C08ABF03200323D32 /* Program.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Program.h; sourceTree = "<group>"; };
		DE66F29D08ABF03200323D32 /* Signals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Signals.h; sourceTree = "<group>"; };
		DE66F29E08ABF03200323D32 /* TimeValue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TimeValue.h; sourceTree = "<group>"; };
		DE66F2A008ABF03200323D32 /* MRegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MRegisterInfo.h; sourceTree = "<group>"; };
		DE66F2A108ABF03200323D32 /* TargetData.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetData.h; sourceTree = "<group>"; };
		DE66F2A208ABF03200323D32 /* TargetFrameInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetFrameInfo.h; sourceTree = "<group>"; };
		DE66F2A308ABF03200323D32 /* TargetInstrInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetInstrInfo.h; sourceTree = "<group>"; };
		DE66F2A408ABF03200323D32 /* TargetJITInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetJITInfo.h; sourceTree = "<group>"; };
		DE66F2A508ABF03200323D32 /* TargetLowering.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetLowering.h; sourceTree = "<group>"; };
		DE66F2A608ABF03200323D32 /* TargetMachine.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetMachine.h; sourceTree = "<group>"; };
		DE66F2A708ABF03200323D32 /* TargetMachineRegistry.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetMachineRegistry.h; sourceTree = "<group>"; };
		DE66F2A808ABF03200323D32 /* TargetOptions.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetOptions.h; sourceTree = "<group>"; };
		DE66F2A908ABF03200323D32 /* TargetSchedInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetSchedInfo.h; sourceTree = "<group>"; };
		DE66F2AA08ABF03200323D32 /* TargetSubtarget.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TargetSubtarget.h; sourceTree = "<group>"; };
		DE66F2AC08ABF03200323D32 /* Instrumentation.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Instrumentation.h; sourceTree = "<group>"; };
		DE66F2AD08ABF03200323D32 /* IPO.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = IPO.h; sourceTree = "<group>"; };
		DE66F2AE08ABF03200323D32 /* LinkAllPasses.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LinkAllPasses.h; sourceTree = "<group>"; };
		DE66F2AF08ABF03200323D32 /* Scalar.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Scalar.h; sourceTree = "<group>"; };
		DE66F2B108ABF03200323D32 /* BasicBlockUtils.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BasicBlockUtils.h; sourceTree = "<group>"; };
		DE66F2B208ABF03200323D32 /* Cloning.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Cloning.h; sourceTree = "<group>"; };
		DE66F2B308ABF03200323D32 /* FunctionUtils.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = FunctionUtils.h; sourceTree = "<group>"; };
		DE66F2B408ABF03200323D32 /* Local.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Local.h; sourceTree = "<group>"; };
		DE66F2B508ABF03200323D32 /* PromoteMemToReg.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PromoteMemToReg.h; sourceTree = "<group>"; };
		DE66F2B608ABF03200323D32 /* UnifyFunctionExitNodes.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = UnifyFunctionExitNodes.h; sourceTree = "<group>"; };
		DE66F2B708ABF03200323D32 /* Type.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Type.h; sourceTree = "<group>"; };
		DE66F2B808ABF03200323D32 /* Use.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Use.h; sourceTree = "<group>"; };
		DE66F2B908ABF03200323D32 /* User.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = User.h; sourceTree = "<group>"; };
		DE66F2BA08ABF03200323D32 /* Value.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Value.h; sourceTree = "<group>"; };
		DE66F2BF08ABF14400323D32 /* AnalysisWrappers.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AnalysisWrappers.cpp; sourceTree = "<group>"; };
		DE66F2C008ABF14400323D32 /* analyze.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = analyze.cpp; sourceTree = "<group>"; };
		DE66F2C908ABF14400323D32 /* GraphPrinters.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GraphPrinters.cpp; sourceTree = "<group>"; };
		DE66F2CC08ABF14400323D32 /* BugDriver.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = BugDriver.cpp; sourceTree = "<group>"; };
		DE66F2CD08ABF14400323D32 /* BugDriver.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = BugDriver.h; sourceTree = "<group>"; };
		DE66F2CE08ABF14400323D32 /* bugpoint.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = bugpoint.cpp; sourceTree = "<group>"; };
		DE66F2CF08ABF14400323D32 /* CrashDebugger.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CrashDebugger.cpp; sourceTree = "<group>"; };
		DE66F2E208ABF14400323D32 /* ExecutionDriver.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ExecutionDriver.cpp; sourceTree = "<group>"; };
		DE66F2E308ABF14400323D32 /* ExtractFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ExtractFunction.cpp; sourceTree = "<group>"; };
		DE66F2E408ABF14400323D32 /* ListReducer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ListReducer.h; sourceTree = "<group>"; };
		DE66F2E608ABF14400323D32 /* Miscompilation.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Miscompilation.cpp; sourceTree = "<group>"; };
		DE66F2E708ABF14400323D32 /* OptimizerDriver.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = OptimizerDriver.cpp; sourceTree = "<group>"; };
		DE66F2E808ABF14400323D32 /* TestPasses.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TestPasses.cpp; sourceTree = "<group>"; };
		DE66F2EE08ABF14400323D32 /* gccas.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = gccas.cpp; path = gccas/gccas.cpp; sourceTree = "<group>"; };
		DE66F2F708ABF14400323D32 /* gccld.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = gccld.cpp; sourceTree = "<group>"; };
		DE66F2F808ABF14400323D32 /* gccld.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = gccld.h; sourceTree = "<group>"; };
		DE66F2F908ABF14400323D32 /* GenerateCode.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = GenerateCode.cpp; sourceTree = "<group>"; };
		DE66F30008ABF14400323D32 /* llc.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = llc.cpp; path = llc/llc.cpp; sourceTree = "<group>"; };
		DE66F30708ABF14400323D32 /* lli.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = lli.cpp; path = lli/lli.cpp; sourceTree = "<group>"; };
		DE66F30E08ABF14400323D32 /* llvm-ar.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-ar.cpp"; path = "llvm-ar/llvm-ar.cpp"; sourceTree = "<group>"; };
		DE66F31508ABF14400323D32 /* llvm-as.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-as.cpp"; path = "llvm-as/llvm-as.cpp"; sourceTree = "<group>"; };
		DE66F31C08ABF14400323D32 /* llvm-bcanalyzer.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-bcanalyzer.cpp"; path = "llvm-bcanalyzer/llvm-bcanalyzer.cpp"; sourceTree = "<group>"; };
		DE66F31F08ABF14400323D32 /* CLICommand.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CLICommand.h; sourceTree = "<group>"; };
		DE66F32008ABF14400323D32 /* CLIDebugger.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CLIDebugger.cpp; sourceTree = "<group>"; };
		DE66F32108ABF14400323D32 /* CLIDebugger.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CLIDebugger.h; sourceTree = "<group>"; };
		DE66F32208ABF14400323D32 /* Commands.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Commands.cpp; sourceTree = "<group>"; };
		DE66F32B08ABF14400323D32 /* llvm-db.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "llvm-db.cpp"; sourceTree = "<group>"; };
		DE66F33208ABF14400323D32 /* llvm-dis.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-dis.cpp"; path = "llvm-dis/llvm-dis.cpp"; sourceTree = "<group>"; };
		DE66F33908ABF14400323D32 /* llvm-extract.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-extract.cpp"; path = "llvm-extract/llvm-extract.cpp"; sourceTree = "<group>"; };
		DE66F34208ABF14400323D32 /* llvm-ld.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = "llvm-ld.cpp"; sourceTree = "<group>"; };
		DE66F34408ABF14400323D32 /* Optimize.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Optimize.cpp; sourceTree = "<group>"; };
		DE66F34A08ABF14400323D32 /* llvm-link.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-link.cpp"; path = "llvm-link/llvm-link.cpp"; sourceTree = "<group>"; };
		DE66F35108ABF14400323D32 /* llvm-nm.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-nm.cpp"; path = "llvm-nm/llvm-nm.cpp"; sourceTree = "<group>"; };
		DE66F35808ABF14500323D32 /* llvm-prof.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-prof.cpp"; path = "llvm-prof/llvm-prof.cpp"; sourceTree = "<group>"; };
		DE66F35F08ABF14500323D32 /* llvm-ranlib.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = "llvm-ranlib.cpp"; path = "llvm-ranlib/llvm-ranlib.cpp"; sourceTree = "<group>"; };
		DE66F36908ABF14500323D32 /* c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = c; sourceTree = "<group>"; };
		DE66F36A08ABF14500323D32 /* CompilerDriver.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CompilerDriver.cpp; sourceTree = "<group>"; };
		DE66F36B08ABF14500323D32 /* CompilerDriver.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CompilerDriver.h; sourceTree = "<group>"; };
		DE66F36D08ABF14500323D32 /* ConfigLexer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ConfigLexer.h; sourceTree = "<group>"; };
		DE66F36E08ABF14500323D32 /* ConfigLexer.l */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.lex; path = ConfigLexer.l; sourceTree = "<group>"; };
		DE66F36F08ABF14500323D32 /* Configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Configuration.cpp; sourceTree = "<group>"; };
		DE66F37008ABF14500323D32 /* Configuration.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Configuration.h; sourceTree = "<group>"; };
		DE66F37108ABF14500323D32 /* cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = cpp; sourceTree = "<group>"; };
		DE66F37D08ABF14500323D32 /* ll */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ll; sourceTree = "<group>"; };
		DE66F37E08ABF14500323D32 /* llvmc.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = llvmc.cpp; sourceTree = "<group>"; };
		DE66F38708ABF14500323D32 /* opt.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = opt.cpp; path = opt/opt.cpp; sourceTree = "<group>"; };
		DE66F38C08ABF35300323D32 /* CREDITS.TXT */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; name = CREDITS.TXT; path = ../CREDITS.TXT; sourceTree = SOURCE_ROOT; };
		DE66F38F08ABF35C00323D32 /* AliasAnalysis.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = AliasAnalysis.html; sourceTree = "<group>"; };
		DE66F39008ABF35C00323D32 /* Bugpoint.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = Bugpoint.html; sourceTree = "<group>"; };
		DE66F39108ABF35C00323D32 /* BytecodeFormat.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = BytecodeFormat.html; sourceTree = "<group>"; };
		DE66F39208ABF35C00323D32 /* CFEBuildInstrs.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = CFEBuildInstrs.html; sourceTree = "<group>"; };
		DE66F39308ABF35C00323D32 /* CodeGenerator.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = CodeGenerator.html; sourceTree = "<group>"; };
		DE66F39408ABF35C00323D32 /* CodingStandards.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = CodingStandards.html; sourceTree = "<group>"; };
		DE66F39708ABF35C00323D32 /* analyze.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = analyze.pod; sourceTree = "<group>"; };
		DE66F39808ABF35C00323D32 /* bugpoint.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = bugpoint.pod; sourceTree = "<group>"; };
		DE66F39908ABF35C00323D32 /* gccas.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = gccas.pod; sourceTree = "<group>"; };
		DE66F39A08ABF35C00323D32 /* gccld.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = gccld.pod; sourceTree = "<group>"; };
		DE66F39E08ABF35C00323D32 /* index.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
		DE66F39F08ABF35C00323D32 /* llc.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = llc.pod; sourceTree = "<group>"; };
		DE66F3A008ABF35C00323D32 /* lli.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = lli.pod; sourceTree = "<group>"; };
		DE66F3A108ABF35C00323D32 /* llvm-ar.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-ar.pod"; sourceTree = "<group>"; };
		DE66F3A208ABF35C00323D32 /* llvm-as.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-as.pod"; sourceTree = "<group>"; };
		DE66F3A308ABF35C00323D32 /* llvm-bcanalyzer.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-bcanalyzer.pod"; sourceTree = "<group>"; };
		DE66F3A408ABF35C00323D32 /* llvm-db.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-db.pod"; sourceTree = "<group>"; };
		DE66F3A508ABF35C00323D32 /* llvm-dis.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-dis.pod"; sourceTree = "<group>"; };
		DE66F3A608ABF35C00323D32 /* llvm-extract.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-extract.pod"; sourceTree = "<group>"; };
		DE66F3A708ABF35C00323D32 /* llvm-ld.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-ld.pod"; sourceTree = "<group>"; };
		DE66F3A808ABF35C00323D32 /* llvm-link.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-link.pod"; sourceTree = "<group>"; };
		DE66F3A908ABF35C00323D32 /* llvm-nm.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-nm.pod"; sourceTree = "<group>"; };
		DE66F3AA08ABF35C00323D32 /* llvm-prof.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-prof.pod"; sourceTree = "<group>"; };
		DE66F3AB08ABF35C00323D32 /* llvm-ranlib.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "llvm-ranlib.pod"; sourceTree = "<group>"; };
		DE66F3AC08ABF35C00323D32 /* llvmc.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = llvmc.pod; sourceTree = "<group>"; };
		DE66F3AD08ABF35C00323D32 /* llvmgcc.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = llvmgcc.pod; sourceTree = "<group>"; };
		DE66F3AE08ABF35C00323D32 /* llvmgxx.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = llvmgxx.pod; sourceTree = "<group>"; };
		DE66F3AF08ABF35C00323D32 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
		DE66F3B408ABF35D00323D32 /* manpage.css */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = manpage.css; sourceTree = "<group>"; };
		DE66F3B508ABF35D00323D32 /* opt.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = opt.pod; sourceTree = "<group>"; };
		DE66F3B808ABF35D00323D32 /* stkrc.pod */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = stkrc.pod; sourceTree = "<group>"; };
		DE66F3B908ABF35D00323D32 /* CommandLine.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = CommandLine.html; sourceTree = "<group>"; };
		DE66F3BA08ABF35D00323D32 /* CompilerDriver.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = CompilerDriver.html; sourceTree = "<group>"; };
		DE66F3BB08ABF35D00323D32 /* CompilerWriterInfo.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = CompilerWriterInfo.html; sourceTree = "<group>"; };
		DE66F3BD08ABF35D00323D32 /* doxygen.cfg.in */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = doxygen.cfg.in; sourceTree = "<group>"; };
		DE66F3BE08ABF35D00323D32 /* doxygen.css */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = doxygen.css; sourceTree = "<group>"; };
		DE66F3BF08ABF35D00323D32 /* doxygen.footer */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = doxygen.footer; sourceTree = "<group>"; };
		DE66F3C008ABF35D00323D32 /* doxygen.header */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = doxygen.header; sourceTree = "<group>"; };
		DE66F3C108ABF35D00323D32 /* doxygen.intro */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = doxygen.intro; sourceTree = "<group>"; };
		DE66F3C208ABF35D00323D32 /* ExtendingLLVM.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = ExtendingLLVM.html; sourceTree = "<group>"; };
		DE66F3C308ABF35D00323D32 /* FAQ.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = FAQ.html; sourceTree = "<group>"; };
		DE66F3C408ABF35D00323D32 /* GarbageCollection.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = GarbageCollection.html; sourceTree = "<group>"; };
		DE66F3C508ABF35D00323D32 /* GettingStarted.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = GettingStarted.html; sourceTree = "<group>"; };
		DE66F3C608ABF35D00323D32 /* GettingStartedVS.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = GettingStartedVS.html; sourceTree = "<group>"; };
		DE66F3E408ABF35D00323D32 /* HowToSubmitABug.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = HowToSubmitABug.html; sourceTree = "<group>"; };
		DE66F3E608ABF35D00323D32 /* Debugging.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = Debugging.gif; sourceTree = "<group>"; };
		DE66F3E708ABF35D00323D32 /* libdeps.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = libdeps.gif; sourceTree = "<group>"; };
		DE66F3E808ABF35D00323D32 /* lines.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = lines.gif; sourceTree = "<group>"; };
		DE66F3E908ABF35D00323D32 /* objdeps.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = objdeps.gif; sourceTree = "<group>"; };
		DE66F3EA08ABF35D00323D32 /* venusflytrap.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = venusflytrap.jpg; sourceTree = "<group>"; };
		DE66F3EB08ABF35D00323D32 /* index.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
		DE66F3EC08ABF35D00323D32 /* LangRef.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = LangRef.html; sourceTree = "<group>"; };
		DE66F3ED08ABF35D00323D32 /* Lexicon.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = Lexicon.html; sourceTree = "<group>"; };
		DE66F3EE08ABF35D00323D32 /* llvm.css */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = llvm.css; sourceTree = "<group>"; };
		DE66F3EF08ABF35D00323D32 /* LLVMVsTheWorld.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = LLVMVsTheWorld.html; sourceTree = "<group>"; };
		DE66F3F108ABF35D00323D32 /* MakefileGuide.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = MakefileGuide.html; sourceTree = "<group>"; };
		DE66F3F208ABF35D00323D32 /* ProgrammersManual.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = ProgrammersManual.html; sourceTree = "<group>"; };
		DE66F3F308ABF35D00323D32 /* Projects.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = Projects.html; sourceTree = "<group>"; };
		DE66F3F408ABF35D00323D32 /* ReleaseNotes.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = ReleaseNotes.html; sourceTree = "<group>"; };
		DE66F3F508ABF35D00323D32 /* SourceLevelDebugging.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = SourceLevelDebugging.html; sourceTree = "<group>"; };
		DE66F3F608ABF35D00323D32 /* Stacker.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = Stacker.html; sourceTree = "<group>"; };
		DE66F3F708ABF35D00323D32 /* SystemLibrary.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = SystemLibrary.html; sourceTree = "<group>"; };
		DE66F3F808ABF35D00323D32 /* TableGenFundamentals.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = TableGenFundamentals.html; sourceTree = "<group>"; };
		DE66F3F908ABF35D00323D32 /* TestingGuide.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = TestingGuide.html; sourceTree = "<group>"; };
		DE66F3FA08ABF35D00323D32 /* UsingLibraries.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = UsingLibraries.html; sourceTree = "<group>"; };
		DE66F3FB08ABF35D00323D32 /* WritingAnLLVMBackend.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = WritingAnLLVMBackend.html; sourceTree = "<group>"; };
		DE66F3FC08ABF35D00323D32 /* WritingAnLLVMPass.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = WritingAnLLVMPass.html; sourceTree = "<group>"; };
		DE66F3FF08ABF37000323D32 /* BFtoLLVM.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = BFtoLLVM.cpp; path = BFtoLLVM/BFtoLLVM.cpp; sourceTree = "<group>"; };
		DE66F40E08ABF37000323D32 /* fibonacci.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = fibonacci.cpp; path = Fibonacci/fibonacci.cpp; sourceTree = "<group>"; };
		DE66F41508ABF37000323D32 /* HowToUseJIT.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = HowToUseJIT.cpp; path = HowToUseJIT/HowToUseJIT.cpp; sourceTree = "<group>"; };
		DE66F41E08ABF37000323D32 /* ModuleMaker.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ModuleMaker.cpp; path = ModuleMaker/ModuleMaker.cpp; sourceTree = "<group>"; };
		DE66F42608ABF37000323D32 /* ParallelJIT.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ParallelJIT.cpp; path = ParallelJIT/ParallelJIT.cpp; sourceTree = "<group>"; };
		DE694D9F08B51E0C0039C106 /* ScheduleDAG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = ScheduleDAG.cpp; sourceTree = "<group>"; };
		DE81704008CFB44D0093BDEF /* fpcmp.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = fpcmp.cpp; path = fpcmp/fpcmp.cpp; sourceTree = "<group>"; };
		DE81704F08CFB44D0093BDEF /* NightlyTest.gnuplot */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = NightlyTest.gnuplot; sourceTree = "<group>"; };
		DE81705008CFB44D0093BDEF /* NightlyTest.pl */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.script.perl; path = NightlyTest.pl; sourceTree = "<group>"; };
		DE81705108CFB44D0093BDEF /* NightlyTestTemplate.html */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.html; path = NightlyTestTemplate.html; sourceTree = "<group>"; };
		DE81705908CFB44D0093BDEF /* AsmWriterEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = AsmWriterEmitter.cpp; sourceTree = "<group>"; };
		DE81705A08CFB44D0093BDEF /* AsmWriterEmitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AsmWriterEmitter.h; sourceTree = "<group>"; };
		DE81705B08CFB44D0093BDEF /* CodeEmitterGen.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CodeEmitterGen.cpp; sourceTree = "<group>"; };
		DE81705C08CFB44D0093BDEF /* CodeEmitterGen.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CodeEmitterGen.h; sourceTree = "<group>"; };
		DE81705D08CFB44D0093BDEF /* CodeGenInstruction.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CodeGenInstruction.h; sourceTree = "<group>"; };
		DE81705E08CFB44D0093BDEF /* CodeGenRegisters.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CodeGenRegisters.h; sourceTree = "<group>"; };
		DE81705F08CFB44D0093BDEF /* CodeGenTarget.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = CodeGenTarget.cpp; sourceTree = "<group>"; };
		DE81706008CFB44D0093BDEF /* CodeGenTarget.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = CodeGenTarget.h; sourceTree = "<group>"; };
		DE81706708CFB44D0093BDEF /* DAGISelEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DAGISelEmitter.cpp; sourceTree = "<group>"; };
		DE81706808CFB44D0093BDEF /* DAGISelEmitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DAGISelEmitter.h; sourceTree = "<group>"; };
		DE81708408CFB44D0093BDEF /* FileLexer.l */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.lex; path = FileLexer.l; sourceTree = "<group>"; };
		DE81708808CFB44D0093BDEF /* FileParser.y */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.yacc; path = FileParser.y; sourceTree = "<group>"; };
		DE81708908CFB44D0093BDEF /* InstrInfoEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = InstrInfoEmitter.cpp; sourceTree = "<group>"; };
		DE81708A08CFB44D0093BDEF /* InstrInfoEmitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InstrInfoEmitter.h; sourceTree = "<group>"; };
		DE81708E08CFB44D0093BDEF /* Record.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Record.cpp; sourceTree = "<group>"; };
		DE81708F08CFB44D0093BDEF /* Record.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Record.h; sourceTree = "<group>"; };
		DE81709008CFB44D0093BDEF /* RegisterInfoEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RegisterInfoEmitter.cpp; sourceTree = "<group>"; };
		DE81709108CFB44D0093BDEF /* RegisterInfoEmitter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RegisterInfoEmitter.h; sourceTree = "<group>"; };
		DE8170AA08CFB44D0093BDEF /* TableGen.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TableGen.cpp; sourceTree = "<group>"; };
		DE8170AB08CFB44D0093BDEF /* TableGenBackend.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = TableGenBackend.cpp; sourceTree = "<group>"; };
		DE8170AC08CFB44D0093BDEF /* TableGenBackend.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = TableGenBackend.h; sourceTree = "<group>"; };
		DEFAB19C0959E97F00E0AB42 /* DwarfWriter.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = DwarfWriter.cpp; path = ../lib/CodeGen/DwarfWriter.cpp; sourceTree = SOURCE_ROOT; };
		DEFAB19D0959E9A100E0AB42 /* DwarfWriter.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = DwarfWriter.h; path = ../include/llvm/CodeGen/DwarfWriter.h; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXGroup section */
		08FB7794FE84155DC02AAC07 /* LLVM */ = {
			isa = PBXGroup;
			children = (
				DE66F1E908ABF03100323D32 /* include/llvm */,
				DE66ECBD08ABEC0700323D32 /* lib/Analysis */,
				DE66EC8808ABEAC900323D32 /* lib/AsmParser */,
				DE66ECBC08ABEB8E00323D32 /* lib/Bytecode */,
				DE66ED3E08ABEC2A00323D32 /* lib/CodeGen */,
				DE66ED9A08ABEC7200323D32 /* lib/Debugger */,
				DE66EDBF08ABEC8F00323D32 /* lib/ExecutionEngine */,
				DE66EDEB08ABEDD300323D32 /* lib/Linker */,
				DE66EDFB08ABEDE600323D32 /* lib/Support */,
				DE66EE4908ABEE3400323D32 /* lib/System */,
				DE66EE9608ABEE5D00323D32 /* lib/Target */,
				DE66F0E108ABEFB300323D32 /* lib/Transforms */,
				DE66EC7508ABE8EF00323D32 /* lib/VMCore */,
				DE66F2BD08ABF14400323D32 /* tools */,
				DE816FAC08CFB44C0093BDEF /* utils */,
				DE66F38D08ABF35C00323D32 /* docs */,
				DE66F3FD08ABF37000323D32 /* examples */,
				DE66F38C08ABF35300323D32 /* CREDITS.TXT */,
			);
			name = LLVM;
			sourceTree = "<group>";
		};
		DE66EC7508ABE8EF00323D32 /* lib/VMCore */ = {
			isa = PBXGroup;
			children = (
				DE66EC5B08ABE86900323D32 /* AsmWriter.cpp */,
				CF73C0BC098A551F00627152 /* AutoUpgrade.cpp */,
				DE66EC5C08ABE86A00323D32 /* BasicBlock.cpp */,
				DE66EC5D08ABE86A00323D32 /* ConstantFolding.cpp */,
				DE66EC5E08ABE86A00323D32 /* ConstantFolding.h */,
				DE66EC5F08ABE86A00323D32 /* ConstantRange.cpp */,
				DE66EC6008ABE86A00323D32 /* Constants.cpp */,
				DE66EC6108ABE86A00323D32 /* Dominators.cpp */,
				DE66EC6208ABE86A00323D32 /* Function.cpp */,
				DE66EC6308ABE86A00323D32 /* Globals.cpp */,
				CF73C0BD098A551F00627152 /* InlineAsm.cpp */,
				DE66EC6408ABE86A00323D32 /* Instruction.cpp */,
				DE66EC6508ABE86A00323D32 /* Instructions.cpp */,
				DE66EC6608ABE86A00323D32 /* LeakDetector.cpp */,
				DE66EC6708ABE86A00323D32 /* Mangler.cpp */,
				DE66EC6808ABE86A00323D32 /* Module.cpp */,
				DE66EC6908ABE86A00323D32 /* ModuleProvider.cpp */,
				DE66EC6A08ABE86A00323D32 /* Pass.cpp */,
				DE66EC6B08ABE86A00323D32 /* PassManagerT.h */,
				DE66EC6C08ABE86A00323D32 /* SymbolTable.cpp */,
				DE66EC6D08ABE86A00323D32 /* SymbolTableListTraitsImpl.h */,
				DE66EC6E08ABE86A00323D32 /* Type.cpp */,
				CF73C0BE098A551F00627152 /* TypeSymbolTable.cpp */,
				DE66EC6F08ABE86A00323D32 /* Value.cpp */,
				CF73C0BF098A551F00627152 /* ValueSymbolTable.cpp */,
				DE66EC7008ABE86A00323D32 /* Verifier.cpp */,
			);
			name = lib/VMCore;
			sourceTree = "<group>";
		};
		DE66EC8808ABEAC900323D32 /* lib/AsmParser */ = {
			isa = PBXGroup;
			children = (
				DE66EC8A08ABEAF000323D32 /* Lexer.l */,
				DE66EC8E08ABEAF000323D32 /* llvmAsmParser.y */,
				DE66EC8F08ABEAF000323D32 /* Parser.cpp */,
				DE66EC9008ABEAF000323D32 /* ParserInternals.h */,
			);
			name = lib/AsmParser;
			sourceTree = "<group>";
		};
		DE66EC9308ABEB3900323D32 /* Reader */ = {
			isa = PBXGroup;
			children = (
				DE66EC9408ABEB3900323D32 /* Analyzer.cpp */,
				DE66EC9E08ABEB3900323D32 /* Reader.cpp */,
				DE66EC9F08ABEB3900323D32 /* Reader.h */,
				DE66ECA008ABEB3900323D32 /* ReaderWrappers.cpp */,
			);
			name = Reader;
			path = ../lib/Bytecode/Reader;
			sourceTree = SOURCE_ROOT;
		};
		DE66ECA108ABEB8000323D32 /* Archive */ = {
			isa = PBXGroup;
			children = (
				DE66ECA208ABEB8000323D32 /* Archive.cpp */,
				DE66ECA308ABEB8000323D32 /* ArchiveInternals.h */,
				DE66ECA408ABEB8000323D32 /* ArchiveReader.cpp */,
				DE66ECA508ABEB8000323D32 /* ArchiveWriter.cpp */,
			);
			name = Archive;
			path = ../lib/Bytecode/Archive;
			sourceTree = SOURCE_ROOT;
		};
		DE66ECAF08ABEB8000323D32 /* Writer */ = {
			isa = PBXGroup;
			children = (
				DE66ECB708ABEB8000323D32 /* SlotCalculator.cpp */,
				DE66ECB808ABEB8000323D32 /* SlotCalculator.h */,
				DE66ECB908ABEB8000323D32 /* SlotTable.h */,
				DE66ECBA08ABEB8000323D32 /* Writer.cpp */,
				DE66ECBB08ABEB8000323D32 /* WriterInternals.h */,
			);
			name = Writer;
			path = ../lib/Bytecode/Writer;
			sourceTree = SOURCE_ROOT;
		};
		DE66ECBC08ABEB8E00323D32 /* lib/Bytecode */ = {
			isa = PBXGroup;
			children = (
				DE66ECA108ABEB8000323D32 /* Archive */,
				DE66EC9308ABEB3900323D32 /* Reader */,
				DE66ECAF08ABEB8000323D32 /* Writer */,
			);
			name = lib/Bytecode;
			sourceTree = "<group>";
		};
		DE66ECBD08ABEC0700323D32 /* lib/Analysis */ = {
			isa = PBXGroup;
			children = (
				DE66ECC408ABEC0700323D32 /* DataStructure */,
				DE66ED1A08ABEC0800323D32 /* IPA */,
				DE66ECBE08ABEC0700323D32 /* AliasAnalysis.cpp */,
				DE66ECBF08ABEC0700323D32 /* AliasAnalysisCounter.cpp */,
				DE66ECC008ABEC0700323D32 /* AliasAnalysisEvaluator.cpp */,
				DE66ECC108ABEC0700323D32 /* AliasSetTracker.cpp */,
				DE66ECC208ABEC0700323D32 /* BasicAliasAnalysis.cpp */,
				DE66ECC308ABEC0700323D32 /* CFGPrinter.cpp */,
				CF73C0B0098A523C00627152 /* ConstantFolding.cpp */,
				DE66ED1708ABEC0800323D32 /* InstCount.cpp */,
				DE66ED1808ABEC0800323D32 /* Interval.cpp */,
				DE66ED1908ABEC0800323D32 /* IntervalPartition.cpp */,
				DE66ED3308ABEC0800323D32 /* LoadValueNumbering.cpp */,
				DE66ED3408ABEC0800323D32 /* LoopInfo.cpp */,
				DE66ED3608ABEC0800323D32 /* PostDominators.cpp */,
				DE66ED3708ABEC0800323D32 /* ProfileInfo.cpp */,
				DE66ED3808ABEC0800323D32 /* ProfileInfoLoader.cpp */,
				DE66ED3908ABEC0800323D32 /* ProfileInfoLoaderPass.cpp */,
				DE66ED3A08ABEC0800323D32 /* ScalarEvolution.cpp */,
				DE66ED3B08ABEC0800323D32 /* ScalarEvolutionExpander.cpp */,
				DE66ED3C08ABEC0800323D32 /* Trace.cpp */,
				DE66ED3D08ABEC0800323D32 /* ValueNumbering.cpp */,
			);
			name = lib/Analysis;
			path = ../lib/Analysis;
			sourceTree = SOURCE_ROOT;
		};
		DE66ECC408ABEC0700323D32 /* DataStructure */ = {
			isa = PBXGroup;
			children = (
				DE66ECC508ABEC0700323D32 /* BottomUpClosure.cpp */,
				DE66ECC608ABEC0700323D32 /* CompleteBottomUp.cpp */,
				DE66ECC708ABEC0700323D32 /* DataStructure.cpp */,
				DE66ECC808ABEC0700323D32 /* DataStructureAA.cpp */,
				DE66ECC908ABEC0700323D32 /* DataStructureOpt.cpp */,
				DE66ECCA08ABEC0700323D32 /* DataStructureStats.cpp */,
				DE66ECE508ABEC0700323D32 /* EquivClassGraphs.cpp */,
				DE66ECE608ABEC0700323D32 /* GraphChecker.cpp */,
				DE66ECE708ABEC0700323D32 /* Local.cpp */,
				DE66ECE908ABEC0700323D32 /* Printer.cpp */,
				DE66ECEA08ABEC0700323D32 /* Steensgaard.cpp */,
				DE66ECEB08ABEC0700323D32 /* TopDownClosure.cpp */,
			);
			path = DataStructure;
			sourceTree = "<group>";
		};
		DE66ED1A08ABEC0800323D32 /* IPA */ = {
			isa = PBXGroup;
			children = (
				DE66ED1B08ABEC0800323D32 /* Andersens.cpp */,
				DE66ED1C08ABEC0800323D32 /* CallGraph.cpp */,
				DE66ED1D08ABEC0800323D32 /* CallGraphSCCPass.cpp */,
				DE66ED2F08ABEC0800323D32 /* FindUsedTypes.cpp */,
				DE66ED3008ABEC0800323D32 /* GlobalsModRef.cpp */,
			);
			path = IPA;
			sourceTree = "<group>";
		};
		DE66ED3E08ABEC2A00323D32 /* lib/CodeGen */ = {
			isa = PBXGroup;
			children = (
				DE66ED8308ABEC2B00323D32 /* SelectionDAG */,
				DE66ED3F08ABEC2A00323D32 /* AsmPrinter.cpp */,
				CFC244570959DEF2009F8C47 /* DwarfWriter.cpp */,
				DE66ED4008ABEC2A00323D32 /* BranchFolding.cpp */,
				DEFAB19C0959E97F00E0AB42 /* DwarfWriter.cpp */,
				DE66ED6F08ABEC2B00323D32 /* ELFWriter.cpp */,
				DE66ED7008ABEC2B00323D32 /* IntrinsicLowering.cpp */,
				DE66ED7108ABEC2B00323D32 /* LiveInterval.cpp */,
				DE66ED7308ABEC2B00323D32 /* LiveIntervalAnalysis.cpp */,
				DE66ED7508ABEC2B00323D32 /* LiveVariables.cpp */,
				DE66ED7608ABEC2B00323D32 /* MachineBasicBlock.cpp */,
				DE66ED7708ABEC2B00323D32 /* MachineCodeEmitter.cpp */,
				CF6529A6095B21A8007F884E /* MachineDebugInfo.cpp */,
				DE66ED7808ABEC2B00323D32 /* MachineFunction.cpp */,
				DE66ED7908ABEC2B00323D32 /* MachineInstr.cpp */,
				DE66ED7B08ABEC2B00323D32 /* Passes.cpp */,
				DE66ED7C08ABEC2B00323D32 /* PHIElimination.cpp */,
				DE66ED7D08ABEC2B00323D32 /* PhysRegTracker.h */,
				DE66ED7E08ABEC2B00323D32 /* PrologEpilogInserter.cpp */,
				DE66ED8008ABEC2B00323D32 /* RegAllocLinearScan.cpp */,
				DE66ED8108ABEC2B00323D32 /* RegAllocLocal.cpp */,
				DE66ED8208ABEC2B00323D32 /* RegAllocSimple.cpp */,
				DE66ED9508ABEC2B00323D32 /* TwoAddressInstructionPass.cpp */,
				DE66ED9608ABEC2B00323D32 /* UnreachableBlockElim.cpp */,
				DE66ED9708ABEC2B00323D32 /* ValueTypes.cpp */,
				DE66ED9808ABEC2B00323D32 /* VirtRegMap.cpp */,
				DE66ED9908ABEC2B00323D32 /* VirtRegMap.h */,
			);
			name = lib/CodeGen;
			path = ../lib/CodeGen;
			sourceTree = SOURCE_ROOT;
		};
		DE66ED8308ABEC2B00323D32 /* SelectionDAG */ = {
			isa = PBXGroup;
			children = (
				CF6B5AFD095C82C300D1EA42 /* DAGCombiner.cpp */,
				DE66ED9008ABEC2B00323D32 /* LegalizeDAG.cpp */,
				CF7FFA1F0985081C008B0087 /* ScheduleDAGList.cpp */,
				CF7FFA200985081C008B0087 /* ScheduleDAGSimple.cpp */,
				DE694D9F08B51E0C0039C106 /* ScheduleDAG.cpp */,
				DE66ED9208ABEC2B00323D32 /* SelectionDAG.cpp */,
				DE66ED9308ABEC2B00323D32 /* SelectionDAGISel.cpp */,
				DE66ED9408ABEC2B00323D32 /* SelectionDAGPrinter.cpp */,
			);
			path = SelectionDAG;
			sourceTree = "<group>";
		};
		DE66ED9A08ABEC7200323D32 /* lib/Debugger */ = {
			isa = PBXGroup;
			children = (
				DE66EDB108ABEC7300323D32 /* Debugger.cpp */,
				DE66EDB208ABEC7300323D32 /* FDHandle.cpp */,
				DE66EDB308ABEC7300323D32 /* FDHandle.h */,
				DE66EDB508ABEC7300323D32 /* ProgramInfo.cpp */,
				DE66EDB608ABEC7300323D32 /* README.txt */,
				DE66EDB708ABEC7300323D32 /* RuntimeInfo.cpp */,
				DE66EDB808ABEC7300323D32 /* SourceFile.cpp */,
				DE66EDB908ABEC7300323D32 /* SourceLanguage-CFamily.cpp */,
				DE66EDBA08ABEC7300323D32 /* SourceLanguage-CPlusPlus.cpp */,
				DE66EDBB08ABEC7300323D32 /* SourceLanguage-Unknown.cpp */,
				DE66EDBC08ABEC7300323D32 /* SourceLanguage.cpp */,
				DE66EDBD08ABEC7300323D32 /* UnixLocalInferiorProcess.cpp */,
			);
			name = lib/Debugger;
			path = ../lib/Debugger;
			sourceTree = SOURCE_ROOT;
		};
		DE66EDBF08ABEC8F00323D32 /* lib/ExecutionEngine */ = {
			isa = PBXGroup;
			children = (
				DE66EDC508ABEC9000323D32 /* Interpreter */,
				DE66EDD308ABEC9000323D32 /* JIT */,
				DE66EDC408ABEC9000323D32 /* ExecutionEngine.cpp */,
			);
			name = lib/ExecutionEngine;
			path = ../lib/ExecutionEngine;
			sourceTree = SOURCE_ROOT;
		};
		DE66EDC508ABEC9000323D32 /* Interpreter */ = {
			isa = PBXGroup;
			children = (
				DE66EDCE08ABEC9000323D32 /* Execution.cpp */,
				DE66EDCF08ABEC9000323D32 /* ExternalFunctions.cpp */,
				DE66EDD008ABEC9000323D32 /* Interpreter.cpp */,
				DE66EDD108ABEC9000323D32 /* Interpreter.h */,
			);
			path = Interpreter;
			sourceTree = "<group>";
		};
		DE66EDD308ABEC9000323D32 /* JIT */ = {
			isa = PBXGroup;
			children = (
				DE66EDDE08ABEC9100323D32 /* Intercept.cpp */,
				DE66EDDF08ABEC9100323D32 /* JIT.cpp */,
				DE66EDE008ABEC9100323D32 /* JIT.h */,
				DE66EDE108ABEC9100323D32 /* JITEmitter.cpp */,
				DE66EDE308ABEC9100323D32 /* TargetSelect.cpp */,
			);
			path = JIT;
			sourceTree = "<group>";
		};
		DE66EDEB08ABEDD300323D32 /* lib/Linker */ = {
			isa = PBXGroup;
			children = (
				DE66EDF608ABEDD300323D32 /* LinkArchives.cpp */,
				DE66EDF708ABEDD300323D32 /* Linker.cpp */,
				DE66EDF808ABEDD300323D32 /* LinkItems.cpp */,
				DE66EDF908ABEDD300323D32 /* LinkModules.cpp */,
			);
			name = lib/Linker;
			path = ../lib/Linker;
			sourceTree = SOURCE_ROOT;
		};
		DE66EDFB08ABEDE600323D32 /* lib/Support */ = {
			isa = PBXGroup;
			children = (
				DE66EDFD08ABEDE600323D32 /* bzip2 */,
				DE66EDFC08ABEDE600323D32 /* Annotation.cpp */,
				DE66EE1D08ABEDE600323D32 /* CommandLine.cpp */,
				DE66EE1E08ABEDE600323D32 /* Compressor.cpp */,
				DE66EE3D08ABEDE600323D32 /* Debug.cpp */,
				DE66EE3E08ABEDE600323D32 /* FileUtilities.cpp */,
				DE66EE3F08ABEDE600323D32 /* IsInf.cpp */,
				DE66EE4008ABEDE600323D32 /* IsNAN.cpp */,
				DE66EE4208ABEDE600323D32 /* PluginLoader.cpp */,
				DE66EE4308ABEDE600323D32 /* SlowOperationInformer.cpp */,
				DE66EE4408ABEDE600323D32 /* Statistic.cpp */,
				DE66EE4508ABEDE700323D32 /* StringExtras.cpp */,
				DE66EE4608ABEDE700323D32 /* SystemUtils.cpp */,
				DE66EE4708ABEDE700323D32 /* Timer.cpp */,
				DE66EE4808ABEDE700323D32 /* ToolRunner.cpp */,
			);
			name = lib/Support;
			path = ../lib/Support;
			sourceTree = SOURCE_ROOT;
		};
		DE66EDFD08ABEDE600323D32 /* bzip2 */ = {
			isa = PBXGroup;
			children = (
				DE66EDFE08ABEDE600323D32 /* blocksort.c */,
				DE66EDFF08ABEDE600323D32 /* bzlib.c */,
				DE66EE0008ABEDE600323D32 /* bzlib.h */,
				DE66EE0108ABEDE600323D32 /* bzlib_private.h */,
				DE66EE0208ABEDE600323D32 /* CHANGES */,
				DE66EE0308ABEDE600323D32 /* compress.c */,
				DE66EE0408ABEDE600323D32 /* crctable.c */,
				DE66EE1508ABEDE600323D32 /* decompress.c */,
				DE66EE1608ABEDE600323D32 /* huffman.c */,
				DE66EE1708ABEDE600323D32 /* LICENSE */,
				DE66EE1908ABEDE600323D32 /* randtable.c */,
				DE66EE1A08ABEDE600323D32 /* README */,
				DE66EE1B08ABEDE600323D32 /* README.COMPILATION.PROBLEMS */,
				DE66EE1C08ABEDE600323D32 /* Y2K_INFO */,
			);
			path = bzip2;
			sourceTree = "<group>";
		};
		DE66EE4908ABEE3400323D32 /* lib/System */ = {
			isa = PBXGroup;
			children = (
				DE66EE7E08ABEE3500323D32 /* Unix */,
				DE66EE8B08ABEE3500323D32 /* Win32 */,
				DE66EE6008ABEE3400323D32 /* DynamicLibrary.cpp */,
				DE66EE6108ABEE3400323D32 /* LICENSE.TXT */,
				DE66EE6208ABEE3400323D32 /* ltdl.c */,
				DE66EE6308ABEE3400323D32 /* ltdl.h */,
				DE66EE6508ABEE3400323D32 /* MappedFile.cpp */,
				DE66EE6608ABEE3400323D32 /* Memory.cpp */,
				DE66EE6708ABEE3400323D32 /* Mutex.cpp */,
				DE66EE6808ABEE3400323D32 /* Path.cpp */,
				DE66EE6908ABEE3400323D32 /* Process.cpp */,
				DE66EE6A08ABEE3400323D32 /* Program.cpp */,
				DE66EE6B08ABEE3400323D32 /* README.txt */,
				DE66EE7C08ABEE3400323D32 /* Signals.cpp */,
				DE66EE7D08ABEE3400323D32 /* TimeValue.cpp */,
			);
			name = lib/System;
			path = ../lib/System;
			sourceTree = SOURCE_ROOT;
		};
		DE66EE7E08ABEE3500323D32 /* Unix */ = {
			isa = PBXGroup;
			children = (
				DE66EE7F08ABEE3500323D32 /* MappedFile.inc */,
				DE66EE8008ABEE3500323D32 /* Memory.inc */,
				DE66EE8108ABEE3500323D32 /* Mutex.inc */,
				DE66EE8208ABEE3500323D32 /* Path.inc */,
				DE66EE8308ABEE3500323D32 /* Process.inc */,
				DE66EE8408ABEE3500323D32 /* Program.inc */,
				DE66EE8508ABEE3500323D32 /* README.txt */,
				DE66EE8608ABEE3500323D32 /* Signals.inc */,
				DE66EE8708ABEE3500323D32 /* SUS */,
				DE66EE8908ABEE3500323D32 /* TimeValue.inc */,
				DE66EE8A08ABEE3500323D32 /* Unix.h */,
			);
			path = Unix;
			sourceTree = "<group>";
		};
		DE66EE8708ABEE3500323D32 /* SUS */ = {
			isa = PBXGroup;
			children = (
				DE66EE8808ABEE3500323D32 /* Process.cpp */,
			);
			path = SUS;
			sourceTree = "<group>";
		};
		DE66EE8B08ABEE3500323D32 /* Win32 */ = {
			isa = PBXGroup;
			children = (
				DE66EE8C08ABEE3500323D32 /* DynamicLibrary.inc */,
				DE66EE8D08ABEE3500323D32 /* MappedFile.inc */,
				DE66EE8E08ABEE3500323D32 /* Memory.inc */,
				DE66EE8F08ABEE3500323D32 /* Mutex.inc */,
				DE66EE9008ABEE3500323D32 /* Path.inc */,
				DE66EE9108ABEE3500323D32 /* Process.inc */,
				DE66EE9208ABEE3500323D32 /* Program.inc */,
				DE66EE9308ABEE3500323D32 /* Signals.inc */,
				DE66EE9408ABEE3500323D32 /* TimeValue.inc */,
				DE66EE9508ABEE3500323D32 /* Win32.h */,
			);
			path = Win32;
			sourceTree = "<group>";
		};
		DE66EE9608ABEE5D00323D32 /* lib/Target */ = {
			isa = PBXGroup;
			children = (
				DE66EE9708ABEE5D00323D32 /* Alpha */,
				DE66EEC908ABEE5E00323D32 /* CBackend */,
				DE66EEE508ABEE5E00323D32 /* IA64 */,
				DE66EF1108ABEE5E00323D32 /* PowerPC */,
				DE66EF7008ABEE5F00323D32 /* Skeleton */,
				DE66EF9408ABEE5F00323D32 /* SparcV8 */,
				DE66EFC908ABEE5F00323D32 /* SparcV9 */,
				DE66F09308ABEE6000323D32 /* X86 */,
				DE66EF1008ABEE5E00323D32 /* MRegisterInfo.cpp */,
				CF9BCD1508C75070001E7011 /* SubtargetFeature.cpp */,
				DE66F08A08ABEE6000323D32 /* Target.td */,
				DE66F08B08ABEE6000323D32 /* TargetData.cpp */,
				DE66F08C08ABEE6000323D32 /* TargetFrameInfo.cpp */,
				DE66F08D08ABEE6000323D32 /* TargetInstrInfo.cpp */,
				DE66F08E08ABEE6000323D32 /* TargetLowering.cpp */,
				DE66F08F08ABEE6000323D32 /* TargetMachine.cpp */,
				DE66F09008ABEE6000323D32 /* TargetMachineRegistry.cpp */,
				DE66F09108ABEE6000323D32 /* TargetSchedInfo.cpp */,
				CF490D14090541D30072DB1C /* TargetSchedule.td */,
				CF490D15090541D30072DB1C /* TargetSelectionDAG.td */,
				DE66F09208ABEE6000323D32 /* TargetSubtarget.cpp */,
			);
			name = lib/Target;
			path = ../lib/Target;
			sourceTree = SOURCE_ROOT;
		};
		DE66EE9708ABEE5D00323D32 /* Alpha */ = {
			isa = PBXGroup;
			children = (
				DE66EE9808ABEE5E00323D32 /* Alpha.h */,
				CFBD8B1A090E76540020B107 /* AlphaISelDAGToDAG.cpp */,
				CFBD8B1B090E76540020B107 /* AlphaISelLowering.cpp */,
				CFBD8B1C090E76540020B107 /* AlphaISelLowering.h */,
				CFBD8B1D090E76540020B107 /* AlphaSubtarget.cpp */,
				CFBD8B1E090E76540020B107 /* AlphaSubtarget.h */,
				DE66EE9908ABEE5E00323D32 /* Alpha.td */,
				DE66EE9A08ABEE5E00323D32 /* AlphaAsmPrinter.cpp */,
				DE66EE9B08ABEE5E00323D32 /* AlphaCodeEmitter.cpp */,
				DE66EEA308ABEE5E00323D32 /* AlphaInstrFormats.td */,
				DE66EEA408ABEE5E00323D32 /* AlphaInstrInfo.cpp */,
				DE66EEA508ABEE5E00323D32 /* AlphaInstrInfo.h */,
				DE66EEA608ABEE5E00323D32 /* AlphaInstrInfo.td */,
				DE66EEA908ABEE5E00323D32 /* AlphaJITInfo.cpp */,
				DE66EEAA08ABEE5E00323D32 /* AlphaJITInfo.h */,
				DE66EEAB08ABEE5E00323D32 /* AlphaRegisterInfo.cpp */,
				DE66EEAC08ABEE5E00323D32 /* AlphaRegisterInfo.h */,
				DE66EEAD08ABEE5E00323D32 /* AlphaRegisterInfo.td */,
				DE66EEAE08ABEE5E00323D32 /* AlphaRelocations.h */,
				DE66EEAF08ABEE5E00323D32 /* AlphaTargetMachine.cpp */,
				DE66EEB008ABEE5E00323D32 /* AlphaTargetMachine.h */,
			);
			path = Alpha;
			sourceTree = "<group>";
		};
		DE66EEC908ABEE5E00323D32 /* CBackend */ = {
			isa = PBXGroup;
			children = (
				DE66EECA08ABEE5E00323D32 /* CTargetMachine.h */,
				DE66EED008ABEE5E00323D32 /* Writer.cpp */,
			);
			path = CBackend;
			sourceTree = "<group>";
		};
		DE66EEE508ABEE5E00323D32 /* IA64 */ = {
			isa = PBXGroup;
			children = (
				DE66EEF808ABEE5E00323D32 /* IA64.h */,
				DE66EEF908ABEE5E00323D32 /* IA64.td */,
				DE66EEFA08ABEE5E00323D32 /* IA64AsmPrinter.cpp */,
				CF73C0B6098A53EF00627152 /* IA64Bundling.cpp */,
				DE66EF0108ABEE5E00323D32 /* IA64InstrBuilder.h */,
				DE66EF0208ABEE5E00323D32 /* IA64InstrFormats.td */,
				DE66EF0308ABEE5E00323D32 /* IA64InstrInfo.cpp */,
				DE66EF0408ABEE5E00323D32 /* IA64InstrInfo.h */,
				DE66EF0508ABEE5E00323D32 /* IA64InstrInfo.td */,
				CFC244BF0959F2E3009F8C47 /* IA64ISelDAGToDAG.cpp */,
				CFC244C00959F2E3009F8C47 /* IA64ISelLowering.cpp */,
				CFC244C10959F2E3009F8C47 /* IA64ISelLowering.h */,
				DE66EF0708ABEE5E00323D32 /* IA64MachineFunctionInfo.h */,
				DE66EF0808ABEE5E00323D32 /* IA64RegisterInfo.cpp */,
				DE66EF0908ABEE5E00323D32 /* IA64RegisterInfo.h */,
				DE66EF0A08ABEE5E00323D32 /* IA64RegisterInfo.td */,
				DE66EF0B08ABEE5E00323D32 /* IA64TargetMachine.cpp */,
				DE66EF0C08ABEE5E00323D32 /* IA64TargetMachine.h */,
				DE66EF0E08ABEE5E00323D32 /* README */,
			);
			path = IA64;
			sourceTree = "<group>";
		};
		DE66EF1108ABEE5E00323D32 /* PowerPC */ = {
			isa = PBXGroup;
			children = (
				CF490D890906A78C0072DB1C /* PPC.td */,
				CF490CD50903C9260072DB1C /* PPC.h */,
				CF490CD60903C9260072DB1C /* PPCAsmPrinter.cpp */,
				CF490CD70903C9260072DB1C /* PPCBranchSelector.cpp */,
				CF490CD80903C9260072DB1C /* PPCCodeEmitter.cpp */,
				CF490CD90903C9260072DB1C /* PPCFrameInfo.h */,
				CF490CDA0903C9260072DB1C /* PPCInstrBuilder.h */,
				CF490CDB0903C9260072DB1C /* PPCInstrFormats.td */,
				CF490CDC0903C9260072DB1C /* PPCInstrInfo.cpp */,
				CF490CDD0903C9260072DB1C /* PPCInstrInfo.h */,
				CF490CDE0903C9260072DB1C /* PPCInstrInfo.td */,
				CF490CDF0903C9260072DB1C /* PPCISelDAGToDAG.cpp */,
				CF490CE00903C9260072DB1C /* PPCISelLowering.cpp */,
				CF490CE10903C9260072DB1C /* PPCISelLowering.h */,
				CF490CE30903C9260072DB1C /* PPCJITInfo.cpp */,
				CF490CE40903C9260072DB1C /* PPCJITInfo.h */,
				CF490CE50903C9260072DB1C /* PPCRegisterInfo.cpp */,
				CF490CE60903C9260072DB1C /* PPCRegisterInfo.h */,
				CF490CE70903C9260072DB1C /* PPCRegisterInfo.td */,
				CF490CE80903C9260072DB1C /* PPCRelocations.h */,
				CF490D0E090541A30072DB1C /* PPCSchedule.td */,
				CF490D0F090541A30072DB1C /* PPCScheduleG3.td */,
				CF490D10090541A30072DB1C /* PPCScheduleG4.td */,
				CF490D11090541A30072DB1C /* PPCScheduleG4Plus.td */,
				CF490D12090541A30072DB1C /* PPCScheduleG5.td */,
				CF490CE90903C9260072DB1C /* PPCSubtarget.cpp */,
				CF490CEA0903C9260072DB1C /* PPCSubtarget.h */,
				CF490CEB0903C9260072DB1C /* PPCTargetMachine.cpp */,
				CF490CEC0903C9260072DB1C /* PPCTargetMachine.h */,
				DE66EF3D08ABEE5F00323D32 /* LICENSE.TXT */,
				DE4DA03F091147DD0012D44B /* PPC.h */,
				DE4DA040091147DD0012D44B /* PPC.td */,
				DE4DA041091147DD0012D44B /* PPCAsmPrinter.cpp */,
				DE4DA042091147DD0012D44B /* PPCBranchSelector.cpp */,
				DE4DA043091147DD0012D44B /* PPCCodeEmitter.cpp */,
				DE4DA044091147DD0012D44B /* PPCFrameInfo.h */,
				DE4DA045091147ED0012D44B /* PPCInstrBuilder.h */,
				DE4DA046091147ED0012D44B /* PPCInstrFormats.td */,
				DE4DA047091147ED0012D44B /* PPCInstrInfo.cpp */,
				DE4DA048091147ED0012D44B /* PPCInstrInfo.h */,
				DE4DA049091147ED0012D44B /* PPCInstrInfo.td */,
				DE4DA04A091147ED0012D44B /* PPCISelDAGToDAG.cpp */,
				DE4DA04B091147ED0012D44B /* PPCISelLowering.cpp */,
				DE4DA04C091147ED0012D44B /* PPCISelLowering.h */,
				DE4DA04E091147ED0012D44B /* PPCJITInfo.cpp */,
				DE4DA04F091147ED0012D44B /* PPCJITInfo.h */,
				DE4DA050091147ED0012D44B /* PPCRegisterInfo.cpp */,
				DE4DA051091147ED0012D44B /* PPCRegisterInfo.h */,
				DE4DA052091147ED0012D44B /* PPCRegisterInfo.td */,
				DE4DA053091147ED0012D44B /* PPCRelocations.h */,
				DE4DA054091147ED0012D44B /* PPCSchedule.td */,
				DE4DA055091147ED0012D44B /* PPCScheduleG3.td */,
				DE4DA056091147ED0012D44B /* PPCScheduleG4.td */,
				DE4DA057091147ED0012D44B /* PPCScheduleG4Plus.td */,
				DE4DA058091147ED0012D44B /* PPCScheduleG5.td */,
				DE4DA059091147ED0012D44B /* PPCSubtarget.cpp */,
				DE4DA05A091147ED0012D44B /* PPCSubtarget.h */,
				DE4DA05B091147ED0012D44B /* PPCTargetMachine.cpp */,
				DE4DA05C091147ED0012D44B /* PPCTargetMachine.h */,
				DE66EF6F08ABEE5F00323D32 /* README.txt */,
			);
			path = PowerPC;
			sourceTree = "<group>";
		};
		DE66EF7008ABEE5F00323D32 /* Skeleton */ = {
			isa = PBXGroup;
			children = (
				DE66EF8208ABEE5F00323D32 /* README.txt */,
				DE66EF8308ABEE5F00323D32 /* Skeleton.h */,
				DE66EF8408ABEE5F00323D32 /* Skeleton.td */,
				DE66EF8A08ABEE5F00323D32 /* SkeletonInstrInfo.cpp */,
				DE66EF8B08ABEE5F00323D32 /* SkeletonInstrInfo.h */,
				DE66EF8C08ABEE5F00323D32 /* SkeletonInstrInfo.td */,
				DE66EF8D08ABEE5F00323D32 /* SkeletonJITInfo.cpp */,
				DE66EF8E08ABEE5F00323D32 /* SkeletonJITInfo.h */,
				DE66EF8F08ABEE5F00323D32 /* SkeletonRegisterInfo.cpp */,
				DE66EF9008ABEE5F00323D32 /* SkeletonRegisterInfo.h */,
				DE66EF9108ABEE5F00323D32 /* SkeletonRegisterInfo.td */,
				DE66EF9208ABEE5F00323D32 /* SkeletonTargetMachine.cpp */,
				DE66EF9308ABEE5F00323D32 /* SkeletonTargetMachine.h */,
			);
			path = Skeleton;
			sourceTree = "<group>";
		};
		DE66EF9408ABEE5F00323D32 /* SparcV8 */ = {
			isa = PBXGroup;
			children = (
				DE66EFAF08ABEE5F00323D32 /* DelaySlotFiller.cpp */,
				DE66EFB008ABEE5F00323D32 /* FPMover.cpp */,
				DE66EFB208ABEE5F00323D32 /* README.txt */,
				DE66EFB308ABEE5F00323D32 /* SparcV8.h */,
				DE66EFB408ABEE5F00323D32 /* SparcV8.td */,
				DE66EFB508ABEE5F00323D32 /* SparcV8AsmPrinter.cpp */,
				DE66EFBD08ABEE5F00323D32 /* SparcV8InstrFormats.td */,
				DE66EFBE08ABEE5F00323D32 /* SparcV8InstrInfo.cpp */,
				DE66EFBF08ABEE5F00323D32 /* SparcV8InstrInfo.h */,
				DE66EFC008ABEE5F00323D32 /* SparcV8InstrInfo.td */,
				DE66EFC408ABEE5F00323D32 /* SparcV8RegisterInfo.cpp */,
				DE66EFC508ABEE5F00323D32 /* SparcV8RegisterInfo.h */,
				DE66EFC608ABEE5F00323D32 /* SparcV8RegisterInfo.td */,
				CFC244BE0959F284009F8C47 /* SparcV8ISelDAGToDAG.cpp */,
				CF73C0B4098A538B00627152 /* SparcV8Subtarget.cpp */,
				CF73C0B5098A538B00627152 /* SparcV8Subtarget.h */,
				DE66EFC708ABEE5F00323D32 /* SparcV8TargetMachine.cpp */,
				DE66EFC808ABEE5F00323D32 /* SparcV8TargetMachine.h */,
			);
			path = SparcV8;
			sourceTree = "<group>";
		};
		DE66EFC908ABEE5F00323D32 /* SparcV9 */ = {
			isa = PBXGroup;
			children = (
				DE66EFFC08ABEE6000323D32 /* InstrSched */,
				DE66F00F08ABEE6000323D32 /* LiveVar */,
				DE66F02608ABEE6000323D32 /* ModuloScheduling */,
				DE66F04608ABEE6000323D32 /* RegAlloc */,
				DE66EFFA08ABEE6000323D32 /* DecomposeMultiDimRefs.cpp */,
				DE66EFFB08ABEE6000323D32 /* EmitBytecodeToAssembly.cpp */,
				DE66F00E08ABEE6000323D32 /* InternalGlobalMapper.cpp */,
				DE66F01E08ABEE6000323D32 /* MachineCodeForInstruction.cpp */,
				DE66F01F08ABEE6000323D32 /* MachineCodeForInstruction.h */,
				DE66F02008ABEE6000323D32 /* MachineFunctionInfo.cpp */,
				DE66F02108ABEE6000323D32 /* MachineFunctionInfo.h */,
				DE66F02208ABEE6000323D32 /* MachineInstrAnnot.h */,
				DE66F02408ABEE6000323D32 /* MappingInfo.cpp */,
				DE66F02508ABEE6000323D32 /* MappingInfo.h */,
				DE66F06208ABEE6000323D32 /* SparcV9.burg.in */,
				DE66F06608ABEE6000323D32 /* SparcV9.td */,
				DE66F06708ABEE6000323D32 /* SparcV9_F2.td */,
				DE66F06808ABEE6000323D32 /* SparcV9_F3.td */,
				DE66F06908ABEE6000323D32 /* SparcV9_F4.td */,
				DE66F06A08ABEE6000323D32 /* SparcV9AsmPrinter.cpp */,
				DE66F06B08ABEE6000323D32 /* SparcV9BurgISel.cpp */,
				DE66F06C08ABEE6000323D32 /* SparcV9BurgISel.h */,
				DE66F06D08ABEE6000323D32 /* SparcV9CodeEmitter.cpp */,
				DE66F06E08ABEE6000323D32 /* SparcV9CodeEmitter.h */,
				DE66F06F08ABEE6000323D32 /* SparcV9FrameInfo.cpp */,
				DE66F07008ABEE6000323D32 /* SparcV9FrameInfo.h */,
				DE66F07208ABEE6000323D32 /* SparcV9Instr.def */,
				DE66F07308ABEE6000323D32 /* SparcV9InstrForest.h */,
				DE66F07408ABEE6000323D32 /* SparcV9InstrInfo.h */,
				DE66F07508ABEE6000323D32 /* SparcV9InstrInfo.td */,
				DE66F07608ABEE6000323D32 /* SparcV9Internals.h */,
				DE66F07708ABEE6000323D32 /* SparcV9JITInfo.cpp */,
				DE66F07808ABEE6000323D32 /* SparcV9JITInfo.h */,
				DE66F07908ABEE6000323D32 /* SparcV9PeepholeOpts.cpp */,
				DE66F07A08ABEE6000323D32 /* SparcV9PreSelection.cpp */,
				DE66F07B08ABEE6000323D32 /* SparcV9PrologEpilogInserter.cpp */,
				DE66F07C08ABEE6000323D32 /* SparcV9RegClassInfo.cpp */,
				DE66F07D08ABEE6000323D32 /* SparcV9RegClassInfo.h */,
				DE66F07E08ABEE6000323D32 /* SparcV9RegInfo.cpp */,
				DE66F07F08ABEE6000323D32 /* SparcV9RegInfo.h */,
				DE66F08008ABEE6000323D32 /* SparcV9RegisterInfo.cpp */,
				DE66F08108ABEE6000323D32 /* SparcV9RegisterInfo.h */,
				DE66F08208ABEE6000323D32 /* SparcV9RegisterInfo.td */,
				DE66F08308ABEE6000323D32 /* SparcV9Relocations.h */,
				DE66F08408ABEE6000323D32 /* SparcV9SchedInfo.cpp */,
				DE66F08508ABEE6000323D32 /* SparcV9StackSlots.cpp */,
				DE66F08608ABEE6000323D32 /* SparcV9TargetMachine.cpp */,
				DE66F08708ABEE6000323D32 /* SparcV9TargetMachine.h */,
				DE66F08808ABEE6000323D32 /* SparcV9TmpInstr.cpp */,
				DE66F08908ABEE6000323D32 /* SparcV9TmpInstr.h */,
			);
			path = SparcV9;
			sourceTree = "<group>";
		};
		DE66EFFC08ABEE6000323D32 /* InstrSched */ = {
			isa = PBXGroup;
			children = (
				DE66F00708ABEE6000323D32 /* InstrScheduling.cpp */,
				DE66F00908ABEE6000323D32 /* SchedGraph.cpp */,
				DE66F00A08ABEE6000323D32 /* SchedGraph.h */,
				DE66F00B08ABEE6000323D32 /* SchedGraphCommon.cpp */,
				DE66F00C08ABEE6000323D32 /* SchedPriorities.cpp */,
				DE66F00D08ABEE6000323D32 /* SchedPriorities.h */,
			);
			path = InstrSched;
			sourceTree = "<group>";
		};
		DE66F00F08ABEE6000323D32 /* LiveVar */ = {
			isa = PBXGroup;
			children = (
				DE66F01008ABEE6000323D32 /* BBLiveVar.cpp */,
				DE66F01108ABEE6000323D32 /* BBLiveVar.h */,
				DE66F01A08ABEE6000323D32 /* FunctionLiveVarInfo.cpp */,
				DE66F01B08ABEE6000323D32 /* FunctionLiveVarInfo.h */,
				DE66F01D08ABEE6000323D32 /* ValueSet.cpp */,
			);
			path = LiveVar;
			sourceTree = "<group>";
		};
		DE66F02608ABEE6000323D32 /* ModuloScheduling */ = {
			isa = PBXGroup;
			children = (
				DE66F03708ABEE6000323D32 /* DependenceAnalyzer.cpp */,
				DE66F03808ABEE6000323D32 /* DependenceAnalyzer.h */,
				DE66F03A08ABEE6000323D32 /* ModuloScheduling.cpp */,
				DE66F03B08ABEE6000323D32 /* ModuloScheduling.h */,
				DE66F03C08ABEE6000323D32 /* ModuloSchedulingSuperBlock.cpp */,
				DE66F03D08ABEE6000323D32 /* ModuloSchedulingSuperBlock.h */,
				DE66F03E08ABEE6000323D32 /* MSchedGraph.cpp */,
				DE66F03F08ABEE6000323D32 /* MSchedGraph.h */,
				DE66F04008ABEE6000323D32 /* MSchedGraphSB.cpp */,
				DE66F04108ABEE6000323D32 /* MSchedGraphSB.h */,
				DE66F04208ABEE6000323D32 /* MSSchedule.cpp */,
				DE66F04308ABEE6000323D32 /* MSSchedule.h */,
				DE66F04408ABEE6000323D32 /* MSScheduleSB.cpp */,
				DE66F04508ABEE6000323D32 /* MSScheduleSB.h */,
			);
			path = ModuloScheduling;
			sourceTree = "<group>";
		};
		DE66F04608ABEE6000323D32 /* RegAlloc */ = {
			isa = PBXGroup;
			children = (
				DE66F04708ABEE6000323D32 /* AllocInfo.h */,
				DE66F05408ABEE6000323D32 /* IGNode.cpp */,
				DE66F05508ABEE6000323D32 /* IGNode.h */,
				DE66F05608ABEE6000323D32 /* InterferenceGraph.cpp */,
				DE66F05708ABEE6000323D32 /* InterferenceGraph.h */,
				DE66F05808ABEE6000323D32 /* LiveRange.h */,
				DE66F05908ABEE6000323D32 /* LiveRangeInfo.cpp */,
				DE66F05A08ABEE6000323D32 /* LiveRangeInfo.h */,
				DE66F05D08ABEE6000323D32 /* PhyRegAlloc.cpp */,
				DE66F05E08ABEE6000323D32 /* PhyRegAlloc.h */,
				DE66F05F08ABEE6000323D32 /* RegAllocCommon.h */,
				DE66F06008ABEE6000323D32 /* RegClass.cpp */,
				DE66F06108ABEE6000323D32 /* RegClass.h */,
			);
			path = RegAlloc;
			sourceTree = "<group>";
		};
		DE66F09308ABEE6000323D32 /* X86 */ = {
			isa = PBXGroup;
			children = (
				DE66F0BC08ABEE6000323D32 /* X86.h */,
				DE66F0BD08ABEE6000323D32 /* X86.td */,
				DE66F0BE08ABEE6000323D32 /* X86AsmPrinter.cpp */,
				DE66F0BF08ABEE6000323D32 /* X86AsmPrinter.h */,
				DE66F0C008ABEE6000323D32 /* X86ATTAsmPrinter.cpp */,
				DE66F0C108ABEE6000323D32 /* X86ATTAsmPrinter.h */,
				DE66F0C208ABEE6000323D32 /* X86CodeEmitter.cpp */,
				DE66F0C308ABEE6000323D32 /* X86ELFWriter.cpp */,
				DE66F0C408ABEE6000323D32 /* X86FloatingPoint.cpp */,
				DE66F0CC08ABEE6000323D32 /* X86InstrBuilder.h */,
				DE66F0CD08ABEE6000323D32 /* X86InstrInfo.cpp */,
				DE66F0CE08ABEE6000323D32 /* X86InstrInfo.h */,
				DE66F0CF08ABEE6100323D32 /* X86InstrInfo.td */,
				DE66F0D008ABEE6100323D32 /* X86IntelAsmPrinter.cpp */,
				DE66F0D108ABEE6100323D32 /* X86IntelAsmPrinter.h */,
				DE66F0D208ABEE6100323D32 /* X86ISelPattern.cpp */,
				DE66F0D508ABEE6100323D32 /* X86JITInfo.cpp */,
				DE66F0D608ABEE6100323D32 /* X86JITInfo.h */,
				DE66F0D708ABEE6100323D32 /* X86PeepholeOpt.cpp */,
				DE66F0D808ABEE6100323D32 /* X86RegisterInfo.cpp */,
				DE66F0D908ABEE6100323D32 /* X86RegisterInfo.h */,
				DE66F0DA08ABEE6100323D32 /* X86RegisterInfo.td */,
				DE66F0DB08ABEE6100323D32 /* X86Relocations.h */,
				CFC244BB0959F24C009F8C47 /* X86ISelDAGToDAG.cpp */,
				CFC244BC0959F24C009F8C47 /* X86ISelLowering.cpp */,
				CFC244BD0959F24C009F8C47 /* X86ISelLowering.h */,
				DE66F0DC08ABEE6100323D32 /* X86Subtarget.cpp */,
				DE66F0DD08ABEE6100323D32 /* X86Subtarget.h */,
				DE66F0DE08ABEE6100323D32 /* X86TargetMachine.cpp */,
				DE66F0DF08ABEE6100323D32 /* X86TargetMachine.h */,
			);
			path = X86;
			sourceTree = "<group>";
		};
		DE66F0E108ABEFB300323D32 /* lib/Transforms */ = {
			isa = PBXGroup;
			children = (
				DE66F0EE08ABEFB300323D32 /* Instrumentation */,
				DE66F11F08ABEFB300323D32 /* IPO */,
				DE66F15C08ABEFB400323D32 /* Scalar */,
				DE66F1BD08ABEFB400323D32 /* Utils */,
				DE66F0EA08ABEFB300323D32 /* ExprTypeConvert.cpp */,
				DE66F15A08ABEFB400323D32 /* LevelRaise.cpp */,
				DE66F1BB08ABEFB400323D32 /* TransformInternals.cpp */,
				DE66F1BC08ABEFB400323D32 /* TransformInternals.h */,
			);
			name = lib/Transforms;
			path = ../lib/Transforms;
			sourceTree = SOURCE_ROOT;
		};
		DE66F0EE08ABEFB300323D32 /* Instrumentation */ = {
			isa = PBXGroup;
			children = (
				DE66F0EF08ABEFB300323D32 /* BlockProfiling.cpp */,
				DE66F0FE08ABEFB300323D32 /* EdgeProfiling.cpp */,
				DE66F0FF08ABEFB300323D32 /* EmitFunctions.cpp */,
				DE66F11B08ABEFB300323D32 /* ProfilingUtils.cpp */,
				DE66F11C08ABEFB300323D32 /* ProfilingUtils.h */,
				CF73C0B7098A546000627152 /* RSProfiling.cpp */,
				CF73C0B8098A546000627152 /* RSProfiling.h */,
				DE66F11D08ABEFB300323D32 /* TraceBasicBlocks.cpp */,
				DE66F11E08ABEFB300323D32 /* TraceValues.cpp */,
			);
			path = Instrumentation;
			sourceTree = "<group>";
		};
		DE66F11F08ABEFB300323D32 /* IPO */ = {
			isa = PBXGroup;
			children = (
				DE66F12008ABEFB300323D32 /* ArgumentPromotion.cpp */,
				DE66F12108ABEFB300323D32 /* ConstantMerge.cpp */,
				DE66F12208ABEFB300323D32 /* DeadArgumentElimination.cpp */,
				DE66F12308ABEFB300323D32 /* DeadTypeElimination.cpp */,
				DE66F14A08ABEFB400323D32 /* ExtractFunction.cpp */,
				DE66F14B08ABEFB400323D32 /* FunctionResolution.cpp */,
				DE66F14C08ABEFB400323D32 /* GlobalDCE.cpp */,
				DE66F14D08ABEFB400323D32 /* GlobalOpt.cpp */,
				DE66F14E08ABEFB400323D32 /* Inliner.cpp */,
				DE66F14F08ABEFB400323D32 /* Inliner.h */,
				DE66F15008ABEFB400323D32 /* InlineSimple.cpp */,
				DE66F15108ABEFB400323D32 /* Internalize.cpp */,
				DE66F15208ABEFB400323D32 /* IPConstantPropagation.cpp */,
				DE66F15308ABEFB400323D32 /* LoopExtractor.cpp */,
				DE66F15408ABEFB400323D32 /* LowerSetJmp.cpp */,
				DE66F15608ABEFB400323D32 /* PruneEH.cpp */,
				DE66F15708ABEFB400323D32 /* RaiseAllocations.cpp */,
				DE66F15808ABEFB400323D32 /* SimplifyLibCalls.cpp */,
				DE66F15908ABEFB400323D32 /* StripSymbols.cpp */,
			);
			path = IPO;
			sourceTree = "<group>";
		};
		DE66F15C08ABEFB400323D32 /* Scalar */ = {
			isa = PBXGroup;
			children = (
				DE66F15E08ABEFB400323D32 /* ADCE.cpp */,
				DE66F15F08ABEFB400323D32 /* BasicBlockPlacement.cpp */,
				DE66F16008ABEFB400323D32 /* CondPropagate.cpp */,
				DE66F16108ABEFB400323D32 /* ConstantProp.cpp */,
				DE66F16208ABEFB400323D32 /* CorrelatedExprs.cpp */,
				DE66F16308ABEFB400323D32 /* DCE.cpp */,
				DE66F16408ABEFB400323D32 /* DeadStoreElimination.cpp */,
				DE66F1A308ABEFB400323D32 /* GCSE.cpp */,
				DE66F1A408ABEFB400323D32 /* IndVarSimplify.cpp */,
				DE66F1A508ABEFB400323D32 /* InstructionCombining.cpp */,
				DE66F1A608ABEFB400323D32 /* LICM.cpp */,
				DE66F1A808ABEFB400323D32 /* LoopStrengthReduce.cpp */,
				DE66F1A908ABEFB400323D32 /* LoopUnroll.cpp */,
				DE66F1AA08ABEFB400323D32 /* LoopUnswitch.cpp */,
				DE66F1AB08ABEFB400323D32 /* LowerAllocations.cpp */,
				DE66F1AD08ABEFB400323D32 /* LowerGC.cpp */,
				DE66F1AE08ABEFB400323D32 /* LowerInvoke.cpp */,
				DE66F1AF08ABEFB400323D32 /* LowerPacked.cpp */,
				DE66F1B008ABEFB400323D32 /* LowerSelect.cpp */,
				DE66F1B108ABEFB400323D32 /* LowerSwitch.cpp */,
				DE66F1B308ABEFB400323D32 /* Mem2Reg.cpp */,
				DE66F1B508ABEFB400323D32 /* Reassociate.cpp */,
				CF73C0B9098A546000627152 /* Reg2Mem.cpp */,
				DE66F1B608ABEFB400323D32 /* ScalarReplAggregates.cpp */,
				DE66F1B708ABEFB400323D32 /* SCCP.cpp */,
				DE66F1B808ABEFB400323D32 /* SimplifyCFG.cpp */,
				DE66F1B908ABEFB400323D32 /* TailDuplication.cpp */,
				DE66F1BA08ABEFB400323D32 /* TailRecursionElimination.cpp */,
			);
			path = Scalar;
			sourceTree = "<group>";
		};
		DE66F1BD08ABEFB400323D32 /* Utils */ = {
			isa = PBXGroup;
			children = (
				DE66F1BE08ABEFB400323D32 /* BasicBlockUtils.cpp */,
				DE66F1BF08ABEFB400323D32 /* BreakCriticalEdges.cpp */,
				DE66F1C008ABEFB400323D32 /* CloneFunction.cpp */,
				DE66F1C108ABEFB400323D32 /* CloneModule.cpp */,
				DE66F1C208ABEFB400323D32 /* CloneTrace.cpp */,
				DE66F1C308ABEFB400323D32 /* CodeExtractor.cpp */,
				DE66F1E008ABEFB400323D32 /* DemoteRegToStack.cpp */,
				DE66F1E108ABEFB400323D32 /* InlineFunction.cpp */,
				DE66F1E208ABEFB400323D32 /* Local.cpp */,
				DE4DA0390911476D0012D44B /* LoopSimplify.cpp */,
				DE66F1E408ABEFB400323D32 /* PromoteMemoryToRegister.cpp */,
				DE66F1E508ABEFB400323D32 /* SimplifyCFG.cpp */,
				DE66F1E608ABEFB400323D32 /* UnifyFunctionExitNodes.cpp */,
				DE66F1E708ABEFB400323D32 /* ValueMapper.cpp */,
				DE66F1E808ABEFB400323D32 /* ValueMapper.h */,
			);
			path = Utils;
			sourceTree = "<group>";
		};
		DE66F1E908ABF03100323D32 /* include/llvm */ = {
			isa = PBXGroup;
			children = (
				DE66F1EB08ABF03100323D32 /* ADT */,
				DE66F20308ABF03100323D32 /* Analysis */,
				DE66F22408ABF03100323D32 /* Assembly */,
				DE66F22B08ABF03100323D32 /* Bytecode */,
				DE66F23508ABF03100323D32 /* CodeGen */,
				DE66F24C08ABF03100323D32 /* Config */,
				DE66F25308ABF03100323D32 /* Debugger */,
				DE66F25B08ABF03100323D32 /* ExecutionEngine */,
				DE66F26E08ABF03200323D32 /* Support */,
				DE66F29408ABF03200323D32 /* System */,
				DE66F29F08ABF03200323D32 /* Target */,
				DE66F2AB08ABF03200323D32 /* Transforms */,
				DE66F1EA08ABF03100323D32 /* AbstractTypeUser.h */,
				DE66F22308ABF03100323D32 /* Argument.h */,
				DE66F22A08ABF03100323D32 /* BasicBlock.h */,
				DE66F23308ABF03100323D32 /* CallGraphSCCPass.h */,
				DE66F23408ABF03100323D32 /* CallingConv.h */,
				DE66F25108ABF03100323D32 /* Constant.h */,
				DE66F25208ABF03100323D32 /* Constants.h */,
				DE66F25A08ABF03100323D32 /* DerivedTypes.h */,
				DE66F25E08ABF03100323D32 /* Function.h */,
				DE66F25F08ABF03100323D32 /* GlobalValue.h */,
				DE66F26008ABF03100323D32 /* GlobalVariable.h */,
				CF73C0A2098A4FDF00627152 /* InlineAsm.h */,
				DE66F26108ABF03100323D32 /* InstrTypes.h */,
				DE66F26208ABF03100323D32 /* Instruction.def */,
				DE66F26308ABF03100323D32 /* Instruction.h */,
				DE66F26408ABF03100323D32 /* Instructions.h */,
				DE66F26508ABF03100323D32 /* IntrinsicInst.h */,
				DE66F26608ABF03100323D32 /* Intrinsics.h */,
				DE66F26708ABF03100323D32 /* Linker.h */,
				DE66F26808ABF03100323D32 /* Module.h */,
				DE66F26908ABF03200323D32 /* ModuleProvider.h */,
				DE66F26A08ABF03200323D32 /* Pass.h */,
				DE66F26B08ABF03200323D32 /* PassAnalysisSupport.h */,
				DE66F26C08ABF03200323D32 /* PassManager.h */,
				DE66F26D08ABF03200323D32 /* PassSupport.h */,
				DE66F29208ABF03200323D32 /* SymbolTable.h */,
				DE66F29308ABF03200323D32 /* SymbolTableListTraits.h */,
				DE66F2B708ABF03200323D32 /* Type.h */,
				CF73C0A3098A4FDF00627152 /* TypeSymbolTable.h */,
				DE66F2B808ABF03200323D32 /* Use.h */,
				DE66F2B908ABF03200323D32 /* User.h */,
				DE66F2BA08ABF03200323D32 /* Value.h */,
				CF73C0A4098A4FDF00627152 /* ValueSymbolTable.h */,
			);
			name = include/llvm;
			path = ../include/llvm;
			sourceTree = SOURCE_ROOT;
		};
		DE66F1EB08ABF03100323D32 /* ADT */ = {
			isa = PBXGroup;
			children = (
				DE66F1ED08ABF03100323D32 /* BitSetVector.h */,
				DE66F1EE08ABF03100323D32 /* DenseMap.h */,
				DE66F1EF08ABF03100323D32 /* DepthFirstIterator.h */,
				DE66F1F008ABF03100323D32 /* EquivalenceClasses.h */,
				DE66F1F108ABF03100323D32 /* GraphTraits.h */,
				DE66F1F308ABF03100323D32 /* hash_map.in */,
				DE66F1F508ABF03100323D32 /* hash_set.in */,
				DE66F1F608ABF03100323D32 /* HashExtras.h */,
				DE66F1F708ABF03100323D32 /* ilist */,
				DE66F1F908ABF03100323D32 /* iterator.in */,
				DE66F1FA08ABF03100323D32 /* PostOrderIterator.h */,
				DE66F1FB08ABF03100323D32 /* SCCIterator.h */,
				DE66F1FC08ABF03100323D32 /* SetOperations.h */,
				DE66F1FD08ABF03100323D32 /* SetVector.h */,
				DE66F1FE08ABF03100323D32 /* Statistic.h */,
				DE66F1FF08ABF03100323D32 /* STLExtras.h */,
				DE66F20008ABF03100323D32 /* StringExtras.h */,
				DE66F20108ABF03100323D32 /* Tree.h */,
				CFF8B434097C605F0047F72A /* UniqueVector.h */,
				DE66F20208ABF03100323D32 /* VectorExtras.h */,
			);
			path = ADT;
			sourceTree = "<group>";
		};
		DE66F20308ABF03100323D32 /* Analysis */ = {
			isa = PBXGroup;
			children = (
				DE66F20408ABF03100323D32 /* AliasAnalysis.h */,
				DE66F20508ABF03100323D32 /* AliasSetTracker.h */,
				DE66F20608ABF03100323D32 /* CallGraph.h */,
				DE66F20708ABF03100323D32 /* CFGPrinter.h */,
				CF73C0A5098A507300627152 /* ConstantFolding.h */,
				DE66F20808ABF03100323D32 /* ConstantsScanner.h */,
				DE66F20908ABF03100323D32 /* DataStructure */,
				DE66F20F08ABF03100323D32 /* Dominators.h */,
				CF73C0A6098A507300627152 /* ET-Forest.h */,
				DE66F21208ABF03100323D32 /* FindUsedTypes.h */,
				DE66F21308ABF03100323D32 /* Interval.h */,
				DE66F21408ABF03100323D32 /* IntervalIterator.h */,
				DE66F21508ABF03100323D32 /* IntervalPartition.h */,
				CF73C0A7098A507300627152 /* LinkAllAnalyses.h */,
				DE66F21608ABF03100323D32 /* LoadValueNumbering.h */,
				DE66F21708ABF03100323D32 /* LoopInfo.h */,
				DE66F21808ABF03100323D32 /* Passes.h */,
				DE66F21908ABF03100323D32 /* PostDominators.h */,
				DE66F21A08ABF03100323D32 /* ProfileInfo.h */,
				DE66F21B08ABF03100323D32 /* ProfileInfoLoader.h */,
				DE66F21C08ABF03100323D32 /* ProfileInfoTypes.h */,
				DE66F21D08ABF03100323D32 /* ScalarEvolution.h */,
				DE66F21E08ABF03100323D32 /* ScalarEvolutionExpander.h */,
				DE66F21F08ABF03100323D32 /* ScalarEvolutionExpressions.h */,
				DE66F22008ABF03100323D32 /* Trace.h */,
				DE66F22108ABF03100323D32 /* ValueNumbering.h */,
				DE66F22208ABF03100323D32 /* Verifier.h */,
			);
			path = Analysis;
			sourceTree = "<group>";
		};
		DE66F20908ABF03100323D32 /* DataStructure */ = {
			isa = PBXGroup;
			children = (
				DE66F20A08ABF03100323D32 /* DataStructure.h */,
				DE66F20B08ABF03100323D32 /* DSGraph.h */,
				DE66F20C08ABF03100323D32 /* DSGraphTraits.h */,
				DE66F20D08ABF03100323D32 /* DSNode.h */,
				DE66F20E08ABF03100323D32 /* DSSupport.h */,
			);
			path = DataStructure;
			sourceTree = "<group>";
		};
		DE66F22408ABF03100323D32 /* Assembly */ = {
			isa = PBXGroup;
			children = (
				DE66F22508ABF03100323D32 /* AsmAnnotationWriter.h */,
				CF73C0A8098A50C200627152 /* AutoUpgrade.h */,
				DE66F22608ABF03100323D32 /* CachedWriter.h */,
				DE66F22708ABF03100323D32 /* Parser.h */,
				DE66F22808ABF03100323D32 /* PrintModulePass.h */,
				DE66F22908ABF03100323D32 /* Writer.h */,
			);
			path = Assembly;
			sourceTree = "<group>";
		};
		DE66F22B08ABF03100323D32 /* Bytecode */ = {
			isa = PBXGroup;
			children = (
				DE66F22C08ABF03100323D32 /* Analyzer.h */,
				DE66F22D08ABF03100323D32 /* Archive.h */,
				DE66F22E08ABF03100323D32 /* BytecodeHandler.h */,
				DE66F22F08ABF03100323D32 /* Format.h */,
				DE66F23008ABF03100323D32 /* Reader.h */,
				DE66F23108ABF03100323D32 /* WriteBytecodePass.h */,
				DE66F23208ABF03100323D32 /* Writer.h */,
			);
			path = Bytecode;
			sourceTree = "<group>";
		};
		DE66F23508ABF03100323D32 /* CodeGen */ = {
			isa = PBXGroup;
			children = (
				DE66F23608ABF03100323D32 /* AsmPrinter.h */,
				DEFAB19D0959E9A100E0AB42 /* DwarfWriter.h */,
				DE66F23708ABF03100323D32 /* ELFWriter.h */,
				DE66F23808ABF03100323D32 /* InstrScheduling.h */,
				DE66F23908ABF03100323D32 /* IntrinsicLowering.h */,
				DE4DA03C091147920012D44B /* LiveInterval.h */,
				DE4DA03D091147920012D44B /* LiveIntervalAnalysis.h */,
				DE66F23A08ABF03100323D32 /* LiveVariables.h */,
				DE66F23B08ABF03100323D32 /* MachineBasicBlock.h */,
				DE66F23C08ABF03100323D32 /* MachineCodeEmitter.h */,
				DE66F23D08ABF03100323D32 /* MachineConstantPool.h */,
				CF6F487109505E1500BC9E82 /* MachineDebugInfo.h */,
				DE66F23E08ABF03100323D32 /* MachineFrameInfo.h */,
				DE66F23F08ABF03100323D32 /* MachineFunction.h */,
				DE66F24008ABF03100323D32 /* MachineFunctionPass.h */,
				DE66F24108ABF03100323D32 /* MachineInstr.h */,
				DE66F24208ABF03100323D32 /* MachineInstrBuilder.h */,
				DE66F24308ABF03100323D32 /* MachineRelocation.h */,
				DE66F24408ABF03100323D32 /* Passes.h */,
				DE66F24508ABF03100323D32 /* SchedGraphCommon.h */,
				CF7FFA2109850864008B0087 /* ScheduleDAG.h */,
				DE66F24608ABF03100323D32 /* SelectionDAG.h */,
				DE66F24708ABF03100323D32 /* SelectionDAGISel.h */,
				DE66F24808ABF03100323D32 /* SelectionDAGNodes.h */,
				DE66F24908ABF03100323D32 /* SSARegMap.h */,
				DE66F24A08ABF03100323D32 /* ValueSet.h */,
				DE66F24B08ABF03100323D32 /* ValueTypes.h */,
			);
			path = CodeGen;
			sourceTree = "<group>";
		};
		DE66F24C08ABF03100323D32 /* Config */ = {
			isa = PBXGroup;
			children = (
				DE66F24E08ABF03100323D32 /* alloca.h */,
				CF73C0A9098A50FD00627152 /* config.h */,
				DE66F25008ABF03100323D32 /* config.h.in */,
			);
			path = Config;
			sourceTree = "<group>";
		};
		DE66F25308ABF03100323D32 /* Debugger */ = {
			isa = PBXGroup;
			children = (
				DE66F25408ABF03100323D32 /* Debugger.h */,
				DE66F25508ABF03100323D32 /* InferiorProcess.h */,
				DE66F25608ABF03100323D32 /* ProgramInfo.h */,
				DE66F25708ABF03100323D32 /* RuntimeInfo.h */,
				DE66F25808ABF03100323D32 /* SourceFile.h */,
				DE66F25908ABF03100323D32 /* SourceLanguage.h */,
			);
			path = Debugger;
			sourceTree = "<group>";
		};
		DE66F25B08ABF03100323D32 /* ExecutionEngine */ = {
			isa = PBXGroup;
			children = (
				DE66F25C08ABF03100323D32 /* ExecutionEngine.h */,
				DE66F25D08ABF03100323D32 /* GenericValue.h */,
			);
			path = ExecutionEngine;
			sourceTree = "<group>";
		};
		DE66F26E08ABF03200323D32 /* Support */ = {
			isa = PBXGroup;
			children = (
				DE66F27008ABF03200323D32 /* AIXDataTypesFix.h */,
				DE66F27108ABF03200323D32 /* Annotation.h */,
				DE66F27208ABF03200323D32 /* CallSite.h */,
				DE66F27308ABF03200323D32 /* Casting.h */,
				DE66F27408ABF03200323D32 /* CFG.h */,
				DE66F27508ABF03200323D32 /* CommandLine.h */,
				DE66F27608ABF03200323D32 /* Compressor.h */,
				DE66F27708ABF03200323D32 /* ConstantRange.h */,
				CF73C0AD098A519400627152 /* DataTypes.h */,
				DE66F27908ABF03200323D32 /* DataTypes.h.in */,
				DE66F27A08ABF03200323D32 /* Debug.h */,
				DE66F27B08ABF03200323D32 /* DOTGraphTraits.h */,
				DE66F27C08ABF03200323D32 /* DynamicLinker.h */,
				DE66F27D08ABF03200323D32 /* ELF.h */,
				CF8E00490989162500DA2399 /* Dwarf.h */,
				DE66F27E08ABF03200323D32 /* FileUtilities.h */,
				DE66F27F08ABF03200323D32 /* GetElementPtrTypeIterator.h */,
				DE66F28008ABF03200323D32 /* GraphWriter.h */,
				DE66F28108ABF03200323D32 /* InstIterator.h */,
				DE66F28208ABF03200323D32 /* InstVisitor.h */,
				DE66F28308ABF03200323D32 /* LeakDetector.h */,
				DE66F28408ABF03200323D32 /* Mangler.h */,
				DE66F28508ABF03200323D32 /* MathExtras.h */,
				DE66F28608ABF03200323D32 /* MutexGuard.h */,
				DE66F28708ABF03200323D32 /* PassNameParser.h */,
				DE66F28808ABF03200323D32 /* PatternMatch.h */,
				DE66F28908ABF03200323D32 /* PluginLoader.h */,
				DE66F28A08ABF03200323D32 /* SlowOperationInformer.h */,
				DE66F28B08ABF03200323D32 /* StableBasicBlockNumbering.h */,
				DE66F28C08ABF03200323D32 /* SystemUtils.h */,
				DE66F28E08ABF03200323D32 /* Timer.h */,
				DE66F28F08ABF03200323D32 /* ToolRunner.h */,
				DE66F29008ABF03200323D32 /* type_traits.h */,
				DE66F29108ABF03200323D32 /* TypeInfo.h */,
			);
			path = Support;
			sourceTree = "<group>";
		};
		DE66F29408ABF03200323D32 /* System */ = {
			isa = PBXGroup;
			children = (
				CF73C0AE098A51AD00627152 /* Alarm.h */,
				DE66F29508ABF03200323D32 /* DynamicLibrary.h */,
				DE66F29608ABF03200323D32 /* LICENSE.TXT */,
				DE66F29708ABF03200323D32 /* MappedFile.h */,
				DE66F29808ABF03200323D32 /* Memory.h */,
				DE66F29908ABF03200323D32 /* Mutex.h */,
				DE66F29A08ABF03200323D32 /* Path.h */,
				DE66F29B08ABF03200323D32 /* Process.h */,
				DE66F29C08ABF03200323D32 /* Program.h */,
				DE66F29D08ABF03200323D32 /* Signals.h */,
				DE66F29E08ABF03200323D32 /* TimeValue.h */,
			);
			path = System;
			sourceTree = "<group>";
		};
		DE66F29F08ABF03200323D32 /* Target */ = {
			isa = PBXGroup;
			children = (
				DE66F2A008ABF03200323D32 /* MRegisterInfo.h */,
				CF9BCD0808C74DE0001E7011 /* SubtargetFeature.h */,
				DE66F2A108ABF03200323D32 /* TargetData.h */,
				DE66F2A208ABF03200323D32 /* TargetFrameInfo.h */,
				DE66F2A308ABF03200323D32 /* TargetInstrInfo.h */,
				CF26835B09178F5500C5F253 /* TargetInstrItineraries.h */,
				DE66F2A408ABF03200323D32 /* TargetJITInfo.h */,
				DE66F2A508ABF03200323D32 /* TargetLowering.h */,
				DE66F2A608ABF03200323D32 /* TargetMachine.h */,
				DE66F2A708ABF03200323D32 /* TargetMachineRegistry.h */,
				DE66F2A808ABF03200323D32 /* TargetOptions.h */,
				DE66F2A908ABF03200323D32 /* TargetSchedInfo.h */,
				DE66F2AA08ABF03200323D32 /* TargetSubtarget.h */,
			);
			path = Target;
			sourceTree = "<group>";
		};
		DE66F2AB08ABF03200323D32 /* Transforms */ = {
			isa = PBXGroup;
			children = (
				DE66F2AC08ABF03200323D32 /* Instrumentation.h */,
				DE66F2AD08ABF03200323D32 /* IPO.h */,
				DE66F2AE08ABF03200323D32 /* LinkAllPasses.h */,
				CF73C0AF098A51DD00627152 /* RSProfiling.h */,
				DE66F2AF08ABF03200323D32 /* Scalar.h */,
				DE66F2B008ABF03200323D32 /* Utils */,
			);
			path = Transforms;
			sourceTree = "<group>";
		};
		DE66F2B008ABF03200323D32 /* Utils */ = {
			isa = PBXGroup;
			children = (
				DE66F2B108ABF03200323D32 /* BasicBlockUtils.h */,
				DE66F2B208ABF03200323D32 /* Cloning.h */,
				DE66F2B308ABF03200323D32 /* FunctionUtils.h */,
				DE66F2B408ABF03200323D32 /* Local.h */,
				DE66F2B508ABF03200323D32 /* PromoteMemToReg.h */,
				DE66F2B608ABF03200323D32 /* UnifyFunctionExitNodes.h */,
			);
			path = Utils;
			sourceTree = "<group>";
		};
		DE66F2BD08ABF14400323D32 /* tools */ = {
			isa = PBXGroup;
			children = (
				DE66F2BE08ABF14400323D32 /* analyze */,
				DE66F2CB08ABF14400323D32 /* bugpoint */,
				DE66F2F008ABF14400323D32 /* gccld */,
				DE66F31E08ABF14400323D32 /* llvm-db */,
				DE66F33B08ABF14400323D32 /* llvm-ld */,
				DE66F36808ABF14500323D32 /* llvmc */,
				DE66F2EE08ABF14400323D32 /* gccas.cpp */,
				DE66F30008ABF14400323D32 /* llc.cpp */,
				DE66F30708ABF14400323D32 /* lli.cpp */,
				DE66F30E08ABF14400323D32 /* llvm-ar.cpp */,
				DE66F31508ABF14400323D32 /* llvm-as.cpp */,
				DE66F31C08ABF14400323D32 /* llvm-bcanalyzer.cpp */,
				DE66F33208ABF14400323D32 /* llvm-dis.cpp */,
				DE66F33908ABF14400323D32 /* llvm-extract.cpp */,
				DE66F34A08ABF14400323D32 /* llvm-link.cpp */,
				DE66F35108ABF14400323D32 /* llvm-nm.cpp */,
				DE66F35808ABF14500323D32 /* llvm-prof.cpp */,
				DE66F35F08ABF14500323D32 /* llvm-ranlib.cpp */,
				DE66F38708ABF14500323D32 /* opt.cpp */,
			);
			name = tools;
			path = ../tools;
			sourceTree = SOURCE_ROOT;
		};
		DE66F2BE08ABF14400323D32 /* analyze */ = {
			isa = PBXGroup;
			children = (
				DE66F2BF08ABF14400323D32 /* AnalysisWrappers.cpp */,
				DE66F2C008ABF14400323D32 /* analyze.cpp */,
				DE66F2C908ABF14400323D32 /* GraphPrinters.cpp */,
				DE4DA03E091147C00012D44B /* PrintSCC.cpp */,
			);
			path = analyze;
			sourceTree = "<group>";
		};
		DE66F2CB08ABF14400323D32 /* bugpoint */ = {
			isa = PBXGroup;
			children = (
				DE66F2CC08ABF14400323D32 /* BugDriver.cpp */,
				DE66F2CD08ABF14400323D32 /* BugDriver.h */,
				DE66F2CE08ABF14400323D32 /* bugpoint.cpp */,
				DE66F2CF08ABF14400323D32 /* CrashDebugger.cpp */,
				DE66F2E208ABF14400323D32 /* ExecutionDriver.cpp */,
				DE66F2E308ABF14400323D32 /* ExtractFunction.cpp */,
				DE66F2E408ABF14400323D32 /* ListReducer.h */,
				DE66F2E608ABF14400323D32 /* Miscompilation.cpp */,
				DE66F2E708ABF14400323D32 /* OptimizerDriver.cpp */,
				DE66F2E808ABF14400323D32 /* TestPasses.cpp */,
			);
			path = bugpoint;
			sourceTree = "<group>";
		};
		DE66F2F008ABF14400323D32 /* gccld */ = {
			isa = PBXGroup;
			children = (
				DE66F2F708ABF14400323D32 /* gccld.cpp */,
				DE66F2F808ABF14400323D32 /* gccld.h */,
				DE66F2F908ABF14400323D32 /* GenerateCode.cpp */,
			);
			path = gccld;
			sourceTree = "<group>";
		};
		DE66F31E08ABF14400323D32 /* llvm-db */ = {
			isa = PBXGroup;
			children = (
				DE66F31F08ABF14400323D32 /* CLICommand.h */,
				DE66F32008ABF14400323D32 /* CLIDebugger.cpp */,
				DE66F32108ABF14400323D32 /* CLIDebugger.h */,
				DE66F32208ABF14400323D32 /* Commands.cpp */,
				DE66F32B08ABF14400323D32 /* llvm-db.cpp */,
			);
			path = "llvm-db";
			sourceTree = "<group>";
		};
		DE66F33B08ABF14400323D32 /* llvm-ld */ = {
			isa = PBXGroup;
			children = (
				DE66F34208ABF14400323D32 /* llvm-ld.cpp */,
				DE66F34408ABF14400323D32 /* Optimize.cpp */,
			);
			path = "llvm-ld";
			sourceTree = "<group>";
		};
		DE66F36808ABF14500323D32 /* llvmc */ = {
			isa = PBXGroup;
			children = (
				DE66F36908ABF14500323D32 /* c */,
				DE66F36A08ABF14500323D32 /* CompilerDriver.cpp */,
				DE66F36B08ABF14500323D32 /* CompilerDriver.h */,
				DE66F36D08ABF14500323D32 /* ConfigLexer.h */,
				DE66F36E08ABF14500323D32 /* ConfigLexer.l */,
				DE66F36F08ABF14500323D32 /* Configuration.cpp */,
				DE66F37008ABF14500323D32 /* Configuration.h */,
				DE66F37108ABF14500323D32 /* cpp */,
				DE66F37D08ABF14500323D32 /* ll */,
				DE66F37E08ABF14500323D32 /* llvmc.cpp */,
			);
			path = llvmc;
			sourceTree = "<group>";
		};
		DE66F38D08ABF35C00323D32 /* docs */ = {
			isa = PBXGroup;
			children = (
				DE66F38F08ABF35C00323D32 /* AliasAnalysis.html */,
				DE66F39008ABF35C00323D32 /* Bugpoint.html */,
				DE66F39108ABF35C00323D32 /* BytecodeFormat.html */,
				DE66F39208ABF35C00323D32 /* CFEBuildInstrs.html */,
				DE66F39308ABF35C00323D32 /* CodeGenerator.html */,
				DE66F39408ABF35C00323D32 /* CodingStandards.html */,
				DE66F39508ABF35C00323D32 /* CommandGuide */,
				DE66F3B908ABF35D00323D32 /* CommandLine.html */,
				DE66F3BA08ABF35D00323D32 /* CompilerDriver.html */,
				DE66F3BB08ABF35D00323D32 /* CompilerWriterInfo.html */,
				DE66F3BD08ABF35D00323D32 /* doxygen.cfg.in */,
				DE66F3BE08ABF35D00323D32 /* doxygen.css */,
				DE66F3BF08ABF35D00323D32 /* doxygen.footer */,
				DE66F3C008ABF35D00323D32 /* doxygen.header */,
				DE66F3C108ABF35D00323D32 /* doxygen.intro */,
				DE66F3C208ABF35D00323D32 /* ExtendingLLVM.html */,
				DE66F3C308ABF35D00323D32 /* FAQ.html */,
				DE66F3C408ABF35D00323D32 /* GarbageCollection.html */,
				DE66F3C508ABF35D00323D32 /* GettingStarted.html */,
				DE66F3C608ABF35D00323D32 /* GettingStartedVS.html */,
				DE66F3E408ABF35D00323D32 /* HowToSubmitABug.html */,
				DE66F3E508ABF35D00323D32 /* img */,
				DE66F3EB08ABF35D00323D32 /* index.html */,
				DE66F3EC08ABF35D00323D32 /* LangRef.html */,
				DE66F3ED08ABF35D00323D32 /* Lexicon.html */,
				DE66F3EE08ABF35D00323D32 /* llvm.css */,
				DE66F3EF08ABF35D00323D32 /* LLVMVsTheWorld.html */,
				DE66F3F108ABF35D00323D32 /* MakefileGuide.html */,
				DE66F3F208ABF35D00323D32 /* ProgrammersManual.html */,
				DE66F3F308ABF35D00323D32 /* Projects.html */,
				DE66F3F408ABF35D00323D32 /* ReleaseNotes.html */,
				DE66F3F508ABF35D00323D32 /* SourceLevelDebugging.html */,
				DE66F3F608ABF35D00323D32 /* Stacker.html */,
				DE66F3F708ABF35D00323D32 /* SystemLibrary.html */,
				DE66F3F808ABF35D00323D32 /* TableGenFundamentals.html */,
				DE66F3F908ABF35D00323D32 /* TestingGuide.html */,
				DE66F3FA08ABF35D00323D32 /* UsingLibraries.html */,
				DE66F3FB08ABF35D00323D32 /* WritingAnLLVMBackend.html */,
				DE66F3FC08ABF35D00323D32 /* WritingAnLLVMPass.html */,
			);
			name = docs;
			path = ../docs;
			sourceTree = SOURCE_ROOT;
		};
		DE66F39508ABF35C00323D32 /* CommandGuide */ = {
			isa = PBXGroup;
			children = (
				DE66F39708ABF35C00323D32 /* analyze.pod */,
				DE66F39808ABF35C00323D32 /* bugpoint.pod */,
				DE66F39908ABF35C00323D32 /* gccas.pod */,
				DE66F39A08ABF35C00323D32 /* gccld.pod */,
				DE66F39E08ABF35C00323D32 /* index.html */,
				DE66F39F08ABF35C00323D32 /* llc.pod */,
				DE66F3A008ABF35C00323D32 /* lli.pod */,
				DE66F3A108ABF35C00323D32 /* llvm-ar.pod */,
				DE66F3A208ABF35C00323D32 /* llvm-as.pod */,
				DE66F3A308ABF35C00323D32 /* llvm-bcanalyzer.pod */,
				DE66F3A408ABF35C00323D32 /* llvm-db.pod */,
				DE66F3A508ABF35C00323D32 /* llvm-dis.pod */,
				DE66F3A608ABF35C00323D32 /* llvm-extract.pod */,
				DE66F3A708ABF35C00323D32 /* llvm-ld.pod */,
				DE66F3A808ABF35C00323D32 /* llvm-link.pod */,
				DE66F3A908ABF35C00323D32 /* llvm-nm.pod */,
				DE66F3AA08ABF35C00323D32 /* llvm-prof.pod */,
				DE66F3AB08ABF35C00323D32 /* llvm-ranlib.pod */,
				DE66F3AC08ABF35C00323D32 /* llvmc.pod */,
				DE66F3AD08ABF35C00323D32 /* llvmgcc.pod */,
				DE66F3AE08ABF35C00323D32 /* llvmgxx.pod */,
				DE66F3AF08ABF35C00323D32 /* Makefile */,
				DE66F3B408ABF35D00323D32 /* manpage.css */,
				DE66F3B508ABF35D00323D32 /* opt.pod */,
				DE66F3B808ABF35D00323D32 /* stkrc.pod */,
			);
			path = CommandGuide;
			sourceTree = "<group>";
		};
		DE66F3E508ABF35D00323D32 /* img */ = {
			isa = PBXGroup;
			children = (
				DE66F3E608ABF35D00323D32 /* Debugging.gif */,
				DE66F3E708ABF35D00323D32 /* libdeps.gif */,
				DE66F3E808ABF35D00323D32 /* lines.gif */,
				DE66F3E908ABF35D00323D32 /* objdeps.gif */,
				DE66F3EA08ABF35D00323D32 /* venusflytrap.jpg */,
			);
			path = img;
			sourceTree = "<group>";
		};
		DE66F3FD08ABF37000323D32 /* examples */ = {
			isa = PBXGroup;
			children = (
				DE66F3FF08ABF37000323D32 /* BFtoLLVM.cpp */,
				DE66F40E08ABF37000323D32 /* fibonacci.cpp */,
				DE66F41508ABF37000323D32 /* HowToUseJIT.cpp */,
				DE66F41E08ABF37000323D32 /* ModuleMaker.cpp */,
				DE66F42608ABF37000323D32 /* ParallelJIT.cpp */,
			);
			name = examples;
			path = ../examples;
			sourceTree = SOURCE_ROOT;
		};
		DE816FAC08CFB44C0093BDEF /* utils */ = {
			isa = PBXGroup;
			children = (
				DE81705708CFB44D0093BDEF /* TableGen */,
				DE81704008CFB44D0093BDEF /* fpcmp.cpp */,
				DE81704F08CFB44D0093BDEF /* NightlyTest.gnuplot */,
				DE81705008CFB44D0093BDEF /* NightlyTest.pl */,
				DE81705108CFB44D0093BDEF /* NightlyTestTemplate.html */,
			);
			name = utils;
			path = ../utils;
			sourceTree = SOURCE_ROOT;
		};
		DE81705708CFB44D0093BDEF /* TableGen */ = {
			isa = PBXGroup;
			children = (
				DE81705908CFB44D0093BDEF /* AsmWriterEmitter.cpp */,
				DE81705A08CFB44D0093BDEF /* AsmWriterEmitter.h */,
				DE81705B08CFB44D0093BDEF /* CodeEmitterGen.cpp */,
				DE81705C08CFB44D0093BDEF /* CodeEmitterGen.h */,
				DE81705D08CFB44D0093BDEF /* CodeGenInstruction.h */,
				DE81705E08CFB44D0093BDEF /* CodeGenRegisters.h */,
				DE81705F08CFB44D0093BDEF /* CodeGenTarget.cpp */,
				DE81706008CFB44D0093BDEF /* CodeGenTarget.h */,
				DE81706708CFB44D0093BDEF /* DAGISelEmitter.cpp */,
				DE81706808CFB44D0093BDEF /* DAGISelEmitter.h */,
				DE81708408CFB44D0093BDEF /* FileLexer.l */,
				DE81708808CFB44D0093BDEF /* FileParser.y */,
				DE81708908CFB44D0093BDEF /* InstrInfoEmitter.cpp */,
				DE81708A08CFB44D0093BDEF /* InstrInfoEmitter.h */,
				DE81708E08CFB44D0093BDEF /* Record.cpp */,
				DE81708F08CFB44D0093BDEF /* Record.h */,
				DE81709008CFB44D0093BDEF /* RegisterInfoEmitter.cpp */,
				DE81709108CFB44D0093BDEF /* RegisterInfoEmitter.h */,
				DE4DA065091148520012D44B /* SubtargetEmitter.cpp */,
				DE4DA066091148520012D44B /* SubtargetEmitter.h */,
				DE8170AA08CFB44D0093BDEF /* TableGen.cpp */,
				DE8170AB08CFB44D0093BDEF /* TableGenBackend.cpp */,
				DE8170AC08CFB44D0093BDEF /* TableGenBackend.h */,
				CF490E300907BBF80072DB1C /* SubtargetEmitter.cpp */,
				CF490E2F0907BBF80072DB1C /* SubtargetEmitter.h */,
			);
			path = TableGen;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXLegacyTarget section */
		CF0329B608D1BE110030FD33 /* LLVM lib */ = {
			isa = PBXLegacyTarget;
			buildArgumentsString = "$(ACTION) -j 4";
			buildConfigurationList = CF0329B708D1BE530030FD33 /* Build configuration list for PBXLegacyTarget "LLVM lib" */;
			buildPhases = (
			);
			buildSettings = {
				OPTIMIZATION_CFLAGS = "";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM lib";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			buildToolPath = /usr/bin/make;
			buildWorkingDirectory = /Volumes/Big2/llvm/llvm/lib;
			dependencies = (
			);
			name = "LLVM lib";
			passBuildSettingsInEnvironment = 0;
			productName = "LLVM lib";
		};
		CF0329BB08D1BE5D0030FD33 /* LLVM llc */ = {
			isa = PBXLegacyTarget;
			buildArgumentsString = "$(ACTION) -j 4";
			buildConfigurationList = CF0329C308D1BEC40030FD33 /* Build configuration list for PBXLegacyTarget "LLVM llc" */;
			buildPhases = (
			);
			buildSettings = {
				OPTIMIZATION_CFLAGS = "";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			buildToolPath = /usr/bin/make;
			buildWorkingDirectory = /Volumes/Big2/llvm/llvm/tools/llc;
			dependencies = (
			);
			name = "LLVM llc";
			passBuildSettingsInEnvironment = 0;
			productName = "LLVM llc";
		};
		CF490E830907CDAB0072DB1C /* LLVM TableGen */ = {
			isa = PBXLegacyTarget;
			buildArgumentsString = "$(ACTION) -j 4 ";
			buildConfigurationList = CF490E840907CDAB0072DB1C /* Build configuration list for PBXLegacyTarget "LLVM TableGen" */;
			buildPhases = (
			);
			buildSettings = {
				OPTIMIZATION_CFLAGS = "";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			buildToolPath = /usr/bin/make;
			buildWorkingDirectory = /llvm/llvm/utils/TableGen;
			dependencies = (
			);
			name = "LLVM TableGen";
			passBuildSettingsInEnvironment = 0;
			productName = "LLVM llc";
		};
		D28A88AD04BDD90700651E21 /* LLVM */ = {
			isa = PBXLegacyTarget;
			buildArgumentsString = "$(ACTION) -j 4 ";
			buildConfigurationList = DE66EC4C08ABE78900323D32 /* Build configuration list for PBXLegacyTarget "LLVM" */;
			buildPhases = (
			);
			buildSettings = {
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = LLVM;
			};
			buildToolPath = /usr/bin/make;
			buildWorkingDirectory = /Volumes/Big2/llvm/llvm;
			dependencies = (
			);
			name = LLVM;
			passBuildSettingsInEnvironment = 0;
			productName = LLVM;
		};
/* End PBXLegacyTarget section */

/* Begin PBXProject section */
		08FB7793FE84155DC02AAC07 /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = DE66EC5008ABE78900323D32 /* Build configuration list for PBXProject "LLVM" */;
			buildSettings = {
			};
			buildStyles = (
				014CEA520018CE5811CA2923 /* Debug */,
				014CEA530018CE5811CA2923 /* Release */,
			);
			hasScannedForEncodings = 1;
			mainGroup = 08FB7794FE84155DC02AAC07 /* LLVM */;
			projectDirPath = "";
			targets = (
				D28A88AD04BDD90700651E21 /* LLVM */,
				CF0329B608D1BE110030FD33 /* LLVM lib */,
				CF0329BB08D1BE5D0030FD33 /* LLVM llc */,
				CF0329BC08D1BE8E0030FD33 /* LLVM full llc */,
				CF490E830907CDAB0072DB1C /* LLVM TableGen */,
			);
		};
/* End PBXProject section */

/* Begin PBXTargetDependency section */
		CF0329BE08D1BE970030FD33 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = CF0329B608D1BE110030FD33 /* LLVM lib */;
			targetProxy = CF0329BD08D1BE970030FD33 /* PBXContainerItemProxy */;
		};
		CF0329C008D1BE9B0030FD33 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = CF0329BB08D1BE5D0030FD33 /* LLVM llc */;
			targetProxy = CF0329BF08D1BE9B0030FD33 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		CF0329B808D1BE530030FD33 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM lib";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Debug;
		};
		CF0329B908D1BE530030FD33 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM lib";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Release;
		};
		CF0329BA08D1BE530030FD33 /* Default */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM lib";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Default;
		};
		CF0329C408D1BEC40030FD33 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Debug;
		};
		CF0329C508D1BEC40030FD33 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Release;
		};
		CF0329C608D1BEC40030FD33 /* Default */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Default;
		};
		CF0329C808D1BEC40030FD33 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM full llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Debug;
		};
		CF0329C908D1BEC40030FD33 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM full llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Release;
		};
		CF0329CA08D1BEC40030FD33 /* Default */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM full llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Default;
		};
		CF490E850907CDAB0072DB1C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM TableGen";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Debug;
		};
		CF490E860907CDAB0072DB1C /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Release;
		};
		CF490E870907CDAB0072DB1C /* Default */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				OTHER_REZFLAGS = "";
				PRODUCT_NAME = "LLVM llc";
				SECTORDER_FLAGS = "";
				WARNING_CFLAGS = (
					"-Wmost",
					"-Wno-four-char-constants",
					"-Wno-unknown-pragmas",
				);
			};
			name = Default;
		};
		DE66EC4D08ABE78900323D32 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				DEBUGGING_SYMBOLS = YES;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				OPTIMIZATION_CFLAGS = "-O0";
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = LLVM;
				ZERO_LINK = YES;
			};
			name = Debug;
		};
		DE66EC4E08ABE78900323D32 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = YES;
				ENABLE_OPTIMIZED = 1;
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = LLVM;
				ZERO_LINK = NO;
			};
			name = Release;
		};
		DE66EC4F08ABE78900323D32 /* Default */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = LLVM;
			};
			name = Default;
		};
		DE66EC5108ABE78900323D32 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = Debug;
		};
		DE66EC5208ABE78900323D32 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = Release;
		};
		DE66EC5308ABE78900323D32 /* Default */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
			};
			name = Default;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		CF0329B708D1BE530030FD33 /* Build configuration list for PBXLegacyTarget "LLVM lib" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				CF0329B808D1BE530030FD33 /* Debug */,
				CF0329B908D1BE530030FD33 /* Release */,
				CF0329BA08D1BE530030FD33 /* Default */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Default;
		};
		CF0329C308D1BEC40030FD33 /* Build configuration list for PBXLegacyTarget "LLVM llc" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				CF0329C408D1BEC40030FD33 /* Debug */,
				CF0329C508D1BEC40030FD33 /* Release */,
				CF0329C608D1BEC40030FD33 /* Default */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Default;
		};
		CF0329C708D1BEC40030FD33 /* Build configuration list for PBXAggregateTarget "LLVM full llc" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				CF0329C808D1BEC40030FD33 /* Debug */,
				CF0329C908D1BEC40030FD33 /* Release */,
				CF0329CA08D1BEC40030FD33 /* Default */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Default;
		};
		CF490E840907CDAB0072DB1C /* Build configuration list for PBXLegacyTarget "LLVM TableGen" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				CF490E850907CDAB0072DB1C /* Debug */,
				CF490E860907CDAB0072DB1C /* Release */,
				CF490E870907CDAB0072DB1C /* Default */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Default;
		};
		DE66EC4C08ABE78900323D32 /* Build configuration list for PBXLegacyTarget "LLVM" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				DE66EC4D08ABE78900323D32 /* Debug */,
				DE66EC4E08ABE78900323D32 /* Release */,
				DE66EC4F08ABE78900323D32 /* Default */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Default;
		};
		DE66EC5008ABE78900323D32 /* Build configuration list for PBXProject "LLVM" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				DE66EC5108ABE78900323D32 /* Debug */,
				DE66EC5208ABE78900323D32 /* Release */,
				DE66EC5308ABE78900323D32 /* Default */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Default;
		};
/* End XCConfigurationList section */
	};
	rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
}