-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.brik
2781 lines (2779 loc) · 107 KB
/
.brik
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
# Whole file CRCs generated by Brik v2.0. Use "brik -C" to verify them.
# CRC-32 filename
# ------ --------
40745673b ./ChangeLog
2773723724b ./config/ChangeLog
4130389924b ./config.guess
2969147338b ./config.if
3007349820b ./config/mh-a68bsd
1442196770b ./config/mh-aix386
4076175188b ./config/mh-aix43
3054121875b ./config/mh-apollo68
3478341494b ./config/mh-armpic
1811916229b ./config/mh-cxux
3020282061b ./config/mh-cygwin
2180612469b ./config/mh-decstation
973727842b ./config/mh-delta88
2133351807b ./config/mh-dgux
746894734b ./config/mh-dgux386
4215267871b ./config/mh-djgpp
3478341494b ./config/mh-elfalphapic
41994544b ./config/mh-hp300
318860404b ./config/mh-hpux
318860404b ./config/mh-hpux8
2339341800b ./config/mh-interix
3277888801b ./config/mh-irix4
1357357208b ./config/mh-irix5
1330768880b ./config/mh-irix6
2624861245b ./config/mh-lynxos
1194372982b ./config/mh-lynxrs6k
3265825290b ./config/mh-m68kpic
1904254329b ./config/mh-mingw32
3317263548b ./config/mh-ncr3000
2638893829b ./config/mh-ncrsvr43
4287527672b ./config/mh-necv4
3478341494b ./config/mh-papic
3478341494b ./config/mh-ppcpic
136062744b ./config/mh-riscos
407821128b ./config/mh-sco
2015316329b ./config/mh-solaris
203083803b ./config/mh-sparcpic
889431517b ./config/mh-sun3
1253937510b ./config/mh-sysv
3104599531b ./config/mh-sysv4
2519884023b ./config/mh-sysv5
456622165b ./config/mh-vaxult2
3265825290b ./config/mh-x86pic
3703830219b ./config-ml.in
2763692045b ./config/mpw/ChangeLog
4005879853b ./config/mpw/forward-include
439409833b ./config/mpw/g-mpw-make.sed
198559626b ./config/mpw-mh-mpw
3145098931b ./config/mpw/MoveIfChange
2800114792b ./config/mpw/mpw-touch
3832565257b ./config/mpw/mpw-true
792347706b ./config/mpw/null-command
3439853311b ./config/mpw/open-brace
1476422091b ./config/mpw/README
779160003b ./config/mpw/tr-7to8-src
3832565257b ./config/mpw/true
536974328b ./config/mt-armpic
536974328b ./config/mt-elfalphapic
690722699b ./config/mt-linux
771382916b ./config/mt-m68kpic
2548851201b ./config/mt-netware
971016637b ./config/mt-ospace
536974328b ./config/mt-papic
536974328b ./config/mt-ppcpic
828136936b ./config/mt-sparcpic
787786243b ./config/mt-v810
771382916b ./config/mt-x86pic
372693157b ./config.sub
753136214b ./configure
1212521209b ./configure.in
2741109168b ./contrib/ChangeLog
550196746b ./contrib/compare_tests
3828788345b ./contrib/egcs_update
1060321676b ./contrib/gperf-2.7-19981006.pat
904867939b ./contrib/index-prop
3040114942b ./contrib/test_installed
3207566234b ./contrib/test_summary
1176279968b ./contrib/warn_summary
430871781b ./COPYING
2637011133b ./COPYING.LIB
4237809446b ./.cvsignore
1599808887b ./etc/aclocal.m4
1997310358b ./etc/ChangeLog
2024299803b ./etc/configure
597781507b ./etc/configure.in
4027299794b ./etc/Makefile.in
1601906984b ./etc/make-stds.texi
1110151395b ./etc/standards.texi
2012678829b ./FAQ
3959848447b ./faq.html
2163082026b ./gcc/ABOUT-GCC-NLS
1014730298b ./gcc/ABOUT-NLS
2199018716b ./gcc/acconfig.h
4190083916b ./gcc/aclocal.m4
3617713225b ./gcc/alias.c
4179046188b ./gcc/assert.h
3227020286b ./gcc/basic-block.h
2897689365b ./gcc/bitmap.c
1092830340b ./gcc/bitmap.h
1471330941b ./gcc/BUGS
3514329314b ./gcc/build-make
1297227555b ./gcc/caller-save.c
1105896127b ./gcc/calls.c
2833192624b ./gcc/c-aux-info.c
1031499251b ./gcc/cccp.1
3931978756b ./gcc/cccp.c
1769823897b ./gcc/c-common.c
3351004599b ./gcc/c-convert.c
3097530966b ./gcc/c-decl.c
2374568197b ./gcc/cexp.c
1259037984b ./gcc/cexp.y
3172609301b ./gcc/c-gperf.h
72814584b ./gcc/ch/actions.c
3268996754b ./gcc/ch/actions.h
1489002859b ./gcc/ChangeLog
1908191848b ./gcc/ChangeLog.0
1942935930b ./gcc/ChangeLog.lib
3896853117b ./gcc/ch/ChangeLog
2055591891b ./gcc/ch/chill.brochure
262452143b ./gcc/ch/chill.in
1068085425b ./gcc/ch/chill.texi
1266350782b ./gcc/ch/ch-tree.def
3431963368b ./gcc/ch/ch-tree.h
666006412b ./gcc/ch/config-lang.in
3382766792b ./gcc/ch/configure
1217043291b ./gcc/ch/convert.c
780342204b ./gcc/ch/decl.c
2380641592b ./gcc/ch/except.c
797109334b ./gcc/ch/expr.c
3658339269b ./gcc/ch/gperf
1763938881b ./gcc/ch/grant.c
1554207802b ./gcc/ch/hash.h
455841629b ./gcc/ch/inout.c
916936107b ./gcc/ch/lang.c
2818159896b ./gcc/ch/lang-options.h
3676798508b ./gcc/ch/lang-specs.h
607676058b ./gcc/ch/lex.c
56655465b ./gcc/ch/lex.h
4068433180b ./gcc/ch/loop.c
3840952328b ./gcc/ch/Makefile.in
3668056982b ./gcc/ch/Make-lang.in
1502935023b ./gcc/ch/nloop.c
729034310b ./gcc/ch/parse.c
634606057b ./gcc/ch/parse.h
860743420b ./gcc/ch/README
1720320140b ./gcc/ch/satisfy.c
1539445801b ./gcc/ch/tasking.c
2604102496b ./gcc/ch/tasking.h
4069785574b ./gcc/ch/timing.c
272436253b ./gcc/ch/tree.c
2688980962b ./gcc/ch/typeck.c
4020668406b ./gcc/ch/xtypeck.c
3829210531b ./gcc/c-iterate.c
1221346333b ./gcc/c-lang.c
4038532167b ./gcc/c-lex.c
1368444824b ./gcc/c-lex.h
1724648154b ./gcc/collect2.c
1699818163b ./gcc/collect2.h
495045693b ./gcc/combine.c
1434596660b ./gcc/conditions.h
4106504689b ./gcc/config/1750a/1750a.c
3234129706b ./gcc/config/1750a/1750a.h
3095377682b ./gcc/config/1750a/1750a.md
2477730384b ./gcc/config/1750a/ms1750.inc
1693851368b ./gcc/config/1750a/xm-1750a.h
3821624618b ./gcc/config/a29k/a29k.c
4174995942b ./gcc/config/a29k/a29k.h
3852750578b ./gcc/config/a29k/a29k.md
2307933459b ./gcc/config/a29k/t-a29k
3566307489b ./gcc/config/a29k/t-a29kbare
3165685760b ./gcc/config/a29k/t-vx29k
2502433193b ./gcc/config/a29k/udi.h
2011164678b ./gcc/config/a29k/unix.h
1666542577b ./gcc/config/a29k/vx29k.h
2996218177b ./gcc/config/a29k/xm-a29k.h
2472430666b ./gcc/config/a29k/xm-unix.h
144752292b ./gcc/config/a29k/x-unix
193538505b ./gcc/config/alpha/alpha32.h
1514879972b ./gcc/config/alpha/alpha.c
3100261546b ./gcc/config/alpha/alpha.h
3742075344b ./gcc/config/alpha/alpha-interix.h
754462921b ./gcc/config/alpha/alpha.md
795597665b ./gcc/config/alpha/config-nt.sed
3567833533b ./gcc/config/alpha/crtbegin.asm
1312076907b ./gcc/config/alpha/crtend.asm
3042700248b ./gcc/config/alpha/elf.h
2715664516b ./gcc/config/alpha/lib1funcs.asm
1763018017b ./gcc/config/alpha/linux-ecoff.h
3273041531b ./gcc/config/alpha/linux-elf.h
812092393b ./gcc/config/alpha/linux.h
3777698255b ./gcc/config/alpha/netbsd-elf.h
5367058b ./gcc/config/alpha/netbsd.h
4065475375b ./gcc/config/alpha/openbsd.h
1792826440b ./gcc/config/alpha/osf12.h
1928873630b ./gcc/config/alpha/osf2or3.h
1470207174b ./gcc/config/alpha/osf.h
2118184540b ./gcc/config/alpha/t-crtbe
3128522514b ./gcc/config/alpha/t-ieee
3927015616b ./gcc/config/alpha/t-interix
1500154793b ./gcc/config/alpha/t-vms
3660437230b ./gcc/config/alpha/va_list.h
4010999121b ./gcc/config/alpha/vms.h
1402142372b ./gcc/config/alpha/vms-tramp.asm
1904467114b ./gcc/config/alpha/vxworks.h
2487176671b ./gcc/config/alpha/win-nt.h
1758618093b ./gcc/config/alpha/x-alpha
2339893992b ./gcc/config/alpha/xm-alpha.h
4139273463b ./gcc/config/alpha/xm-alpha-interix.h
2208381303b ./gcc/config/alpha/xm-openbsd.h
2295823330b ./gcc/config/alpha/xm-vms.h
822385833b ./gcc/config/alpha/xm-winnt.h
662120966b ./gcc/config/aoutos.h
2898703135b ./gcc/config/arc/arc.c
3275327813b ./gcc/config/arc/arc.h
4242839641b ./gcc/config/arc/arc.md
631838986b ./gcc/config/arc/initfini.c
3301435163b ./gcc/config/arc/lib1funcs.asm
2984223315b ./gcc/config/arc/t-arc
819474010b ./gcc/config/arc/xm-arc.h
1005732185b ./gcc/config/arm/aof.h
2774813096b ./gcc/config/arm/aout.h
2860349734b ./gcc/config/arm/arm.c
2608240560b ./gcc/config/arm/arm.h
4087133611b ./gcc/config/arm/arm.md
2488881798b ./gcc/config/arm/coff.h
1087283327b ./gcc/config/arm/ecos-elf.h
3886798812b ./gcc/config/arm/elf.h
951700778b ./gcc/config/arm/lib1funcs.asm
184992847b ./gcc/config/arm/lib1thumb.asm
1327962964b ./gcc/config/arm/linux-aout.h
3689484926b ./gcc/config/arm/linux-elf26.h
1081224307b ./gcc/config/arm/linux-elf.h
1629076541b ./gcc/config/arm/linux-gas.h
1687883437b ./gcc/config/arm/linux-oldld.h
309925977b ./gcc/config/arm/netbsd.h
2885119589b ./gcc/config/arm/README-interworking
2714546048b ./gcc/config/arm/riscix1-1.h
2757393750b ./gcc/config/arm/riscix.h
1910088041b ./gcc/config/arm/rix-gas.h
211210124b ./gcc/config/arm/semiaof.h
3032000292b ./gcc/config/arm/semi.h
2293704459b ./gcc/config/arm/t-arm-elf
378848060b ./gcc/config/arm/t-bare
63378260b ./gcc/config/arm/tcoff.h
271105747b ./gcc/config/arm/thumb.c
2006315119b ./gcc/config/arm/thumb.h
3116482299b ./gcc/config/arm/thumb.md
3774122170b ./gcc/config/arm/t-linux
2612005796b ./gcc/config/arm/t-netbsd
3806050362b ./gcc/config/arm/t-pe
1885831441b ./gcc/config/arm/t-riscix
106908213b ./gcc/config/arm/t-semi
2293966688b ./gcc/config/arm/t-semiaof
252266176b ./gcc/config/arm/t-thumb
3966028695b ./gcc/config/arm/unknown-elf.h
3578020456b ./gcc/config/arm/unknown-elf-oabi.h
1413665446b ./gcc/config/arm/vxarm.h
125476982b ./gcc/config/arm/xm-arm.h
1599844562b ./gcc/config/arm/xm-linux.h
639443881b ./gcc/config/arm/xm-netbsd.h
1103633380b ./gcc/config/arm/xm-thumb.h
2097180198b ./gcc/config/arm/x-riscix
1681095721b ./gcc/config/c4x/c4x.c
2648849385b ./gcc/config/c4x/c4x.h
814641753b ./gcc/config/c4x/c4x.md
2962364141b ./gcc/config/c4x/libgcc.S
1295106107b ./gcc/config/c4x/t-c4x
1038140439b ./gcc/config/c4x/xm-c4x.h
3174983832b ./gcc/config/clipper/clipper.c
2640842176b ./gcc/config/clipper/clipper.h
1853885182b ./gcc/config/clipper/clipper.md
2762198740b ./gcc/config/clipper/clix.h
4019777817b ./gcc/config/clipper/x-clix
2301931530b ./gcc/config/clipper/xm-clix.h
584983496b ./gcc/config/convex/convex.c
3987576977b ./gcc/config/convex/convex.h
232165835b ./gcc/config/convex/convex.md
861253244b ./gcc/config/convex/fixinc.convex
2034360953b ./gcc/config/convex/x-convex
944974965b ./gcc/config/convex/xm-convex.h
2118339989b ./gcc/config/dbxcoff.h
719087325b ./gcc/config/dbxelf.h
186717254b ./gcc/config/dbx.h
1049830767b ./gcc/config/dsp16xx/dsp16xx.c
2057916657b ./gcc/config/dsp16xx/dsp16xx.h
2894810547b ./gcc/config/dsp16xx/dsp16xx.md
3197918419b ./gcc/config/dsp16xx/xm-dsp16xx.h
3235410430b ./gcc/config/elfos.h
462661649b ./gcc/config/elxsi/elxsi.c
228348883b ./gcc/config/elxsi/elxsi.h
3851060193b ./gcc/config/elxsi/elxsi.md
3748147985b ./gcc/config/elxsi/x-elxsi
3591452694b ./gcc/config/elxsi/xm-elxsi.h
1167713510b ./gcc/config/float-i128.h
957662487b ./gcc/config/float-i32.h
1481742865b ./gcc/config/float-i386.h
2712611887b ./gcc/config/float-i64.h
3579227961b ./gcc/config/float-m68k.h
2467893270b ./gcc/config/float-sh.h
4263954902b ./gcc/config/float-vax.h
1136609705b ./gcc/config/fp-bit.c
1280702759b ./gcc/config/fx80/fx80.c
3838483130b ./gcc/config/fx80/fx80.h
2305138390b ./gcc/config/fx80/fx80.md
1737158293b ./gcc/config/fx80/xm-fx80.h
286920157b ./gcc/config/gmicro/gmicro.c
242691700b ./gcc/config/gmicro/gmicro.h
608028190b ./gcc/config/gmicro/gmicro.md
192108986b ./gcc/config/gnu.h
3358057730b ./gcc/config/gofast.h
1315260558b ./gcc/config.guess
73377905b ./gcc/config/h8300/h8300.c
4067077485b ./gcc/config/h8300/h8300.h
1910118754b ./gcc/config/h8300/h8300.md
519828525b ./gcc/config/h8300/lib1funcs.asm
3869818599b ./gcc/config/h8300/t-h8300
3636250675b ./gcc/config/h8300/xm-h8300.h
2978687204b ./gcc/config/i370/i370.c
1879962558b ./gcc/config/i370/i370.h
2691575732b ./gcc/config/i370/i370.md
1901725621b ./gcc/config/i370/t-i370
2084959845b ./gcc/config/i370/xm-i370.h
1895569515b ./gcc/config/i386/386bsd.h
3277790510b ./gcc/config/i386/aix386.h
3639481346b ./gcc/config/i386/aix386ng.h
2339764147b ./gcc/config/i386/att.h
2102389190b ./gcc/config/i386/bsd386.h
2582980211b ./gcc/config/i386/bsd.h
3010444208b ./gcc/config/i386/config-nt.sed
1755486995b ./gcc/config/i386/crtdll.h
3943560803b ./gcc/config/i386/cygwin.asm
1990906306b ./gcc/config/i386/cygwin.h
72827188b ./gcc/config/i386/dgux.c
2430932709b ./gcc/config/i386/dgux.h
1357324982b ./gcc/config/i386/djgpp.h
3567816533b ./gcc/config/i386/djgpp-rtems.h
1265439821b ./gcc/config/i386/freebsd-elf.h
914300508b ./gcc/config/i386/freebsd.h
2875212455b ./gcc/config/i386/gas.h
456755261b ./gcc/config/i386/gmon-sol2.c
2847664881b ./gcc/config/i386/gnu.h
166489147b ./gcc/config/i386/gstabs.h
3985340307b ./gcc/config/i386/i386-aout.h
2508343420b ./gcc/config/i386/i386.c
4111667020b ./gcc/config/i386/i386-coff.h
2250291155b ./gcc/config/i386/i386.h
1460528421b ./gcc/config/i386/i386-interix.h
1750576911b ./gcc/config/i386/i386.md
736772779b ./gcc/config/i386/interix.c
3165191846b ./gcc/config/i386/isccoff.h
231729323b ./gcc/config/i386/iscdbx.h
3245573839b ./gcc/config/i386/isc.h
26710255b ./gcc/config/i386/linux-aout.h
2953089825b ./gcc/config/i386/linux.h
4113338393b ./gcc/config/i386/linux-oldld.h
3496788786b ./gcc/config/i386/lynx.h
3286906750b ./gcc/config/i386/lynx-ng.h
346786519b ./gcc/config/i386/mach.h
679000007b ./gcc/config/i386/mingw32.h
700471847b ./gcc/config/i386/moss.h
1935753147b ./gcc/config/i386/netbsd.h
2405970032b ./gcc/config/i386/next.h
2030227922b ./gcc/config/i386/openbsd.h
407886013b ./gcc/config/i386/os2.h
2999570618b ./gcc/config/i386/osf1-ci.asm
2303041887b ./gcc/config/i386/osf1-cn.asm
3380650348b ./gcc/config/i386/osf1elfgdb.h
3591132822b ./gcc/config/i386/osf1elf.h
779598425b ./gcc/config/i386/osfelf.h
719827043b ./gcc/config/i386/osfrose.h
1380319377b ./gcc/config/i386/perform.h
237958676b ./gcc/config/i386/ptx4-i.h
1746945386b ./gcc/config/i386/rtemself.h
3828816383b ./gcc/config/i386/rtems.h
4154426458b ./gcc/config/i386/sco4dbx.h
31982113b ./gcc/config/i386/sco4.h
508494106b ./gcc/config/i386/sco5gas.h
1991449500b ./gcc/config/i386/sco5.h
2105078551b ./gcc/config/i386/scodbx.h
2829001020b ./gcc/config/i386/sco.h
1518390266b ./gcc/config/i386/seq2-sysv3.h
2260828739b ./gcc/config/i386/seq-gas.h
31216179b ./gcc/config/i386/seq-sysv3.h
3863801861b ./gcc/config/i386/sequent.h
892782158b ./gcc/config/i386/sol2-c1.asm
1565106149b ./gcc/config/i386/sol2-ci.asm
4008317666b ./gcc/config/i386/sol2-cn.asm
3651800257b ./gcc/config/i386/sol2gas.h
1864202258b ./gcc/config/i386/sol2-gc1.asm
4034476801b ./gcc/config/i386/sol2.h
1545753253b ./gcc/config/i386/sun386.h
684374459b ./gcc/config/i386/sun.h
3556123079b ./gcc/config/i386/svr3dbx.h
1910703073b ./gcc/config/i386/svr3gas.h
3846064431b ./gcc/config/i386/svr3.ifile
1523044645b ./gcc/config/i386/svr3z.ifile
619283818b ./gcc/config/i386/sysv3.h
2388432403b ./gcc/config/i386/sysv4.h
1735529466b ./gcc/config/i386/sysv5.h
2437302600b ./gcc/config/i386/t-crtpic
2246944266b ./gcc/config/i386/t-crtstuff
2509644115b ./gcc/config/i386/t-cygwin
2849008235b ./gcc/config/i386/t-dgux
482628910b ./gcc/config/i386/t-djgpp
2949021345b ./gcc/config/i386/t-i386bare
3987266175b ./gcc/config/i386/t-interix
4056914306b ./gcc/config/i386/t-mingw32
3437455964b ./gcc/config/i386/t-next
1186749595b ./gcc/config/i386/t-osf
1520459705b ./gcc/config/i386/t-osf1elf
3439196704b ./gcc/config/i386/t-sco5
2010697006b ./gcc/config/i386/t-sco5gas
1755709893b ./gcc/config/i386/t-sol2
3128852740b ./gcc/config/i386/t-svr3dbx
2977164768b ./gcc/config/i386/t-udk
1023926647b ./gcc/config/i386/t-uwin
482628910b ./gcc/config/i386/t-vsta
1281402728b ./gcc/config/i386/t-winnt
2348843648b ./gcc/config/i386/udk.h
524084667b ./gcc/config/i386/unix.h
2149794869b ./gcc/config/i386/uwin.asm
470472226b ./gcc/config/i386/uwin.h
1243186138b ./gcc/config/i386/v3gas.h
2327961737b ./gcc/config/i386/vsta.h
2176070711b ./gcc/config/i386/vxi386.h
1626352388b ./gcc/config/i386/win32.h
3439334875b ./gcc/config/i386/winnt.c
2860761703b ./gcc/config/i386/win-nt.h
3474740080b ./gcc/config/i386/x-aix
237037873b ./gcc/config/i386/x-cygwin
745721423b ./gcc/config/i386/x-dgux
231807750b ./gcc/config/i386/x-djgpp
4175788105b ./gcc/config/i386/x-isc
1331677327b ./gcc/config/i386/x-isc3
446547808b ./gcc/config/i386/xm-aix.h
4250296631b ./gcc/config/i386/xm-bsd386.h
2549976913b ./gcc/config/i386/xm-cygwin.h
2515568374b ./gcc/config/i386/xm-dgux.h
3764892052b ./gcc/config/i386/xm-djgpp.h
3045936467b ./gcc/config/i386/xm-dos.h
2787520086b ./gcc/config/i386/xm-freebsd.h
2990995265b ./gcc/config/i386/xm-gnu.h
767722837b ./gcc/config/i386/xm-i386.h
256026568b ./gcc/config/i386/xm-i386-interix.h
3899420493b ./gcc/config/i386/xm-isc.h
3801083047b ./gcc/config/i386/xm-linux.h
2830832587b ./gcc/config/i386/xm-lynx.h
2453552783b ./gcc/config/i386/xm-mingw32.h
3487707401b ./gcc/config/i386/xm-next.h
1218154368b ./gcc/config/i386/xm-openbsd.h
587932334b ./gcc/config/i386/xm-os2.h
412013975b ./gcc/config/i386/xm-osf1elf.h
446547808b ./gcc/config/i386/xm-osf.h
3701039150b ./gcc/config/i386/xm-sco5.h
262721373b ./gcc/config/i386/xm-sco.h
1933101345b ./gcc/config/i386/xm-sun.h
1551498273b ./gcc/config/i386/xm-sysv3.h
3083140420b ./gcc/config/i386/xm-sysv4.h
1404515293b ./gcc/config/i386/xm-vsta.h
2531169178b ./gcc/config/i386/xm-winnt.h
1612131512b ./gcc/config/i386/x-ncr3000
2391387330b ./gcc/config/i386/x-next
4245915723b ./gcc/config/i386/x-osf1elf
42414247b ./gcc/config/i386/x-osfrose
2268838873b ./gcc/config/i386/x-sco
2587996311b ./gcc/config/i386/x-sco4
1611173336b ./gcc/config/i386/x-sco5
1036967407b ./gcc/config/i386/x-sysv3
1769627032b ./gcc/config/i386/x-vsta
3691699076b ./gcc/config/i860/bsd-gas.h
3097443514b ./gcc/config/i860/bsd.h
1268798206b ./gcc/config/i860/fx2800.h
2072638444b ./gcc/config/i860/i860.c
39968499b ./gcc/config/i860/i860.h
3044441094b ./gcc/config/i860/i860.md
1007699151b ./gcc/config/i860/mach.h
2175963603b ./gcc/config/i860/paragon.h
697020478b ./gcc/config/i860/sysv3.h
2497417089b ./gcc/config/i860/sysv4.h
269024431b ./gcc/config/i860/t-fx2800
3969131493b ./gcc/config/i860/x-fx2800
994204119b ./gcc/config/i860/xm-fx2800.h
2507432460b ./gcc/config/i860/xm-i860.h
878205655b ./gcc/config/i860/x-sysv3
3510916973b ./gcc/config/i860/x-sysv4
2802625596b ./gcc/config/i960/i960.c
2870836375b ./gcc/config/i960/i960-coff.h
2742207675b ./gcc/config/i960/i960.h
2585178812b ./gcc/config/i960/i960.md
4195280424b ./gcc/config/i960/rtems.h
933294565b ./gcc/config/i960/t-960bare
3946187942b ./gcc/config/i960/t-vxworks960
2626110515b ./gcc/config/i960/vx960-coff.h
1895495318b ./gcc/config/i960/vx960.h
2616292576b ./gcc/config/i960/xm-i960.h
411742057b ./gcc/config.in
1336130822b ./gcc/config/interix.h
3065028535b ./gcc/config/libgloss.h
1240514243b ./gcc/config/linux-aout.h
1742048094b ./gcc/config/linux.h
1209329151b ./gcc/config/lynx.h
1966627403b ./gcc/config/lynx-ng.h
620755617b ./gcc/config/m32r/initfini.c
2225186460b ./gcc/config/m32r/m32r.c
2292829039b ./gcc/config/m32r/m32r.h
4221416263b ./gcc/config/m32r/m32r.md
4179023172b ./gcc/config/m32r/t-m32r
3744202374b ./gcc/config/m32r/xm-m32r.h
2069430788b ./gcc/config/m68k/3b1g.h
403759046b ./gcc/config/m68k/3b1.h
656990409b ./gcc/config/m68k/altos3068.h
2258908566b ./gcc/config/m68k/amix.h
3696604588b ./gcc/config/m68k/apollo68.h
3575263056b ./gcc/config/m68k/atari.h
2970953465b ./gcc/config/m68k/auxas.h
303618558b ./gcc/config/m68k/aux-crt1.c
189508427b ./gcc/config/m68k/aux-crt2.asm
118144777b ./gcc/config/m68k/aux-crtn.asm
141176279b ./gcc/config/m68k/aux-exit.c
1158552592b ./gcc/config/m68k/auxgas.h
922288695b ./gcc/config/m68k/auxgld.h
2113609688b ./gcc/config/m68k/a-ux.h
2685530303b ./gcc/config/m68k/auxld.h
2164284366b ./gcc/config/m68k/aux-low.gld
2715416885b ./gcc/config/m68k/aux-mcount.c
3169632395b ./gcc/config/m68k/ccur-GAS.h
351312764b ./gcc/config/m68k/coff.h
207482095b ./gcc/config/m68k/crds.h
2722243824b ./gcc/config/m68k/ctix.h
2770446786b ./gcc/config/m68k/dpx2cdbx.h
1165167071b ./gcc/config/m68k/dpx2g.h
603423256b ./gcc/config/m68k/dpx2.h
2216029984b ./gcc/config/m68k/dpx2.ifile
2518640661b ./gcc/config/m68k/fpgnulib.c
1510706425b ./gcc/config/m68k/hp2bsd.h
4247760656b ./gcc/config/m68k/hp310g.h
1601304406b ./gcc/config/m68k/hp310.h
3645108527b ./gcc/config/m68k/hp320g.h
4114232317b ./gcc/config/m68k/hp320.h
4063375962b ./gcc/config/m68k/hp3bsd44.h
1601216299b ./gcc/config/m68k/hp3bsd.h
2864047424b ./gcc/config/m68k/hpux7.h
683427592b ./gcc/config/m68k/isi.h
3484500543b ./gcc/config/m68k/isi-nfp.h
2393398106b ./gcc/config/m68k/lb1sf68.asm
1287467488b ./gcc/config/m68k/linux-aout.h
2513852382b ./gcc/config/m68k/linux.h
1765384748b ./gcc/config/m68k/lynx.h
2275885553b ./gcc/config/m68k/lynx-ng.h
2810980833b ./gcc/config/m68k/m68020-elf.h
388266224b ./gcc/config/m68k/m68k-aout.h
1327340244b ./gcc/config/m68k/m68k.c
1018776699b ./gcc/config/m68k/m68k-coff.h
3736322150b ./gcc/config/m68k/m68kelf.h
2590349266b ./gcc/config/m68k/m68kemb.h
853341913b ./gcc/config/m68k/m68k.h
782535168b ./gcc/config/m68k/m68k.md
3855098247b ./gcc/config/m68k/m68k-none.h
2991007317b ./gcc/config/m68k/m68k-psos.h
2788206253b ./gcc/config/m68k/m68kv4.h
4281215928b ./gcc/config/m68k/mot3300-crt0.S
811675754b ./gcc/config/m68k/mot3300.h
3413791584b ./gcc/config/m68k/mot3300Mcrt0.S
3624312269b ./gcc/config/m68k/netbsd.h
2598124463b ./gcc/config/m68k/news3gas.h
895337217b ./gcc/config/m68k/news3.h
2644657409b ./gcc/config/m68k/newsgas.h
4208572343b ./gcc/config/m68k/news.h
1968305925b ./gcc/config/m68k/next21.h
2862451568b ./gcc/config/m68k/next.h
3770709000b ./gcc/config/m68k/openbsd.h
384160690b ./gcc/config/m68k/pbb.h
3798721722b ./gcc/config/m68k/plexus.h
3980656405b ./gcc/config/m68k/rtems.h
2022844005b ./gcc/config/m68k/sgs.h
608572165b ./gcc/config/m68k/sun2.h
34831333b ./gcc/config/m68k/sun2o4.h
2871755703b ./gcc/config/m68k/sun3.h
4094912646b ./gcc/config/m68k/sun3mach.h
864417723b ./gcc/config/m68k/sun3n3.h
120628064b ./gcc/config/m68k/sun3n.h
2298299278b ./gcc/config/m68k/sun3o3.h
2211291190b ./gcc/config/m68k/t-aux
1601671577b ./gcc/config/m68k/t-linux
1601671577b ./gcc/config/m68k/t-linux-aout
1477854374b ./gcc/config/m68k/t-lynx
997035079b ./gcc/config/m68k/t-m68kbare
1431188037b ./gcc/config/m68k/t-m68kelf
2312371323b ./gcc/config/m68k/t-mot3300
1359551415b ./gcc/config/m68k/t-mot3300-gald
1936444177b ./gcc/config/m68k/t-mot3300-gas
2294965883b ./gcc/config/m68k/t-mot3300-gld
249897538b ./gcc/config/m68k/t-next
2026708872b ./gcc/config/m68k/tower-as.h
551679654b ./gcc/config/m68k/tower.h
2967405432b ./gcc/config/m68k/t-vxworks68
2987165266b ./gcc/config/m68k/vxm68k.h
878205655b ./gcc/config/m68k/x-alloca-c
4096453725b ./gcc/config/m68k/x-amix
1325510234b ./gcc/config/m68k/x-apollo68
4088761460b ./gcc/config/m68k/x-ccur
1762620255b ./gcc/config/m68k/x-crds
1170864157b ./gcc/config/m68k/x-dpx2
1240963087b ./gcc/config/m68k/x-hp2bsd
4196102339b ./gcc/config/m68k/x-hp320
59330584b ./gcc/config/m68k/x-hp320g
2280950471b ./gcc/config/m68k/xm-3b1.h
832557662b ./gcc/config/m68k/xm-altos3068.h
4285982649b ./gcc/config/m68k/xm-amix.h
1707292853b ./gcc/config/m68k/xm-atari.h
3022058994b ./gcc/config/m68k/xm-aux.h
732179410b ./gcc/config/m68k/xm-crds.h
391190612b ./gcc/config/m68k/xm-hp320.h
1829956157b ./gcc/config/m68k/xm-linux.h
3417287401b ./gcc/config/m68k/xm-lynx.h
1368515139b ./gcc/config/m68k/xm-m68k.h
7692108b ./gcc/config/m68k/xm-m68kv.h
2316649618b ./gcc/config/m68k/xm-mot3300.h
3626208384b ./gcc/config/m68k/xm-next.h
2596148490b ./gcc/config/m68k/xm-openbsd.h
3404524005b ./gcc/config/m68k/x-mot3300
3170569156b ./gcc/config/m68k/x-mot3300-gas
4033365544b ./gcc/config/m68k/xm-plexus.h
3728255284b ./gcc/config/m68k/xm-sun3.h
1429673665b ./gcc/config/m68k/xm-tower.h
805482102b ./gcc/config/m68k/x-next
263693140b ./gcc/config/m68k/x-tower
559413212b ./gcc/config/m88k/dguxbcs.h
1119083995b ./gcc/config/m88k/dgux.h
3298414170b ./gcc/config/m88k/dgux.ld
2075050065b ./gcc/config/m88k/dolph.h
1558967450b ./gcc/config/m88k/dolphin.ld
3853566566b ./gcc/config/m88k/luna.h
2278453924b ./gcc/config/m88k/m88k-aout.h
2203562636b ./gcc/config/m88k/m88k.c
963743779b ./gcc/config/m88k/m88k-coff.h
766388925b ./gcc/config/m88k/m88k.h
462097294b ./gcc/config/m88k/m88k.md
2372325319b ./gcc/config/m88k/m88k-move.sh
898184603b ./gcc/config/m88k/sysv3.h
1993010118b ./gcc/config/m88k/sysv4.h
4060219622b ./gcc/config/m88k/t-bug
3683187732b ./gcc/config/m88k/t-dgux
4032605278b ./gcc/config/m88k/t-dguxbcs
1298890126b ./gcc/config/m88k/t-dgux-gas
2796441735b ./gcc/config/m88k/tekXD88.h
173867895b ./gcc/config/m88k/tekXD88.ld
3651584303b ./gcc/config/m88k/t-luna
270918189b ./gcc/config/m88k/t-luna-gas
4060219622b ./gcc/config/m88k/t-m88k
2588594092b ./gcc/config/m88k/t-m88k-gas
3886447115b ./gcc/config/m88k/t-sysv4
3129976968b ./gcc/config/m88k/x-dgux
487572801b ./gcc/config/m88k/x-dguxbcs
3447263593b ./gcc/config/m88k/x-dolph
581988232b ./gcc/config/m88k/xm-m88k.h
1950046494b ./gcc/config/m88k/xm-sysv3.h
432446889b ./gcc/config/m88k/x-sysv3
2614770624b ./gcc/config/m88k/x-sysv4
2762110114b ./gcc/config/m88k/x-tekXD88
962826654b ./gcc/config/mips/abi64.h
2723281235b ./gcc/config/mips/bsd-4.h
616617104b ./gcc/config/mips/bsd-5.h
930726788b ./gcc/config/mips/cross64.h
2579679484b ./gcc/config/mips/dec-bsd.h
3807606487b ./gcc/config/mips/dec-osf1.h
260679193b ./gcc/config/mips/ecoff.h
3551974985b ./gcc/config/mips/ecoffl.h
4007015481b ./gcc/config/mips/elf64.h
3480170287b ./gcc/config/mips/elf.h
1175169006b ./gcc/config/mips/elfl64.h
4118432176b ./gcc/config/mips/elfl.h
452497001b ./gcc/config/mips/elflorion.h
4210328521b ./gcc/config/mips/elforion.h
1143331470b ./gcc/config/mips/gnu.h
2568626403b ./gcc/config/mips/iris3.h
63757439b ./gcc/config/mips/iris4.h
2743944992b ./gcc/config/mips/iris4loser.h
3875094584b ./gcc/config/mips/iris5gas.h
1976320964b ./gcc/config/mips/iris5.h
2588991547b ./gcc/config/mips/iris6.h
3852135655b ./gcc/config/mips/linux.h
3291569396b ./gcc/config/mips/mips16.S
3652751219b ./gcc/config/mips/mips-5.h
3997122313b ./gcc/config/mips/mips.c
828076041b ./gcc/config/mips/mips.h
2095290633b ./gcc/config/mips/mips.md
3494806728b ./gcc/config/mips/netbsd.h
1852349798b ./gcc/config/mips/news4.h
2469834027b ./gcc/config/mips/news5.h
189783361b ./gcc/config/mips/nws3250v4.h
1289842549b ./gcc/config/mips/osfrose.h
858594634b ./gcc/config/mips/r3900.h
1769321451b ./gcc/config/mips/rtems64.h
17103592b ./gcc/config/mips/sni-gas.h
714779279b ./gcc/config/mips/sni-svr4.h
1455158868b ./gcc/config/mips/svr3-4.h
2338194654b ./gcc/config/mips/svr3-5.h
1184753564b ./gcc/config/mips/svr4-4.h
896761812b ./gcc/config/mips/svr4-5.h
3657782110b ./gcc/config/mips/svr4-t.h
2138831918b ./gcc/config/mips/t-bsd
2520217533b ./gcc/config/mips/t-bsd-gas
3490072647b ./gcc/config/mips/t-cross64
3774028077b ./gcc/config/mips/t-ecoff
3053489673b ./gcc/config/mips/t-elf
1208402514b ./gcc/config/mips/t-iris6
4226487252b ./gcc/config/mips/t-mips
491943219b ./gcc/config/mips/t-mips-gas
4226487252b ./gcc/config/mips/t-osfrose
3302752934b ./gcc/config/mips/t-r3900
2969870919b ./gcc/config/mips/t-svr3
3458446551b ./gcc/config/mips/t-svr3-gas
1830179068b ./gcc/config/mips/t-svr4
745314483b ./gcc/config/mips/t-svr4-gas
2170716316b ./gcc/config/mips/t-ultrix
210779045b ./gcc/config/mips/ultrix.h
3227136420b ./gcc/config/mips/vxworks.h
1093662493b ./gcc/config/mips/x-dec-osf1
3056692151b ./gcc/config/mips/x-iris
490324532b ./gcc/config/mips/x-iris3
755414710b ./gcc/config/mips/x-iris6
1433979648b ./gcc/config/mips/x-mips
2375550941b ./gcc/config/mips/xm-iris3.h
3197006010b ./gcc/config/mips/xm-iris4.h
3440296848b ./gcc/config/mips/xm-iris5.h
1279762689b ./gcc/config/mips/xm-iris6.h
1940209380b ./gcc/config/mips/xm-mips.h
2988484388b ./gcc/config/mips/xm-news.h
1980789011b ./gcc/config/mips/xm-nws3250v4.h
220014071b ./gcc/config/mips/xm-sysv4.h
1007989765b ./gcc/config/mips/xm-sysv.h
2162788729b ./gcc/config/mips/x-netbsd
3800034921b ./gcc/config/mips/x-nws3250v4
2621150460b ./gcc/config/mips/x-osfrose
4105797367b ./gcc/config/mips/x-sni-svr4
2028727147b ./gcc/config/mips/x-sony
823835751b ./gcc/config/mips/x-sysv
1093662493b ./gcc/config/mips/x-ultrix
4083711028b ./gcc/config/mn10200/divmod.c
2305385178b ./gcc/config/mn10200/lib1funcs.asm
2755654897b ./gcc/config/mn10200/mn10200.c
1559142282b ./gcc/config/mn10200/mn10200.h
2370806672b ./gcc/config/mn10200/mn10200.md
3225600650b ./gcc/config/mn10200/t-mn10200
937080303b ./gcc/config/mn10200/udivmod.c
2590328114b ./gcc/config/mn10200/udivmodsi4.c
3653374278b ./gcc/config/mn10200/xm-mn10200.h
1173396001b ./gcc/config/mn10300/mn10300.c
1638577090b ./gcc/config/mn10300/mn10300.h
2317569146b ./gcc/config/mn10300/mn10300.md
2469174526b ./gcc/config/mn10300/t-mn10300
3653298513b ./gcc/config/mn10300/xm-mn10300.h
1434800528b ./gcc/config/msdos/configur.bat
650685154b ./gcc/config/msdos/libgcc.mak
196042059b ./gcc/config/msdos/mklibgcc.c
3152790587b ./gcc/config/msdos/top.sed
4102769563b ./gcc/config/netbsd.h
669336809b ./gcc/config/nextstep21.h
1550360365b ./gcc/config/nextstep.c
2540764799b ./gcc/config/nextstep.h
3464103330b ./gcc/config/ns32k/encore.h
3670330882b ./gcc/config/ns32k/genix.h
3696144992b ./gcc/config/ns32k/merlin.h
2407747597b ./gcc/config/ns32k/netbsd.h
3755726328b ./gcc/config/ns32k/ns32k.c
3496268242b ./gcc/config/ns32k/ns32k.h
2181731591b ./gcc/config/ns32k/ns32k.md
2256914403b ./gcc/config/ns32k/pc532.h
3442532179b ./gcc/config/ns32k/pc532-mach.h
3083546287b ./gcc/config/ns32k/pc532-min.h
2013512481b ./gcc/config/ns32k/sequent.h
4197473842b ./gcc/config/ns32k/tek6000.h
4027331813b ./gcc/config/ns32k/tek6100.h
1177977755b ./gcc/config/ns32k/tek6200.h
605655032b ./gcc/config/ns32k/x-genix
1596660922b ./gcc/config/ns32k/xm-genix.h
2335084315b ./gcc/config/ns32k/xm-netbsd.h
4055093539b ./gcc/config/ns32k/xm-ns32k.h
876936455b ./gcc/config/ns32k/xm-pc532-min.h
2430321650b ./gcc/config/openbsd.h
1628773348b ./gcc/config/pa/ee.asm
2905526493b ./gcc/config/pa/ee_fp.asm
2928231280b ./gcc/config/pa/lib1funcs.asm
531910520b ./gcc/config/pa/lib2funcs.asm
1025741261b ./gcc/config/pa/pa1.h
509609341b ./gcc/config/pa/pa.c
3698457987b ./gcc/config/pa/pa-gas.h
3381529477b ./gcc/config/pa/pa.h
3488257955b ./gcc/config/pa/pa-hiux.h
2717205711b ./gcc/config/pa/pa-hpux10.h
3105643464b ./gcc/config/pa/pa-hpux7.h
3124002443b ./gcc/config/pa/pa-hpux9.h
642326892b ./gcc/config/pa/pa-hpux.h
3791939783b ./gcc/config/pa/pa.md
3618123809b ./gcc/config/pa/pa-oldas.h
14614223b ./gcc/config/pa/pa-osf.h
4033897959b ./gcc/config/pa/pa-pro-end.h
2922201548b ./gcc/config/pa/pa-pro.h
3985707980b ./gcc/config/pa/rtems.h
1117935804b ./gcc/config/pa/t-dce-thr
1863456120b ./gcc/config/pa/t-pa
2490743349b ./gcc/config/pa/t-pro
4249254077b ./gcc/config/pa/xm-pa.h
3466885422b ./gcc/config/pa/xm-pahpux.h
2372326382b ./gcc/config/pa/xm-papro.h
2143426929b ./gcc/config/pa/x-pa
4046545344b ./gcc/config/pa/x-pa-hpux
743608944b ./gcc/config/pdp11/2bsd.h
2014002809b ./gcc/config/pdp11/pdp11.c
3794653707b ./gcc/config/pdp11/pdp11.h
2913094405b ./gcc/config/pdp11/pdp11.md
2225205890b ./gcc/config/pdp11/t-pdp11
3333372393b ./gcc/config/pdp11/xm-pdp11.h
2211300902b ./gcc/config/psos.h
3407049614b ./gcc/config/ptx4.h
3526974131b ./gcc/config/pyr/pyr.c
339012099b ./gcc/config/pyr/pyr.h
2905092864b ./gcc/config/pyr/pyr.md
2986118067b ./gcc/config/pyr/xm-pyr.h
840485037b ./gcc/config/pyr/x-pyr
3917072699b ./gcc/config/README
2499666444b ./gcc/config/romp/romp.c
1477332049b ./gcc/config/romp/romp.h
713610882b ./gcc/config/romp/romp.md
2880448747b ./gcc/config/romp/x-mach
3484447782b ./gcc/config/romp/xm-romp.h
2947038505b ./gcc/config/romp/x-romp
3112884702b ./gcc/config/rs6000/aix31.h
1675087546b ./gcc/config/rs6000/aix3newas.h
1494702623b ./gcc/config/rs6000/aix41.h
2970024935b ./gcc/config/rs6000/aix43.h
3242211636b ./gcc/config/rs6000/beos.h
3794273341b ./gcc/config/rs6000/cygwin.h
112343096b ./gcc/config/rs6000/eabiaix.h
3043603887b ./gcc/config/rs6000/eabi.asm
3373760176b ./gcc/config/rs6000/eabi-ci.asm
1240044824b ./gcc/config/rs6000/eabi-cn.asm
2033395004b ./gcc/config/rs6000/eabi-ctors.c
2983890082b ./gcc/config/rs6000/eabi.h
2310432239b ./gcc/config/rs6000/eabile.h
4040254220b ./gcc/config/rs6000/eabilesim.h
1593983191b ./gcc/config/rs6000/eabisim.h
2577382176b ./gcc/config/rs6000/linux.h
751612125b ./gcc/config/rs6000/lynx.h
1525754465b ./gcc/config/rs6000/mach.h
1820610909b ./gcc/config/rs6000/milli.exp
1063992963b ./gcc/config/rs6000/netware.h
1545361972b ./gcc/config/rs6000/nt-ci.asm
2111607652b ./gcc/config/rs6000/nt-cn.asm
3066888831b ./gcc/config/rs6000/ntstack.asm
1852442917b ./gcc/config/rs6000/rs6000.c
2374964851b ./gcc/config/rs6000/rs6000.h
3719637212b ./gcc/config/rs6000/rs6000.md
4257252017b ./gcc/config/rs6000/rtems.h
3407572927b ./gcc/config/rs6000/sol2.h
1289418179b ./gcc/config/rs6000/sol-c0.c
1695016479b ./gcc/config/rs6000/sol-ci.asm
1927994766b ./gcc/config/rs6000/sol-cn.asm
2287335055b ./gcc/config/rs6000/sysv4.h
1454776131b ./gcc/config/rs6000/sysv4le.h
1059562469b ./gcc/config/rs6000/t-aix43
3218787192b ./gcc/config/rs6000/t-beos
4097422602b ./gcc/config/rs6000/t-newas
3994014594b ./gcc/config/rs6000/t-ppc
4272756841b ./gcc/config/rs6000/t-ppccomm
2868568113b ./gcc/config/rs6000/t-ppcgas
1283581552b ./gcc/config/rs6000/t-ppcos
1717019755b ./gcc/config/rs6000/tramp.asm
3065325019b ./gcc/config/rs6000/t-rs6000
1874501442b ./gcc/config/rs6000/t-winnt
1415019668b ./gcc/config/rs6000/t-xnewas
3152886293b ./gcc/config/rs6000/t-xrs6000
1984878317b ./gcc/config/rs6000/vxppc.h
2069671306b ./gcc/config/rs6000/win-nt.h
489691602b ./gcc/config/rs6000/x-aix31
465478449b ./gcc/config/rs6000/x-aix41
2206127307b ./gcc/config/rs6000/x-aix41-gld
2363753655b ./gcc/config/rs6000/x-aix43
1379999620b ./gcc/config/rs6000/x-beos
4218694447b ./gcc/config/rs6000/x-cygwin
176036232b ./gcc/config/rs6000/x-lynx
1119193055b ./gcc/config/rs6000/x-mach
4091924904b ./gcc/config/rs6000/xm-beos.h
3277280620b ./gcc/config/rs6000/xm-cygwin.h
1387161565b ./gcc/config/rs6000/xm-lynx.h
2311049093b ./gcc/config/rs6000/xm-mach.h
277319235b ./gcc/config/rs6000/xm-rs6000.h
1198144020b ./gcc/config/rs6000/xm-sysv4.h
443641603b ./gcc/config/rs6000/x-rs6000
1861191694b ./gcc/config/rs6000/x-sysv4
1070214752b ./gcc/config/sh/elf.h
3820397636b ./gcc/config/sh/lib1funcs.asm
859670236b ./gcc/config/sh/rtemself.h
1030877040b ./gcc/config/sh/rtems.h
828900658b ./gcc/config/sh/sh.c
1962148926b ./gcc/config/sh/sh.h
216149670b ./gcc/config/sh/sh.md
3454560745b ./gcc/config/sh/t-sh
1840124650b ./gcc/config/sh/xm-sh.h
3025821674b ./gcc/config/sparc/aout.h
2582541021b ./gcc/config/sparc/bsd.h
4145941549b ./gcc/config/sparc/elf.h
3649780127b ./gcc/config/sparc/gmon-sol2.c
3746795534b ./gcc/config/sparc/hal.h
671302508b ./gcc/config/sparc/lb1spc.asm
892412538b ./gcc/config/sparc/lb1spl.asm
3829792761b ./gcc/config/sparc/linux64.h
1432771552b ./gcc/config/sparc/linux-aout.h
928257827b ./gcc/config/sparc/linux.h
3340219233b ./gcc/config/sparc/litecoff.h
529818954b ./gcc/config/sparc/lite.h
3270410192b ./gcc/config/sparc/lynx.h
2353689337b ./gcc/config/sparc/lynx-ng.h
2136616646b ./gcc/config/sparc/netbsd.h
2977280248b ./gcc/config/sparc/openbsd.h
1461652436b ./gcc/config/sparc/pbd.h
1610828060b ./gcc/config/sparc/rtems.h
1463670426b ./gcc/config/sparc/sol2-c1.asm
3288323690b ./gcc/config/sparc/sol2-ci.asm
2004370404b ./gcc/config/sparc/sol2-cn.asm
2182182911b ./gcc/config/sparc/sol2-g1.asm
1699311045b ./gcc/config/sparc/sol2.h
1938337838b ./gcc/config/sparc/sol2-sld-64.h
407406271b ./gcc/config/sparc/sol2-sld.h
2121730699b ./gcc/config/sparc/sp64-aout.h
824364328b ./gcc/config/sparc/sp64-elf.h
8979159b ./gcc/config/sparc/sparc.c
1457594704b ./gcc/config/sparc/sparc.h
1589963960b ./gcc/config/sparc/sparc.md
703944495b ./gcc/config/sparc/splet.h
2679804272b ./gcc/config/sparc/sun4gas.h
3455486806b ./gcc/config/sparc/sun4o3.h
3455986086b ./gcc/config/sparc/sunos4.h
1528721564b ./gcc/config/sparc/sysv4.h
2688036523b ./gcc/config/sparc/t-elf
1582758741b ./gcc/config/sparc/t-halos
3692140246b ./gcc/config/sparc/t-linux64
1215655583b ./gcc/config/sparc/t-sol2
3160382849b ./gcc/config/sparc/t-sol2-64
1887691100b ./gcc/config/sparc/t-sp64
3603106515b ./gcc/config/sparc/t-sparcbare
473489933b ./gcc/config/sparc/t-sparclite
3724398884b ./gcc/config/sparc/t-splet
2014088017b ./gcc/config/sparc/t-sunos40
1401640619b ./gcc/config/sparc/t-sunos41
2219277944b ./gcc/config/sparc/t-vxsparc
1400348246b ./gcc/config/sparc/vxsim.h
3525766313b ./gcc/config/sparc/vxsparc.h
2878609946b ./gcc/config/sparc/xm-linux.h
2943271346b ./gcc/config/sparc/xm-lynx.h
1370920631b ./gcc/config/sparc/xm-openbsd.h
1348380296b ./gcc/config/sparc/xm-pbd.h
1880319471b ./gcc/config/sparc/xm-sol2.h
3012493389b ./gcc/config/sparc/xm-sp64.h
859610969b ./gcc/config/sparc/xm-sparc.h
623960805b ./gcc/config/sparc/xm-sysv4-64.h
2019316444b ./gcc/config/sparc/xm-sysv4.h
1861191694b ./gcc/config/sparc/x-sysv4
931170751b ./gcc/config/spur/spur.c
3404301551b ./gcc/config/spur/spur.h
597536974b ./gcc/config/spur/spur.md
1910933143b ./gcc/config/spur/xm-spur.h
3683970223b ./gcc/config/svr3.h
166319006b ./gcc/config/svr4.h
8262563b ./gcc/config/tahoe/harris.h
3522173108b ./gcc/config/tahoe/tahoe.c
144796843b ./gcc/config/tahoe/tahoe.h
2208590758b ./gcc/config/tahoe/tahoe.md
2537862710b ./gcc/config/tahoe/xm-tahoe.h
613804065b ./gcc/config/t-freebsd
1372994999b ./gcc/config/t-gnu
3050012299b ./gcc/config/t-install-cpp
64239056b ./gcc/config/t-libc-ok
1224602530b ./gcc/config/t-linux
144067535b ./gcc/config/t-linux-aout
4111896717b ./gcc/config/t-linux-gnulibc1
4220164823b ./gcc/config/tm-dwarf2.h
1586139693b ./gcc/config/t-netbsd
2947277325b ./gcc/config/t-openbsd
2917904648b ./gcc/config/t-openbsd-thread
2026867792b ./gcc/config/t-rtems
182724490b ./gcc/config/t-svr4
729030691b ./gcc/configure
1467935606b ./gcc/configure.bat
3600082583b ./gcc/configure.frag
2231754695b ./gcc/configure.in
4241351077b ./gcc/configure.lang
4096035368b ./gcc/config/v850/lib1funcs.asm
3022592642b ./gcc/config/v850/t-v850
1702566744b ./gcc/config/v850/v850.c
1471160936b ./gcc/config/v850/v850.h
1499354909b ./gcc/config/v850/v850.md
2933253285b ./gcc/config/v850/xm-v850.h
2123647130b ./gcc/config/vax/netbsd.h