-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1964 lines (1151 loc) · 54.5 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
2015-06-23 Release Manager
* GCC 4.8.5 released.
2014-12-19 Release Manager
* GCC 4.8.4 released.
2014-07-07 Richard Biener <[email protected]>
* gennews: Use gcc-3.0/index.html.
2014-05-22 Release Manager
* GCC 4.8.3 released.
2013-10-21 Mike Stump <[email protected]>
* gcc_update (configure): Update to handle svn 1.8.1.
2013-10-16 Release Manager
* GCC 4.8.2 released.
2013-05-31 Release Manager
* GCC 4.8.1 released.
2013-03-22 Release Manager
* GCC 4.8.0 released.
2013-03-22 Jakub Jelinek <[email protected]>
* gennews (files): Add files for GCC 4.8.
2013-03-06 Tobias Burnus <[email protected]>
* make-obstacks-texi.pl: New.
2013-02-27 Rainer Orth <[email protected]>
* make_sunver.pl: Enforce C locale.
2013-02-06 Richard Sandiford <[email protected]>
* update-copyright.py: Add libdecnumber to the default list.
Remove libquadmath and libssp.
2013-02-06 Diego Novillo <[email protected]>
* testsuite-management/validate_failures.py: Fix typo.
2013-02-06 Diego Novillo <[email protected]>
* testsuite-management/validate_failures.py: Update
Copyright years.
Request contributions not to use Python features newer
than 2.4.
(GetBuildData): If this is not a build directory,
emit an error only if --results or --manifest are missing.
2013-02-06 Bernhard Reutner-Fischer <[email protected]>
* testsuite-management/validate_failures.py
(IsInterestingResult): Fix performance regression
2013-02-04 Richard Sandiford <[email protected]>
* update-copyright.py: New file.
2013-01-15 David Blaikie <[email protected]>
* dg-extract-results.sh: Handle KPASSes.
* dg-extract-results.sh: Constrain the start-of-log pattern.
* dg-extract-results.sh: Fix order of summary counts.
2012-12-01 Bernhard Reutner-Fischer <[email protected]>
* testsuite-management/validate_failures.py
(IsInterestingResult): Only strip line a second time if we did split.
Rephrase return statement while at it.
(CollectSumFiles): Also ignore .git directory.
2012-12-03 Diego Novillo <[email protected]>
* testsuite-management/validate_failures.py: Fix stale
use of 'options'.
2012-11-30 Doug Evans <[email protected]>
* testsuite-management/validate_failures.py: Add support for @include,
@remove directives in manifest files.
* testsuite-management/validate_failures.py: Add function
GetManifestPath. New global _MANIFEST_SUBDIR.
2012-11-29 Doug Evans <[email protected]>
* testsuite-management/validate_failures.py: Remove pass/fail
indicator from result of GetBuildData.
* testsuite-management/validate_failures.py: Store options in global
variable _OPTIONS.
* testsuite-management/validate_failures.py: Rename variable
manifest_name to manifest_path everywhere.
* testsuite-management/validate_failures.py (CompareBuilds): Pass
options.results to GetSumFiles for clean build.
2012-11-28 Doug Evans <[email protected]>
* testsuite-management/validate_failures.py: Use <target_alias> instead
of <target>. Minor whitespace changes.
* testsuite-management/validate_failures.py: Record ordinal with
TestResult.
2012-11-19 Mike Stump <[email protected]>
* compare_tests: Add export LC_ALL=C to make sort happier.
2012-11-14 H.J. Lu <[email protected]>
* gcc_update: Update libsanitizer generated files.
2012-11-12 Tobias Burnus <[email protected]>
* gcc_update: Add libquadmath generated files.
2012-11-12 H.J. Lu <[email protected]>
* gcc_update: Add libsanitizer generated files.
2012-11-05 Lawrence Crowl <[email protected]>
* compare_two_ftime_report_sets: New.
2012-11-02 Diego Novillo <[email protected]>
* testsuite-management/validate_failures.py: Add option
--clean_build to compare test results against another
build.
2012-10-31 Diego Novillo <[email protected]>
* testsuite-management/validate_failures.py: Fix parsing
of summary lines.
2012-10-29 Diego Novillo <[email protected]>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: Update.
2012-10-06 Diego Novillo <[email protected]>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: Update.
2012-10-02 Christophe Lyon <[email protected]>
* check_GNU_style.sh: Remove temporay file upon exit.
2012-09-26 Joern Rennecke <[email protected]>
* contrib-list.mk (LIST): Remove arm-freebsd6, arm-linux,
arm-ecos-elf, arm-rtems, arm-elf and arm-wince-pe.
Use --enable-obsolete for picochip-elf.
2012-09-10 Diego Novillo <[email protected]>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: Update.
2012-09-04 Eric Botcazou <[email protected]>
* make_sunver.pl: Add missing newline at the end of extern "C++" block.
2012-08-24 Diego Novillo <[email protected]>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: Update.
2012-08-14 Diego Novillo <[email protected]>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: New.
2012-08-13 Diego Novillo <[email protected]>
* testsuite-management/validate_failures.py (ExpirationDate): Tidy
comment.
2012-08-13 Diego Novillo <[email protected]>
* testsuite-management/validate_failures.py (ParseSummary): Fix
comment.
2012-08-13 Diego Novillo <[email protected]>
* 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 <[email protected]>
* testsuite-management/validate_failures.py: Do not use
'with ... as ...' constructs.
2012-07-19 Diego Novillo <[email protected]>
* 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 <[email protected]>
* testsuite-management/validate_failures.py: Fix
/usr/bin/python invocation.
2012-06-19 Steven Bosscher <[email protected]>
* 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 <[email protected]>
* mklog: Prevent printing three spaces after the date.
2012-06-04 Diego Novillo <[email protected]>
* 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 <[email protected]>
Cary Coutant <[email protected]>
* mklog: New.
2012-05-25 H.J. Lu <[email protected]>
PR bootstrap/53472
* contrib/compare-debug (remove_comment): New function.
Remove any .comment sections if the first cmp failed.
2012-05-09 David Edelsohn <[email protected]>
* gcc_update: Use $GCC_SVN to retrieve branch and revision.
2012-05-01 Richard Henderson <[email protected]>
* gcc_update: Add libatomic generated files.
2012-04-23 Manuel López-Ibáñez <[email protected]>
* compare_tests: Append '/' to make 'find' traverse
symlinked directories.
2012-04-16 Rainer Orth <[email protected]>
* testsuite-management/validate_failures.py (GetBuildData): Use
target_alias.
2012-04-06 Doug Evans <[email protected]>
* dg-extract-results.sh: Handle KFAILs.
2012-03-14 Rainer Orth <[email protected]>
* config-list.mk (LIST): Remove mips-sgi-irix6.5.
2012-03-13 Joseph Myers <[email protected]>
* gennews (files): Add files for GCC 4.7.
2012-03-12 Rainer Orth <[email protected]>
* config-list.mk (LIST): Remove mips-openbsd.
2012-03-12 Rainer Orth <[email protected]>
* config-list.mk (LIST): Remove alpha-dec-osf5.1.
2012-03-02 Diego Novillo <[email protected]>
* 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 <[email protected]>
PR libstdc++/52188
* make_sunver.pl: Remove #ifdef handling.
2012-02-17 Doug Kwan <[email protected]>
* contrib/testsuite-management/validate_failures.py
(GetMakefileValue): Check for cross compilers.
2012-02-15 Quentin Neill <[email protected]>
* compare_tests: Fix trailing paths in dir arguments.
Handle sum1/sum2 temp files with others.
2012-02-14 Walter Lee <[email protected]>
* 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 <[email protected]>
* compare_tests (exit_status): Fix.
2012-02-10 Diego Novillo <[email protected]>
* repro_fail: Add --debug and --debug-tui flags.
2012-02-02 Sumanth G <[email protected]>
Jayant R Sonar <[email protected]>
* config-list.mk (LIST): Add cr16-elf.
2012-01-02 Georg-Johann Lay <[email protected]>
PR target/51345
* gcc_update (files_and_dependencies): Add
gcc/config/avr/t-multilib, gcc/config/avr/multilib.h.
2011-11-29 DJ Delorie <[email protected]>
* config-list.mk (LIST): Add rl78-elf.
2011-11-21 Rainer Orth <[email protected]>
* make_sunver.pl: Convert '?' in glob patterns to '.'.
2011-11-07 Richard Henderson <[email protected]>
Merged from transactional-memory.
* gcc_update: Add libitm to touch data.
2011-11-07 Quentin Neill <[email protected]>
* compare_tests: Add ability to compare all .sum
files from two build directories.
2011-11-05 Joern Rennecke <[email protected]>
* contrib-list.mk: Add Epiphany configurations.
2011-09-13 Diego Novillo <[email protected]>
* testsuite-management: New.
* testsuite-management/validate_failures.py: New.
2011-08-25 Rainer Orth <[email protected]>
* gcc_update: Determine svn branch from hg convert_revision.
2011-07-18 Rainer Orth <[email protected]>
* 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 <[email protected]>
* gcc_update: Add C6X generated files.
* contrib/config-list.mk: Add c6x-elf and c6x-uclinux.
2011-07-01 Rainer Orth <[email protected]>
* config-list.mk (LIST): Append OPT-enable-obsolete to
alpha-dec-osf5.1, mips-sgi-irix6.5.
2011-06-24 Diego Novillo <[email protected]>
* repro_fail: New.
2011-06-21 Joseph Myers <[email protected]>
* gcc_update (gcc/config/avr/avr-tables.opt): New dependencies.
2011-05-19 Joseph Myers <[email protected]>
* gcc_update (gcc/config/arm/arm-tables.opt): Also depend on
gcc/config/arm/arm-fpus.def.
2011-05-10 Joseph Myers <[email protected]>
* gcc_update (gcc/config/rs6000/rs6000-tables.opt): New
dependencies.
2011-05-09 Joseph Myers <[email protected]>
* gcc_update (gcc/config/mips/mips-tables.opt): New dependencies.
2010-05-05 Joern Rennecke <[email protected]>
* config-list.mk: New file.
2011-05-02 Joseph Myers <[email protected]>
* gcc_update (gcc/config/m68k/m68k-tables.opt): New dependencies.
2011-04-25 Jan Kratochvil <[email protected]>
* paranoia.cc (ENUM_BITFIELD): Remove.
2011-04-08 Joseph Myers <[email protected]>
* gcc_update (gcc/config/arm/arm-tables.opt): New dependencies.
2011-03-22 Joseph Myers <[email protected]>
* compare-all-tests (all_targets): Remove crx and m68hc11.
2011-03-21 Rainer Orth <[email protected]>
PR bootstrap/48135
* make_sunver.pl: Don't use File::Glob.
2011-03-05 Joseph Myers <[email protected]>
* gennews (files): Add files for GCC 4.6.
2011-01-26 Dave Korn <[email protected]>
* 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 <[email protected]>
* make_sunver.pl: Use elfdump -s to extract symbols if possible,
readelf -s otherwise.
2010-11-08 Eric Botcazou <[email protected]>
* make_sunver.pl: Ignore entries without symbol name first. Then do
not ignore symbols marked as 'R'.
2010-10-18 Andi Kleen <[email protected]>
* gccbug.el: Remove.
2010-10-12 Rainer Orth <[email protected]>
* gcc_update: Run $GCC_HG pull and update separately.
Check parents for SVN revision.
2010-10-11 Ralf Wildenhues <[email protected]>
* test_recheck: New script.
2010-08-22 Ralf Wildenhues <[email protected]>
* 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 <[email protected]>
* check_GNU_style.sh: Do not print warning messages when there are
no occurences.
2010-09-13 Rainer Orth <[email protected]>
* gcc_update: Handle hg, too.
2010-07-08 Eric Botcazou <[email protected]>
* make_sunver.pl: Remove extra whitespace in regexp.
2010-07-02 Sebastian Pop <[email protected]>
* check_GNU_style.sh: New.
2010-07-02 Rainer Orth <[email protected]>
* make_sunver.pl: New file.
2010-07-02 Iain Sandoe <[email protected]>
* 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 <[email protected]>
* compare-debug: Drop LTO sections.
2010-06-15 Bernhard Reutner-Fischer <[email protected]>
* gcc_update: Support updating a git clone.
2010-06-04 Rainer Orth <[email protected]>
* test_summary: Don't use diff -u.
Adapt egrep regex.
2010-06-02 Andrew Haley <[email protected]>
* download_prerequisites: New script.
2010-05-25 Rainer Orth <[email protected]>
* dg-extract-results.sh: Redirect grep output to /dev/null instead
of grep -q.
2010-04-22 Basile Starynkevitch <[email protected]>
* gcc_update: Sets the locale to C.
2010-04-06 Joseph Myers <[email protected]>
* gennews (files): Add files for GCC 4.5.
2010-03-22 Jan Kratochvil <[email protected]>
Fix *.log tests output containing "===".
* dg-extract-results.sh (/\===/): Rename to ...
(/^\t\t=== .* ===$/): ... this pattern.
2010-03-02 Rainer Orth <[email protected]>
* dg-extract-results.sh: Fix result order to match sequential case.
2010-01-16 Ralf Wildenhues <[email protected]>
* check_warning_flags.sh: Use \012 instead of \n with tr.
2010-01-05 Rainer Orth <[email protected]>
* dg-extract-results.sh: Don't use tail -n.
2009-10-03 H.J. Lu <[email protected]>
Richard Guenther <[email protected]>
PR lto/39216
* gcc_update: Adjust file timestamps for lto-plugin.
2009-09-10 Iain Sandoe <[email protected]>
PR bootstrap/41245
* compare-debug: Handle stripping of dwarf debug sections from darwin
mach-o objects.
2009-09-04 Alexandre Oliva <[email protected]>
* compare-debug: Grep for blank before dash to avoid grep -e.
2009-09-01 Alexandre Oliva <[email protected]>
* compare-debug: Look for .gkd files and compare them.
2009-08-27 Ralf Wildenhues <[email protected]>
PR testsuite/41166
* test_summary: Invoke config.status, rather than trying to
parse it. Adjust awk script.
2009-08-18 Alexandre Oliva <[email protected]>
* compare-debug: Drop .eh_frame relocations too.
2009-08-18 H.J. Lu <[email protected]>
PR testsuite/40704
* test_summary: Filter out "\r".
2009-06-02 Alexandre Oliva <[email protected]>
* compare-debug: Don't fail just because of .eh_frame differences.
2009-04-27 Jakub Jelinek <[email protected]>
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 <[email protected]>
* test_summary: Only include LAST_UPDATED if it exists.
Complete copyright years.
2009-04-16 Paolo Bonzini <[email protected]>
* compare-all-tests: New.
2009-04-14 Jakub Jelinek <[email protected]>
* gennews (files): Reference GCC 4.4 web pages.
2009-04-09 Jakub Jelinek <[email protected]>
* 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 <[email protected]>
* check_warning_flags.sh: Update flag exceptions.
2008-11-18 Ben Elliston <[email protected]>
* 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 <[email protected]>
Jakub Jelinek <[email protected]>
* dg-extract-results.sh: New file.
2008-07-14 Ralf Wildenhues <[email protected]>
* check_makefile_deps.sh: New file.
2008-05-08 Sebastian Pop <[email protected]>
* patch_tester.sh (report): Do not print "Checker: ".
2008-04-23 Sebastian Pop <[email protected]>
* patch_tester.sh (report): Do not print the time.
2008-04-01 Joseph Myers <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* gennews (files): Reference GCC 4.3 web pages.
2008-02-15 Ralf Wildenhues <[email protected]>
* check_warning_flags.sh: New file.
2008-01-25 Joseph Myers <[email protected]>
* paranoia.cc (main): Remove handling of c4x_single and
c4x_extended formats.
2007-12-26 Sebastian Pop <[email protected]>
* 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 <[email protected]>
* patch_tester.sh: Changed to GPLv3.
2007-12-15 Sebastian Pop <[email protected]>
* patch_tester.sh: Don't save the script anymore.
2007-12-15 Sebastian Pop <[email protected]>
* patch_tester.sh: New.
* prepare_patch.sh: New.
2007-11-26 Alexandre Oliva <[email protected]>
* compare-debug: Introduce -p flag to preserve .stripped files.
2007-10-08 Manuel Lopez-Ibanez <[email protected]>
* texi2pod.pl: Handle @asis.
(postprocess): Move @gccoptlist{} after all formatting commands.
2007-10-01 Alexandre Oliva <[email protected]>
* compare-debug: Avoid spurious errors when .stripped files
exist.
2007-09-22 Hans-Peter Nilsson <[email protected]>
* warn_summary (srcdirFilter): Add fixincludes, sim,
newlib and mpfr.
2007-08-23 H.J. Lu <[email protected]>
* gcc_update: Handle different URL paths and tags.
2007-08-16 Alexandre Oliva <[email protected]>
* compare-debug: New.
2007-08-16 H.J. Lu <[email protected]>
Andreas Schwab <[email protected]>
* gcc_update: Use "svn info" for revision number. Create
gcc/REVISION with branch name and revision number.
2007-08-10 Diego Novillo <[email protected]>
* gcc.doxy: Rename from tree-ssa.doxy.
2007-08-10 Diego Novillo <[email protected]>
* tree-ssa.doxy: Update for doxygen 1.5.
Include all the files in the middle and back ends.
2007-06-30 Hans-Peter Nilsson <[email protected]>
* gcc_update (files_and_dependencies): Handle
gcc/testsuite/gcc.dg/cpp/direct2s.c.
2007-05-13 Mark Mitchell <[email protected]>
* gennews (files): Reference GCC 4.2 web pages.
2007-04-04 Zack Weinberg <[email protected]>
* texi2pod.pl: Correct handling of @itemize with no argument.
2007-03-17 Hans-Peter Nilsson <[email protected]>
* uninclude: New utility, from Alexandre Oliva.
2007-02-26 Dominique Dhumieres <[email protected]>
* test_installed: Adjust to the move from g77 to gfortran.
2007-02-16 Matthias Klose <[email protected]>
* texi2pod.pl: Handle @subsubsection, ignore @anchor.
2007-02-10 Hans-Peter Nilsson <[email protected]>
* test_summary (configflags): Adjust for changes in the
config.status format due to update to autoconf 2.59.
2007-02-09 Daniel Jacobowitz <[email protected]>
* gcc_update: Update for configure.in -> configure.ac.
2007-02-06 Richard Sandiford <[email protected]>
* texi2pod.pl: Handle @multitable.
2007-01-15 Tom Tromey <[email protected]>
* download_ecj: New file.
2006-09-27 Matthew Sachs <[email protected]>
* compareSumTests3: POD syntax fix.
2006-09-27 Matthew Sachs <[email protected]>
* dglib.pm: Initial commit.
* compareSumTests3: Initial commit.
2006-09-18 Bernhard Fischer <[email protected]>
* dg-cmp-results.sh (compare-$$.awk): Print name[old]
and not non-existing nm[old].
2006-07-06 Paul Eggert <[email protected]>
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 <[email protected]>
* dg-cmp-results.sh: New script for comparing DejaGNU logs.
2006-06-02 Richard Earnshaw <[email protected]>
Mike Stump <[email protected]>
* compare_tests: Handle multilibs better.
2006-05-31 Daniel Jacobowitz <[email protected]>
* texi2pod.pl: Correct handling of absolute @include.
2006-05-02 Daniel Jacobowitz <[email protected]>
* texi2pod.pl: Handle -I.
2006-02-28 Mark Mitchell <[email protected]>
* gennews (files): Update for GCC 4.1.
2006-01-24 Diego Novillo <[email protected]>
* gcc_update (files_and_dependencies): Handle
libgomp/testsuite/Makefile.in.
2006-01-18 Richard Henderson <[email protected]>
Diego Novillo <[email protected]>
* gcc_update (files_and_dependencies): Add libgomp files.
2005-12-06 Ben Elliston <[email protected]>
* newcvsroot: Remove.
2005-11-03 Steven Bosscher <[email protected]>
* gcc_build: Fix my previous checking.
2005-11-01 Joseph S. Myers <[email protected]>
* gcc_update: Include revision number in LAST_UPDATED.
2005-10-30 Steven Bosscher <[email protected]>
* 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 <[email protected]>
* gcc_update: When svn update is called and
--silent is used, pass -q.
2005-10-28 Andrew Pinski <[email protected]>
* gcc_update: Remove the -q from svn invocation.
2005-10-28 Andrew Pinski <[email protected]>
* gcc_build: Remove -d from the call to gcc_update.
2005-10-28 Daniel Berlin <[email protected]>
Ben Elliston <[email protected]>
* gcc_update: Update for svn.
* newcvsroot: Ditto.
* gcc_build: Ditto.
2005-10-21 Mark Mitchell <[email protected]>
* texi2pod.pl: Substitue for @value even when part of @include.
2005-10-21 Bob Wilson <[email protected]>
* texi2pod.pl: Convert two single quotes or two backquotes to
double quotes.
2005-08-23 Ben Elliston <[email protected]>
* gcc_update: Update dependencies for libjava/aclocal.m4.
2005-08-14 Kelley Cook <[email protected]>
* All files: Update with new FSF address.
2005-07-14 Ben Elliston <[email protected]>
* filter_params.pl: Typo fix.
* filter_knr2ansi.pl: Likewise.
2005-06-05 Gerald Pfeifer <[email protected]>
* gennews (files): Update for egcs-1.0 release pages consolidation.
2005-04-17 Joseph S. Myers <[email protected]>
* gennews (files): Update for GCC 4.0.
2005-03-18 Alexandre Oliva <[email protected]>
* gcc_update (silent): Unset instead of initializing to null.
2005-03-18 Andreas Schwab <[email protected]>
* gcc_update (apply_patch): Properly quote $1.
2005-03-18 Zack Weinberg <[email protected]>
* gcc_update: Add --silent option.
2005-03-08 Kaveh R. Ghazi <[email protected]>
* warn_summary (keywordFilter): Update sed pattern for new quoting
style in warnings.
2005-03-07 Kaveh R. Ghazi <[email protected]>
* warn_summary: Add -fortran subdir flag.
(subdirectoryFilter): Fix missing ada subdir.
2004-11-20 Hans-Peter Nilsson <[email protected]>
* 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 <[email protected]>
* gcc_update (touch_files): Explicitly pass --no-print-directory.
2004-11-04 Andrew Pinski <[email protected]>
* gcc_update (boehm-gc/aclocal.m4): Remove boehm-gc/acinclude.m4.
2004-08-04 Paolo Bonzini <[email protected]>
* gcc_update: Add fixincludes.
2004-08-26 Matthias Klose <[email protected]>
* texi2pod.pl: keep references of the form @ref{...}, print them bold.
2004-08-26 Matthias Klose <[email protected]>
* test_summary: Include baseline used for libstdc++-v3 abi check
in test summary.
2004-08-25 Ben Elliston <[email protected]>
* gcc_update (libcpp/Makefile.in): Remove libcpp/Makefile.am.
2004-08-20 Andreas Tobler <[email protected]>
* gcc_update (self): libjava/configure.in -> configure.ac. Automake
update done.
2004-08-04 Paolo Bonzini <[email protected]>
* gcc_update: libjava/configure.ac -> configure.in. Automake
1.4 does not handle configure.ac properly.
2004-08-04 Andreas Schwab <[email protected]>
* gcc_update: libjava/configure.in -> configure.ac.
2004-08-03 Richard Earnshaw <[email protected]>
* gcc_update: gcc/config/arm/arm-tune.md -> arm-cores.def gentune.sh.
2004-07-16 Jeff Law <[email protected]>
* analyze_brprob: Fix comments. More consistent output format.
2004-06-17 Diego Novillo <[email protected]>
* tree-ssa.doxy: Update for doxygen 1.3.5.