forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1782 lines (1048 loc) · 49.7 KB
/
ChangeLog
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
2012-08-14 Diego Novillo <dnovillo@google.com>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: New.
2012-08-13 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py (ExpirationDate): Tidy
comment.
2012-08-13 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py (ParseSummary): Fix
comment.
2012-08-13 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py: Import datetime.
(TestResult.ExpirationDate): New.
(TestResult.HasExpired): New.
(ParseSummary): Call it. If it returns True, warn that the
expected failure has expired and do not add it to the set of
expected results.
(GetResults): Clarify documentation.
2012-07-26 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py: Do not use
'with ... as ...' constructs.
2012-07-19 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py (CollectSumFiles):
Rename from GetSumFiles.
(GetSumFiles): Factor out of CheckExpectedResults.
(CheckExpectedResults): Call it.
(ProduceManifest): Call it.
2012-07-18 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py: Fix
/usr/bin/python invocation.
2012-06-19 Steven Bosscher <steven@gcc.gnu.org>
* check_makefile_deps.sh: Look for c-common.o in c-family/.
Add a few more crt* files to the list of files to skip.
2012-05-31 Marek Polacek <polacek@redhat.com>
* mklog: Prevent printing three spaces after the date.
2012-06-04 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py (GetResults):
Change argument to accept list of summary files to analyze.
Update callers.
(CheckExpectedResults): Handle options.manifest, options.results
and options.ignore_missing_failures.
(Main): Add options --manifest, --results and --ignore_missing_failures.
2012-05-31 Diego Novillo <dnovillo@google.com>
Cary Coutant <ccoutant@google.com>
* mklog: New.
2012-05-25 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/53472
* contrib/compare-debug (remove_comment): New function.
Remove any .comment sections if the first cmp failed.
2012-05-09 David Edelsohn <dje.gcc@gmail.com>
* gcc_update: Use $GCC_SVN to retrieve branch and revision.
2012-05-01 Richard Henderson <rth@redhat.com>
* gcc_update: Add libatomic generated files.
2012-04-23 Manuel López-Ibáñez <manu@gcc.gnu.org>
* compare_tests: Append '/' to make 'find' traverse
symlinked directories.
2012-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* testsuite-management/validate_failures.py (GetBuildData): Use
target_alias.
2012-04-06 Doug Evans <dje@google.com>
* dg-extract-results.sh: Handle KFAILs.
2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config-list.mk (LIST): Remove mips-sgi-irix6.5.
2012-03-13 Joseph Myers <joseph@codesourcery.com>
* gennews (files): Add files for GCC 4.7.
2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config-list.mk (LIST): Remove mips-openbsd.
2012-03-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config-list.mk (LIST): Remove alpha-dec-osf5.1.
2012-03-02 Diego Novillo <dnovillo@google.com>
* testsuite-management/validate_failures.py (class TestResult): Fix
match pattern for the summary line. If there is a parsing failure,
show the line we failed to parse.
2012-02-27 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
PR libstdc++/52188
* make_sunver.pl: Remove #ifdef handling.
2012-02-17 Doug Kwan <dougkwan@google.com>
* contrib/testsuite-management/validate_failures.py
(GetMakefileValue): Check for cross compilers.
2012-02-15 Quentin Neill <quentin.neill@amd.com>
* compare_tests: Fix trailing paths in dir arguments.
Handle sum1/sum2 temp files with others.
2012-02-14 Walter Lee <walt@tilera.com>
* config-list.mk (LIST): Add tilegx-linux-gnu and
tilepro-linux-gnu.
* gcc_update (gcc/config/tilegx/mul-tables.c): New dependencies.
(gcc/config/tilepro/mul-tables.c): New dependencies.
2012-02-11 Mike Stump <mikestump@comcast.net>
* compare_tests (exit_status): Fix.
2012-02-10 Diego Novillo <dnovillo@google.com>
* repro_fail: Add --debug and --debug-tui flags.
2012-02-02 Sumanth G <sumanth.gundapaneni@kpitcummins.com>
Jayant R Sonar <jayant.sonar@kpitcummins.com>
* config-list.mk (LIST): Add cr16-elf.
2012-01-02 Georg-Johann Lay <avr@gjlay.de>
PR target/51345
* gcc_update (files_and_dependencies): Add
gcc/config/avr/t-multilib, gcc/config/avr/multilib.h.
2011-11-29 DJ Delorie <dj@redhat.com>
* config-list.mk (LIST): Add rl78-elf.
2011-11-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* make_sunver.pl: Convert '?' in glob patterns to '.'.
2011-11-07 Richard Henderson <rth@redhat.com>
Merged from transactional-memory.
* gcc_update: Add libitm to touch data.
2011-11-07 Quentin Neill <quentin.neill@amd.com>
* compare_tests: Add ability to compare all .sum
files from two build directories.
2011-11-05 Joern Rennecke <joern.rennecke@embecosm.com>
* contrib-list.mk: Add Epiphany configurations.
2011-09-13 Diego Novillo <dnovillo@google.com>
* testsuite-management: New.
* testsuite-management/validate_failures.py: New.
2011-08-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc_update: Determine svn branch from hg convert_revision.
2011-07-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config-list.mk (i586-netware): Remove.
(.PHONY): Remove make-script-dir dependency.
(make-script-dir): Remove.
($(LIST)): Remove make-script-dir dependency.
2011-07-15 Bernd Schmidt <bernds@codesourcery.com>
* gcc_update: Add C6X generated files.
* contrib/config-list.mk: Add c6x-elf and c6x-uclinux.
2011-07-01 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config-list.mk (LIST): Append OPT-enable-obsolete to
alpha-dec-osf5.1, mips-sgi-irix6.5.
2011-06-24 Diego Novillo <dnovillo@google.com>
* repro_fail: New.
2011-06-21 Joseph Myers <joseph@codesourcery.com>
* gcc_update (gcc/config/avr/avr-tables.opt): New dependencies.
2011-05-19 Joseph Myers <joseph@codesourcery.com>
* gcc_update (gcc/config/arm/arm-tables.opt): Also depend on
gcc/config/arm/arm-fpus.def.
2011-05-10 Joseph Myers <joseph@codesourcery.com>
* gcc_update (gcc/config/rs6000/rs6000-tables.opt): New
dependencies.
2011-05-09 Joseph Myers <joseph@codesourcery.com>
* gcc_update (gcc/config/mips/mips-tables.opt): New dependencies.
2010-05-05 Joern Rennecke <joern.rennecke@embecosm.com>
* config-list.mk: New file.
2011-05-02 Joseph Myers <joseph@codesourcery.com>
* gcc_update (gcc/config/m68k/m68k-tables.opt): New dependencies.
2011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
* paranoia.cc (ENUM_BITFIELD): Remove.
2011-04-08 Joseph Myers <joseph@codesourcery.com>
* gcc_update (gcc/config/arm/arm-tables.opt): New dependencies.
2011-03-22 Joseph Myers <joseph@codesourcery.com>
* compare-all-tests (all_targets): Remove crx and m68hc11.
2011-03-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
PR bootstrap/48135
* make_sunver.pl: Don't use File::Glob.
2011-03-05 Joseph Myers <joseph@codesourcery.com>
* gennews (files): Add files for GCC 4.6.
2011-01-26 Dave Korn <dave.korn.cygwin@gmail.com>
* patch_tester.sh (nopristinecache): New shell var, set according
to presence or absence of new -nopristinecache option.
(usage): Document new option.
(bootntest_pristine): Implement it.
2010-11-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* make_sunver.pl: Use elfdump -s to extract symbols if possible,
readelf -s otherwise.
2010-11-08 Eric Botcazou <ebotcazou@adacore.com>
* make_sunver.pl: Ignore entries without symbol name first. Then do
not ignore symbols marked as 'R'.
2010-10-18 Andi Kleen <ak@linux.intel.com>
* gccbug.el: Remove.
2010-10-12 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc_update: Run $GCC_HG pull and update separately.
Check parents for SVN revision.
2010-10-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* test_recheck: New script.
2010-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* texi2pod.pl: Replace @@ before @{ and @}, for @samp{@@}.
Also escape characters with grave accents, to be fixed ...
(unmunge): ... here.
(postprocess): Also handle @/ and @acronym{...}.
2010-07-02 Sebastian Pop <sebastian.pop@amd.com>
* check_GNU_style.sh: Do not print warning messages when there are
no occurences.
2010-09-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc_update: Handle hg, too.
2010-07-08 Eric Botcazou <ebotcazou@adacore.com>
* make_sunver.pl: Remove extra whitespace in regexp.
2010-07-02 Sebastian Pop <sebastian.pop@amd.com>
* check_GNU_style.sh: New.
2010-07-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* make_sunver.pl: New file.
2010-07-02 Iain Sandoe <iains@gcc.gnu.org>
* compare-debug (Darwin): Remove '-x' flag from ld-based object
stripping. Add a comment as to why we do it this way.
2010-06-20 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: Drop LTO sections.
2010-06-15 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* gcc_update: Support updating a git clone.
2010-06-04 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* test_summary: Don't use diff -u.
Adapt egrep regex.
2010-06-02 Andrew Haley <aph@redhat.com>
* download_prerequisites: New script.
2010-05-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* dg-extract-results.sh: Redirect grep output to /dev/null instead
of grep -q.
2010-04-22 Basile Starynkevitch <basile@starynkevitch.net>
* gcc_update: Sets the locale to C.
2010-04-06 Joseph Myers <joseph@codesourcery.com>
* gennews (files): Add files for GCC 4.5.
2010-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
Fix *.log tests output containing "===".
* dg-extract-results.sh (/\===/): Rename to ...
(/^\t\t=== .* ===$/): ... this pattern.
2010-03-02 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* dg-extract-results.sh: Fix result order to match sequential case.
2010-01-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* check_warning_flags.sh: Use \012 instead of \n with tr.
2010-01-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* dg-extract-results.sh: Don't use tail -n.
2009-10-03 H.J. Lu <hongjiu.lu@intel.com>
Richard Guenther <rguenther@suse.de>
PR lto/39216
* gcc_update: Adjust file timestamps for lto-plugin.
2009-09-10 Iain Sandoe <iain.sandoe@sandoe-acoustics.co.uk>
PR bootstrap/41245
* compare-debug: Handle stripping of dwarf debug sections from darwin
mach-o objects.
2009-09-04 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: Grep for blank before dash to avoid grep -e.
2009-09-01 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: Look for .gkd files and compare them.
2009-08-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
PR testsuite/41166
* test_summary: Invoke config.status, rather than trying to
parse it. Adjust awk script.
2009-08-18 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: Drop .eh_frame relocations too.
2009-08-18 H.J. Lu <hongjiu.lu@intel.com>
PR testsuite/40704
* test_summary: Filter out "\r".
2009-06-02 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: Don't fail just because of .eh_frame differences.
2009-04-27 Jakub Jelinek <jakub@redhat.com>
PR testsuite/39807
* dg-extract-results.sh: Close open files and use >> instead of >
to decrease number of concurrently open files from awk. Avoid
= at the beginning of a regexp and redirect to a file determined
by curfile variable rather than concatenated strings to workaround
Solaris nawk bug.
2009-04-25 Gerald Pfeifer <gerald@pfeifer.com>
* test_summary: Only include LAST_UPDATED if it exists.
Complete copyright years.
2009-04-16 Paolo Bonzini <bonzini@gnu.org>
* compare-all-tests: New.
2009-04-14 Jakub Jelinek <jakub@redhat.com>
* gennews (files): Reference GCC 4.4 web pages.
2009-04-09 Jakub Jelinek <jakub@redhat.com>
* reghunt/date_based/reg_periodic: Change copyright header to refer
to version 3 of the GNU General Public License and to point readers
at the COPYING3 file and the FSF's license web page.
* reghunt/date_based/reg_search: Likewise.
* regression/GCC_Regression_Tester.wdgt/widget.html: Likewise.
* regression/btest-gcc.sh: Likewise.
* regression/objs-gcc.sh: Likewise.
2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* check_warning_flags.sh: Update flag exceptions.
2008-11-18 Ben Elliston <bje@au.ibm.com>
* dg-cmp-results.sh: Do not print usage if either .sum file cannot
be opened; print a more meaningful error instead.
2008-10-24 Janis Johnson <janis187@us.ibm.com>
Jakub Jelinek <jakub@redhat.com>
* dg-extract-results.sh: New file.
2008-07-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* check_makefile_deps.sh: New file.
2008-05-08 Sebastian Pop <sebastian.pop@amd.com>
* patch_tester.sh (report): Do not print "Checker: ".
2008-04-23 Sebastian Pop <sebastian.pop@amd.com>
* patch_tester.sh (report): Do not print the time.
2008-04-01 Joseph Myers <joseph@codesourcery.com>
* texi2pod.pl: Handle @samp and @url inside verbatim blocks.
Handle @heading. Handle enumerated lists with starting numbers
and extra headings.
2008-03-10 Janis Johnson <janis187@us.ibm.com>
* patch_tester.sh (initialization): Initialize svnpatch and stop.
(usage): Add -svnpath and -stop.
(makedir): New.
(argument handling): Process -stop and -svnpath.
(setup code): Use makedir, error out if initial svn checkout fails.
(update): Use svnpath. Invoke contrib/gcc_update.
(apply_patch): Require that patch was created at top level. Use eval
with option variables. Don't use bootstrap target for make. Verify
that some tests were run.
(bootntest_patched): Use snvpath.
(main loop): For -stop, exit when there are no more patches to test.
2008-03-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* check_warning_flags.sh: Instead of invoke.texi, take the path
to the doc directory as argument. Check that warnings listed in
'gcc --help' are accepted by the compiler, and listed in the
manuals.
2008-03-06 Tom Tromey <tromey@redhat.com>
* patch_tester.sh (usage): Watermark is not lexicographic.
Load $STATE/defaults if it exists.
(selfexec): Use $0.
(apply_patch): Handle deletions.
(bootntest): Handle default settings.
2008-03-05 Jakub Jelinek <jakub@redhat.com>
* gennews (files): Reference GCC 4.3 web pages.
2008-02-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* check_warning_flags.sh: New file.
2008-01-25 Joseph Myers <joseph@codesourcery.com>
* paranoia.cc (main): Remove handling of c4x_single and
c4x_extended formats.
2007-12-26 Sebastian Pop <sebastian.pop@amd.com>
* compareSumTests3: Changed to GPLv3.
* prepare_patch.sh: Same.
* uninclude: Same.
* dglib.pm: Same.
* gennews: Same.
* texi2pod.pl: Same.
* analyze_brprob: Same.
* gcc_build: Same.
2007-12-26 Sebastian Pop <sebastian.pop@amd.com>
* patch_tester.sh: Changed to GPLv3.
2007-12-15 Sebastian Pop <sebastian.pop@amd.com>
* patch_tester.sh: Don't save the script anymore.
2007-12-15 Sebastian Pop <sebastian.pop@amd.com>
* patch_tester.sh: New.
* prepare_patch.sh: New.
2007-11-26 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: Introduce -p flag to preserve .stripped files.
2007-10-08 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
* texi2pod.pl: Handle @asis.
(postprocess): Move @gccoptlist{} after all formatting commands.
2007-10-01 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: Avoid spurious errors when .stripped files
exist.
2007-09-22 Hans-Peter Nilsson <hp@axis.com>
* warn_summary (srcdirFilter): Add fixincludes, sim,
newlib and mpfr.
2007-08-23 H.J. Lu <hongjiu.lu@intel.com>
* gcc_update: Handle different URL paths and tags.
2007-08-16 Alexandre Oliva <aoliva@redhat.com>
* compare-debug: New.
2007-08-16 H.J. Lu <hongjiu.lu@intel.com>
Andreas Schwab <schwab@suse.de>
* gcc_update: Use "svn info" for revision number. Create
gcc/REVISION with branch name and revision number.
2007-08-10 Diego Novillo <dnovillo@google.com>
* gcc.doxy: Rename from tree-ssa.doxy.
2007-08-10 Diego Novillo <dnovillo@google.com>
* tree-ssa.doxy: Update for doxygen 1.5.
Include all the files in the middle and back ends.
2007-06-30 Hans-Peter Nilsson <hp@axis.com>
* gcc_update (files_and_dependencies): Handle
gcc/testsuite/gcc.dg/cpp/direct2s.c.
2007-05-13 Mark Mitchell <mark@codesourcery.com>
* gennews (files): Reference GCC 4.2 web pages.
2007-04-04 Zack Weinberg <zack@mrtock.ucsd.edu>
* texi2pod.pl: Correct handling of @itemize with no argument.
2007-03-17 Hans-Peter Nilsson <hp@axis.com>
* uninclude: New utility, from Alexandre Oliva.
2007-02-26 Dominique Dhumieres <dominiq@lps.ens.fr>
* test_installed: Adjust to the move from g77 to gfortran.
2007-02-16 Matthias Klose <doko@debian.org>
* texi2pod.pl: Handle @subsubsection, ignore @anchor.
2007-02-10 Hans-Peter Nilsson <hp@axis.com>
* test_summary (configflags): Adjust for changes in the
config.status format due to update to autoconf 2.59.
2007-02-09 Daniel Jacobowitz <dan@codesourcery.com>
* gcc_update: Update for configure.in -> configure.ac.
2007-02-06 Richard Sandiford <richard@codesourcery.com>
* texi2pod.pl: Handle @multitable.
2007-01-15 Tom Tromey <tromey@redhat.com>
* download_ecj: New file.
2006-09-27 Matthew Sachs <msachs@apple.com>
* compareSumTests3: POD syntax fix.
2006-09-27 Matthew Sachs <msachs@apple.com>
* dglib.pm: Initial commit.
* compareSumTests3: Initial commit.
2006-09-18 Bernhard Fischer <aldot@gcc.gnu.org>
* dg-cmp-results.sh (compare-$$.awk): Print name[old]
and not non-existing nm[old].
2006-07-06 Paul Eggert <eggert@cs.ucla.edu>
Port to hosts whose 'sort' and 'tail' implementations
treat operands with leading '+' as file names, as POSIX
has required since 2001. However, make sure the code still
works on pre-POSIX hosts.
* compare_tests: Don't assume "sort +2" is equivalent to
"sort -k 3", since POSIX 1003.1-2001 no longer requires this.
2006-06-05 James Lemke <jwlemke@wasabisystems.com>
* dg-cmp-results.sh: New script for comparing DejaGNU logs.
2006-06-02 Richard Earnshaw <rearnsha@arm.com>
Mike Stump <mrs@apple.com>
* compare_tests: Handle multilibs better.
2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
* texi2pod.pl: Correct handling of absolute @include.
2006-05-02 Daniel Jacobowitz <dan@codesourcery.com>
* texi2pod.pl: Handle -I.
2006-02-28 Mark Mitchell <mark@codesourcery.com>
* gennews (files): Update for GCC 4.1.
2006-01-24 Diego Novillo <dnovillo@redhat.com>
* gcc_update (files_and_dependencies): Handle
libgomp/testsuite/Makefile.in.
2006-01-18 Richard Henderson <rth@redhat.com>
Diego Novillo <dnovillo@redhat.com>
* gcc_update (files_and_dependencies): Add libgomp files.
2005-12-06 Ben Elliston <bje@au.ibm.com>
* newcvsroot: Remove.
2005-11-03 Steven Bosscher <stevenb@suse.de>
* gcc_build: Fix my previous checking.
2005-11-01 Joseph S. Myers <joseph@codesourcery.com>
* gcc_update: Include revision number in LAST_UPDATED.
2005-10-30 Steven Bosscher <stevenb@suse.de>
* gcc_build: Use gcc.gnu.org as the default server. Set up
SVN_REPOSITORY correctly. Add support for checking out branches.
2005-10-28 Andrew Pinski <pinskia@gcc.gnu.org>
* gcc_update: When svn update is called and
--silent is used, pass -q.
2005-10-28 Andrew Pinski <pinskia@gcc.gnu.org>
* gcc_update: Remove the -q from svn invocation.
2005-10-28 Andrew Pinski <pinskia@gcc.gnu.org>
* gcc_build: Remove -d from the call to gcc_update.
2005-10-28 Daniel Berlin <dberlin@dberlin.org>
Ben Elliston <bje@au1.ibm.com>
* gcc_update: Update for svn.
* newcvsroot: Ditto.
* gcc_build: Ditto.
2005-10-21 Mark Mitchell <mark@codesourcery.com>
* texi2pod.pl: Substitue for @value even when part of @include.
2005-10-21 Bob Wilson <bob.wilson@acm.org>
* texi2pod.pl: Convert two single quotes or two backquotes to
double quotes.
2005-08-23 Ben Elliston <bje@au.ibm.com>
* gcc_update: Update dependencies for libjava/aclocal.m4.
2005-08-14 Kelley Cook <kcook@gcc.gnu.org>
* All files: Update with new FSF address.
2005-07-14 Ben Elliston <bje@au.ibm.com>
* filter_params.pl: Typo fix.
* filter_knr2ansi.pl: Likewise.
2005-06-05 Gerald Pfeifer <gerald@pfeifer.com>
* gennews (files): Update for egcs-1.0 release pages consolidation.
2005-04-17 Joseph S. Myers <joseph@codesourcery.com>
* gennews (files): Update for GCC 4.0.
2005-03-18 Alexandre Oliva <aoliva@redhat.com>
* gcc_update (silent): Unset instead of initializing to null.
2005-03-18 Andreas Schwab <schwab@suse.de>
* gcc_update (apply_patch): Properly quote $1.
2005-03-18 Zack Weinberg <zack@codesourcery.com>
* gcc_update: Add --silent option.
2005-03-08 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* warn_summary (keywordFilter): Update sed pattern for new quoting
style in warnings.
2005-03-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* warn_summary: Add -fortran subdir flag.
(subdirectoryFilter): Fix missing ada subdir.
2004-11-20 Hans-Peter Nilsson <hp@bitrange.com>
* gcc_update (touch_files): Don't rely on "make" being GNU make;
grep for "Touching" to determine that the rule executes.
2004-11-14 Hans-Peter Nilsson <hp@bitrange.com>
* gcc_update (touch_files): Explicitly pass --no-print-directory.
2004-11-04 Andrew Pinski <pinskia@physics.uc.edu>
* gcc_update (boehm-gc/aclocal.m4): Remove boehm-gc/acinclude.m4.
2004-08-04 Paolo Bonzini <bonzini@gnu.org>
* gcc_update: Add fixincludes.
2004-08-26 Matthias Klose <doko@debian.org>
* texi2pod.pl: keep references of the form @ref{...}, print them bold.
2004-08-26 Matthias Klose <doko@debian.org>
* test_summary: Include baseline used for libstdc++-v3 abi check
in test summary.
2004-08-25 Ben Elliston <bje@au.ibm.com>
* gcc_update (libcpp/Makefile.in): Remove libcpp/Makefile.am.
2004-08-20 Andreas Tobler <a.tobler@schweiz.ch>
* gcc_update (self): libjava/configure.in -> configure.ac. Automake
update done.
2004-08-04 Paolo Bonzini <bonzini@gnu.org>
* gcc_update: libjava/configure.ac -> configure.in. Automake
1.4 does not handle configure.ac properly.
2004-08-04 Andreas Schwab <schwab@suse.de>
* gcc_update: libjava/configure.in -> configure.ac.
2004-08-03 Richard Earnshaw <rearnsha@arm.com>
* gcc_update: gcc/config/arm/arm-tune.md -> arm-cores.def gentune.sh.
2004-07-16 Jeff Law <law@redhat.com>
* analyze_brprob: Fix comments. More consistent output format.
2004-06-17 Diego Novillo <dnovillo@redhat.com>
* tree-ssa.doxy: Update for doxygen 1.3.5.
2004-06-14 Andreas Jaeger <aj@suse.de>
* gcc_update: boehm-gc/configure.in -> configure.ac.
2004-06-16 Paolo Bonzini <bonzini@gnu.org>
* gcc_update (boehm-gc/configure): Depend on
boehm-gc/configure.ac instead of boehm-gc/configure.in
2004-06-14 Paolo Bonzini <bonzini@gnu.org>
* gcc_update (libmudflap/configure): Depend on
libmudflap/configure.ac instead of libmudflap/configure.in
2004-06-14 Andreas Jaeger <aj@suse.de>
* gcc_update: Add libcpp.
2004-06-10 Andreas Jaeger <aj@suse.de>
* gcc_update: Add libgfortran.
2004-05-29 Andrew Pinski <pinskia@physics.uc.edu>
* gcc_update (libbanshee/configure): Depend on
libbanshee/configure.ac instead of libbanshee/configure.in
2004-05-17 Zack Weinberg <zack@codesourcery.com>
* gcc_update: Remove gcc/f/intdoc.texi and all libf2c files
from list of files to be touched.
* convert_to_f2c, convert_to_g2c, download_f2c: Delete.
2004-05-15 Joseph S. Myers <jsm@polyomino.org.uk>
* gennews: Update for GCC 3.4.
2004-05-13 Diego Novillo <dnovillo@redhat.com>
Merge from tree-ssa-20020619-branch.
* filter_gcc_for_doxygen: New file.
* filter_knr2ansi.pl: New file.
* filter_params.pl: New file.
* tree-ssa.doxy: New file.
* contrib/gcc_update (files_and_dependencies): Handle
libbanshee and libmudflap.
2004-04-12 Kelley Cook <kcook@gcc.gnu.org>
Andreas Jaeger <aj@suse.de>
* gcc_update (files_and_dependencies): Insert zlib dependencies.
2004-04-09 Nathanael Nerode <neroden@gcc.gnu.org>
* gcc_update (files_and_dependencies): libobjc/configure now
depends on configure.ac, not configure.in.
2004-04-01 Kelley Cook <kcook@gcc.gnu.org>
* gcc_update (files_and_dependencies): Remove gcc/ada/*.texi.
2004-03-16 Andreas Tobler <a.tobler@schweiz.ch>
* gcc_update (files_and_dependencies): Insert libffi dependencies.
2004-03-10 Kelley Cook <kcook@gcc.gnu.org>
* gcc_update (files_and_dependencies): Insert libada/configure.
2004-02-29 Andrew Pinski <pinskia@physics.uc.edu>
* gcc_update (files_and_dependencies): Update intl/configure.in
to intl/configure.ac.
2004-01-09 Kelley Cook <kcook@gcc.gnu.org>
* gcc_update (files_and_dependencies): Update fastjar/configure.in
to fastjar/configure.ac
2004-01-07 Kelley Cook <kcook@gcc.gnu.org>
* gcc_update (files_and_dependencies): Remove non-existant files.
2004-01-05 Kelley Cook <kcook@gcc.gnu.org>
* gcc_update (files_generated): Revert 2003-12-18 change.
2004-01-03 Andrew Pinski <pinskia@physics.uc.edu>
* gcc_update (files_and_dependencies): For gcc directory,
rename configure.in to configure.ac.
2003-12-19 Andreas Tobler <a.tobler@schweiz.ch>
* gcc_update (files_and_dependencies): For libjava/libltdl directory,
remove acconfig.h. No longer used.
2003-12-18 Kelley Cook <kcook@gcc.gnu.org>
* gcc_update (files_generated): Add in gcc/ada/stamp-xgnatug and update
gcc/ada/gnat_ug_* to use it.
2003-12-16 James E Wilson <wilson@specifixinc.com>
* gcc_update (files_and_dependencies): For libjava/libltdl directory,
rename configure.in to configure.ac, and stamp-h.in to config-h.in.
2003-12-11 Kelley Cook <kcook@gcc.gnu.org>
* gcc_update (files_and_dependencies): Correct typo in the filename
gnat_ug_wnt.texi.
2003-12-08 Arnaud Charlet <charlet@act-europe.fr
* gcc_update: Remove handling of sinfo.h, einfo.h, nmake.ads,
treeprs.ads.
2003-10-16 Mark Mitchell <mark@codesourcery.com>
* gennews (files): Add GCC 3.3 files.
2003-08-21 Mark Mitchell <mark@codesourcery.com>
* gcc_build: Fix handling of -t option. Add -x option.
2003-07-31 Matt Kraai <kraai@alumni.cmu.edu>
* texi2pod.pl: Remove extra line.
2003-07-15 Matt Kraai <kraai@alumni.cmu.edu>
* texi2pod.pl: Default @itemize's parameter to @bullet.
2003-07-12 Zack Weinberg <zack@codesourcery.com>
* gcc_update: gcc/acconfig.h no longer exists.
2003-07-11 Matthias Klose <doko@debian.org>
* test_installed: Add options to run objc tests.
In generated site.exp, initialize rootme, CFLAGS, CXXFLAGS.
2003-07-04 Zack Weinberg <zack@codesourcery.com>
* gcc_update: Remove gcc/intl/plural.c from list.
Add new generated files intl/plural.c, intl/configure,
intl/config.h.in.
2003-06-13 Jason Thorpe <thorpej@wasabisystems.com>
* gcc_update (files_and_dependencies): Add
gcc/testsuite/gcc.dg/cpp/_Pragma3.c depends on
gcc/testsuite/gcc.dg/cpp/mi1c.h.
2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
* paranoia.cc: Fix spelling error.
* analyze_brprob, gcc_build, gennews, texi2pod.pl: Change GNU CC
to GCC.
2003-04-04 Mike Stump <mrs@apple.com>
* compare_tests: Fix exit status and be more flexible with spacing.
2003-03-08 Phil Edwards <pme@gcc.gnu.org>
* test_summary: Add -h, print existing comments as help.
2003-03-03 H.J. Lu <hjl@gnu.org>
* gcc_build: Use $GCC_CVS/$CVS instead of cvs.
* gcc_update: Likewise.
2003-01-19 Alexandre Oliva <aoliva@redhat.com>
* test_summary (configflags): Only use the first match. Remove
excess space. Use sub instead of gsub where possible. Use `none'
if no configure flags were given.