forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2697 lines (1572 loc) · 74.8 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
2017-08-02 Yury Gribov <[email protected]>
* mklog: Added new implementation.
2017-08-02 Yury Gribov <[email protected]>
* mklog: Rename to ...
* mklog.pl: this.
2017-07-17 Yury Gribov <[email protected]>
* mklog: Fix extraction of changed file name.
2017-07-17 Georg-Johann Lay <[email protected]>
* gcc_update (files_and_dependencies)
[gcc/config/avr/avr-tables.opt]: Remove dead entry.
2017-06-28 Martin Liska <[email protected]>
* gcc.doxy: Add default location for filters and output folder.
* filter_gcc_for_doxygen_new: Rename to filter_gcc_for_doxygen.
* filter_params.pl: Remove.
2017-06-21 Thomas Preud'homme <[email protected]>
* dg-cmp-results.sh: Restore filtering on target variant.
2017-06-20 Thomas Preud'homme <[email protected]>
* dg-cmp-results.sh: Keep test result lines rather than throwing
header and summary to support sum files with multiple tools.
2017-05-31 Martin Liska <[email protected]>
* filter_params.py:
Transform ENUM_BITFIELD and comments starting with '/**'
2017-05-31 David Malcolm <[email protected]>
Martin Liska <[email protected]>
* filter_params.py: New, porting the perl script to python,
adding a test suite.
* filter_gcc_for_doxygen_new: New file.
2017-05-30 Martin Liska <[email protected]>
* analyze_brprob.py: Add new argument to parse and modify
predict.def file.
* analyze_brprob_spec.py: Likewise.
2017-05-29 Tom de Vries <[email protected]>
* check_GNU_style_lib.py (TrailingWhitespaceCheck.check): Assert no
trailing eol.
(TrailingWhitespaceTest): New unit test.
(check_GNU_style_file): Remove eol before checking.
2017-05-29 Tom de Vries <[email protected]>
* check_GNU_style_lib.py (check_GNU_style_file): Treat file argument as
file handle. Add and handle file_encoding argument.
* check_GNU_style.py (main): Handle '-' file argument. Call
check_GNU_style_file with file handle as argument.
2017-05-29 Tom de Vries <[email protected]>
* check_GNU_style_lib.py: Use import_pip3 to import pip3 packages.
(import_pip3): New function.
2017-05-24 Tom de Vries <[email protected]>
* check_GNU_style_lib.py: New file, factored out of ...
* check_GNU_style.py: ... here. Call main unconditionally.
2017-05-19 Martin Liska <[email protected]>
* check_GNU_style.py: New file.
2007-05-03 Jeff Law <[email protected]>
* config-list.mk (am33_2.0-linux): Remove from list of targets
to build.
2017-05-02 Jakub Jelinek <[email protected]>
* gennews (files): Add files for GCC 7.
2017-04-26 Tom de Vries <[email protected]>
* gen_autofdo_event.py: Fix comment.
2017-04-11 Damian Rouson <[email protected]>
* download_prerequisites (md5_check): New function emulates Linux
'md5 --check' on macOS. Modified script for macOS compatibility.
2017-02-06 Palmer Dabbelt <[email protected]>
* config-list.mki (LIST): Add riscv32-unknown-linux-gun and
riscv64-unknown-linux-gnu.
2017-01-31 Bernhard Reutner-Fischer <[email protected]>
* update-copyright.py (Copyright.process_file): Retain original
file mode.
2017-01-29 Gerald Pfeifer <[email protected]>
* update-copyright.py: Fix the name of this script in examples.
2017-01-26 Jakub Jelinek <[email protected]>
* update-copyright.py: Add libhsail-rt to self.default_dirs
and call self.add_dir on it. Add Intel Corporation to external
authors.
2017-01-25 Thomas Schwinge <[email protected]>
* gcc_update (files_and_dependencies): Care for "libhsail-rt".
2017-01-23 Gerald Pfeifer <[email protected]>
* patch_tester.sh (TESTLOGS): Remove
$TARGET/libjava/testsuite/libjava.sum.
2017-01-22 Gerald Pfeifer <[email protected]>
* warn_summary: Remove the -java option.
2017-01-20 Gerald Pfeifer <[email protected]>
* update-copyright.py (LibJavaFilter): Remove.
2017-01-17 Gerald Pfeifer <[email protected]>
* gcc_update: Remove entries related to GCJ and libgcj.
Complete copyright years and adjust my e-mail address.
2017-01-11 Richard Earnshaw <[email protected]>
* gcc_update: Adjust touch list for ARM.
2017-01-08 Gerald Pfeifer <[email protected]>
* download_ecj: Remove.
2017-01-05 Martin Liska <[email protected]>
* vimrc: Update indentation definition.
2017-01-04 Jakub Jelinek <[email protected]>
* update-copyright.py (GCCCmdLine): Add include, libcc1, libiberty,
libssp, libvtv and lto-plugin to default_dirs.
2017-01-01 Jakub Jelinek <[email protected]>
* update-copyright.py (TestsuiteFilter): Skip params/README.
(GCCCmdLine): Remove libjava and libjava/testsuite add_dir.
2016-12-14 Martin Liska <[email protected]>
* analyze_brprob.py: Add new column to output and new sorting
option. Fix coding style to not exceed 80 characters.
* analyze_brprob_spec.py: Add new sorting
option. Fix coding style to not exceed 80 characters.
2016-10-24 Moritz Klammler <[email protected]>
PR other/61439
* download_prerequisites: Conditionally verify checksums of
downloaded pacakges. Add help text.
* prerequisites.md5: New file.
* prerequisites.sha512: New file.
2016-10-24 Kyrylo Tkachov <[email protected]>
* check_GNU_style.sh (remove_testsuite): New function.
Use it to remove testsuite from the diff.
2016-09-23 Rainer Orth <[email protected]>
* dg-extract-results.sh: Revert bogus change.
2016-09-20 Christophe Lyon <[email protected]>
* dg-extract-results.py: Report DejaGnu error in the final
summary.
* dg-extract-results.sh: Likewise.
2016-09-20 Christophe Lyon <[email protected]>
* compare_tests: Take ERROR messages into account when
comparing.
2016-08-17 Martin Liska <[email protected]>
* mark_spam.py: Mark as spam all comments done by a creator.
2016-08-15 Martin Liska <[email protected]>
* mark_spam.py: Add error handling and reset
another properties of attachments and bugs.
2016-08-11 Martin Liska <[email protected]>
* mark_spam.py: Mark attachments as obsolete and rename them.
2016-08-03 Eric Gallager <[email protected]>
* download_prerequisites: Explicitly remove existing symlinks
before trying to create new ones.
2016-07-28 Martin Liska <[email protected]>
* mark_spam.py: New file.
2016-07-21 Martin Liska <[email protected]>
* analyze_brprob.py: If there's no loop, do not calculate
average number of loop iterations.
2016-06-24 Martin Liska <[email protected]>
* analyze_brprob.py: Parse and display average number
of loop iterations.
2016-06-23 Andi Kleen <[email protected]>
* gen_autofdo_event.py: New file to regenerate
gcc-auto-profile.
2016-06-21 Trevor Saunders <[email protected]>
* config-list.mk: Stop testing mep-elf.
2016-06-21 Trevor Saunders <[email protected]>
* config-list.mk: Stop testing avr-rtems.
2016-06-21 Trevor Saunders <[email protected]>
* config-list.mk: Stop testing m32r-rtems.
2016-06-21 Trevor Saunders <[email protected]>
* config-list.mk: Remove h8300-rtems support.
2016-06-21 Trevor Saunders <[email protected]>
* config-list.mk: stop testing knetbsd.
2016-06-21 Trevor Saunders <[email protected]>
* config-list.mk: Stop testing openbsd3.0.
2016-06-21 Trevor Saunders <[email protected]>
* config-list.mk: Remove interix target.
2016-06-21 David Edelsohn <[email protected]>
* config-list.mk: Remove rs6000-ibm-aix4.3, rs6000-ibm-aix5.1,
rs6000-ibm-aix5.2.
Rename rs6000-ibm-aix6.0 as rs6000-ibm-aix6.1.
Add rs6000-ibm-aix7.1.
2016-06-17 Martin Liska <[email protected]>
* analyze_brprob.py: Fix columns of script output.
2016-06-13 Richard Biener <[email protected]>
* download_prerequisites (ISL): Bump version to 0.16.1
2016-06-10 Alan Hayward <[email protected]>
* check_GNU_style.sh: Fix paste args for BSD
2016-06-09 David Malcolm <[email protected]>
* config-list.mk (LIST): Add OPT-enable-obsolete to avr-rtems,
h8300-rtems, m32r-rtems, mep-elf.
2016-06-09 David Malcolm <[email protected]>
* config-list.mk (GCC_SRC_DIR): New variable.
(make-log-dir): Use GCC_SRC_DIR.
($(LIST)): Likewise.
2016-06-09 Martin Liska <[email protected]>
* analyze_brprob_spec.py: New file.
2016-06-09 Martin Liska <[email protected]>
* analyze_brprob.py: Add new argument --sorting.
2016-06-09 Martin Liska <[email protected]>
* analyze_brprob.py: Cover new dump output format.
2016-06-07 Rainer Orth <[email protected]>
* update-copyright.py (LibMudflapFilter): Remove.
(GCCCmdLine.__init__): Add gotools, libcc1.
Remove libmudflap.
List unhandled intl, libcilkrts, libgo, liboffloadmic,
maintainer-scripts.
2016-05-02 Bernd Edlinger <[email protected]>
* download_prerequisites: Adjust gmp/mpfr/mpc versions.
2016-04-30 Oleg Endo <[email protected]>
* compare-all-tests: Remove SH5 support.
* config-list.mk: Likewise.
2016-04-28 Martin Liska <[email protected]>
* analyze_brprob: Remove.
* analyze_brprob.py: New file.
2016-04-27 Jakub Jelinek <[email protected]>
* gennews (files): Add files for GCC 6.
2016-04-17 Jan Hubicka <[email protected]>
* analyze_brprob: Update comment.
2016-04-13 Martin Sebor <[email protected]>
* check_GNU_style.sh: Avoid false posivies in trailing operator
checks.
2016-03-07 Martin Sebor <[email protected]>
* check_GNU_style.sh (color): New global variable.
Add checks for trailing operators and spaces before left brackets.
Tightened up a check for a trailing left curly brace.
(g, ag, vg): Use color.
(col): Don't complain about excessively long lines with DejaGnu
directives.
2016-03-06 Trevor Saunders <[email protected]>
* mklog: Look for the ChangeLog file in $cwd.
2016-02-26 Joel Sherrill <[email protected]>
* config-list.mk: Add aarch64-rtems and x86_64-rtems
2016-01-19 Jonathan Wakely <[email protected]>
* uninclude: Fix third argument to gensub.
2016-01-04 Jakub Jelinek <[email protected]>
* update-copyright.py (GCCCopyright): Add NVIDIA Corporation
as external author.
2015-12-17 Jan-Benedict Glaw <[email protected]>
* config-list.mk (LIST): Add --enable-obsolete to recently obsoleted
targets x86_64-knetbsd-gnu, i686-knetbsd-gnu and i686-openbsd3.0 .
2015-12-06 Tobias Burnus <[email protected]>
* download_prerequisites: Download ISL 0.15 instead of 0.14.
2015-11-20 Martin Liska <[email protected]>
* clang-format: Split content of a list to multiple
lines.
2015-11-19 Martin Liska <[email protected]>
* clang-format: Enhance list of FOR_EACH macros.
2015-11-19 Martin Liska <[email protected]>
* clang-format: New file.
2015-11-11 Andrew MacLeod <[email protected]>
* header-tools: New. Directory containing a set of tools for
manipulating header files.
2015-10-30 Nathan Sidwell <[email protected]>
* config-list.mk (nvptx-none): Add it.
2015-09-11 Markus Trippelsdorf <[email protected]>
* download_prerequisites: Make sure that script is run from
top level source directory.
2015-08-27 Rainer Orth <[email protected]>
* update-copyright.py (GCCCmdLine): Add libvtv.
2015-08-04 Uros Bizjak <[email protected]>
* texi2pod.pl: Escape braces in regexp involving @strong{...}.
2015-07-15 Tom de Vries <[email protected]>
* check_GNU_style.sh (cat_with_prefix): Fix quoting.
2015-06-02 Steve Ellcey <[email protected]>
* test_installed (--target=): New option.
2015-05-30 Mikhail Maltsev <[email protected]>
* gimple.vim: New file.
2015-05-18 Tom de Vries <[email protected]>
* check_GNU_style.sh: Add temp files tmp2 and tmp3.
(cat_with_prefix): New function, using global variable prefix.
(col): Make prefix a global variable. Rewrite to process file at a time
rather than line at a time. Print part longer than 80 chars in red.
2015-05-18 Tom de Vries <[email protected]>
* check_GNU_style.sh (g, ag, vg): Don't cat empty file.
2015-05-18 Tom de Vries <[email protected]>
* check_GNU_style.sh (g, ag, vg, col): Declare local vars with local.
2015-05-18 Tom de Vries <[email protected]>
* check_GNU_style.sh: Improve readability function calls.
2015-05-16 James Bowman <[email protected]>
* config-list.mk: Add FT32.
2015-05-12 Tom de Vries <[email protected]>
* check_GNU_style.sh (col): Fix tab size.
2015-05-12 Tom de Vries <[email protected]>
* check_GNU_style.sh: Put stdin into a temp file.
2015-05-12 Tom de Vries <[email protected]>
* check_GNU_style.sh: Read either from stdin, or from files.
2015-05-12 Tom de Vries <[email protected]>
* check_GNU_style.sh: Check if files exists.
2015-05-12 Tom de Vries <[email protected]>
* check_GNU_style.sh: Don't use a filename prefix if we're only
processing one patch file.
2015-05-12 Yury Gribov <[email protected]>
* mklog: Ignore preprocessor directives.
2015-04-22 Jakub Jelinek <[email protected]>
* gennews (files): Add files for GCC 5.
2015-03-06 Bernd Edlinger <[email protected]>
* dg-extract-results.sh: Check that the necessary python modules exist.
2015-02-05 Ilya Verbin <[email protected]>
* gcc_update (files_and_dependencies): Add rules for liboffloadmic and
liboffloadmic/plugin.
2015-01-15 Richard Sandiford <[email protected]>
* update-copyright.py (Copyright.__init__): Add a regexp for
"copyright = u'".
(Copyright.update_copyright): Don't add a space before the year
in that case.
2015-01-15 Thomas Schwinge <[email protected]>
* gcc_update (files_and_dependencies): Update rules for new
libgomp/plugin/Makefrag.am and libgomp/plugin/configfrag.ac files.
2015-01-12 Yury Gribov <[email protected]>
* check_GNU_style.sh: Support patches coming from stdin.
Check that spaces are converted to tabs.
Make double-space-after-dot check more precice.
2015-01-06 Eric Botcazou <[email protected]>
* config-list.mk (LIST): Add visium-elf.
2015-01-05 Jan-Benedict Glaw <[email protected]>
* config-list.mk: Use shortest match for OPT to find the actual
target name.
2014-12-17 Sergio Durigan Junior <[email protected]>
* dg-extract-results.sh: Use --text with grep to avoid issues with
binary files. Fall back to cat -v, if that doesn't work.
2014-12-12 Chung-Ju Wu <[email protected]>
* download_prerequisites: Modify the comment for GRAPHITE_LOOP_OPT.
2014-12-09 Laurynas Biveinis <[email protected]>
Yury Gribov <[email protected]>
* vimrc: New file.
2014-12-04 Thomas Preud'homme <[email protected]>
* check_GNU_style.sh: Warn for incorrect number of spaces in function
call only if 0 or 2+ spaces found.
2014-12-02 Tobias Burnus <[email protected]>
* download_prerequisites: Download ISL 0.14 instead of 0.12.2.
2014-11-25 Tom de Vries <[email protected]>
Peter Bergner <[email protected]>
* mklog: Handle .mklog. Use git setting independent of presence .git
directory.
2014-11-14 Tom de Vries <[email protected]>
* mklog: Move reading of .diff file up and add comment. Copy diff_lines
to orig_diff_lines. Use orig_diff_lines when appending patch.
2014-11-11 David Malcolm <[email protected]>
* ChangeLog.jit: New.
* jit-coverage-report.py: New file: a script to print crude
code-coverage information for the libgccjit API.
2014-11-11 Marat Zakirov <[email protected]>
* mklog: Symbol '}' stops search for changes.
2014-11-11 Tobias Burnus <[email protected]>
* download_prerequisites: Stop downloading CLooG.
2014-11-07 Marat Zakirov <[email protected]>
* mklog: Always doubt in functions.
Add EOF protection.
2014-10-31 Jan-Benedict Glaw <[email protected]>
* config-list.mk: Don't build Go for certain targets.
2014-10-04 Trevor Saunders <[email protected]>
* compare-all-tests: Don't test score-*.
* config-list.mk: Likewise.
2014-10-02 Segher Boessenkool <[email protected]>
* dg-extract-results.py (output_variation): Always sort if do_sum.
2014-09-22 Tom de Vries <[email protected]>
* mklog: Add --inline option.
2014-09-19 Segher Boessenkool <[email protected]>
* dg-extract-results.py (Prog.result_re): Include options in test name.
2014-09-19 Olivier Hainque <[email protected]>
* config-list.mk (LIST): Add powerpc-wrs-vxworksmils.
2014-09-18 Joel Sherrill <[email protected]>
* config-list.mk (LIST): Add v850-rtems.
2014-09-18 Sebastian Huber <[email protected]>
* config-list.mk (LIST): Add arm-rtems.
Add nios2-rtems. Remove extra option from powerpc-rtems.
2014-09-08 Trevor Saunders <[email protected]>
* compare-all-tests: Don't test picochip.
* config-list.mk: Likewise.
2014-08-11 Mingjie Xing <[email protected]>
* texi2pod.pl (postprocess): Move command process for '@sc' to the
front of '@dfn'. Add a new command process for '@t{...}', just print
the content.
2014-07-21 Trevor Saunders <[email protected]>
Yury Gribov <[email protected]>
* mklog: Run mklog as a filter.
2014-07-21 Trevor Saunders <[email protected]>
* mklog: Read name and email from git config when available.
2014-06-28 Richard Biener <[email protected]>
* gennews: Use gcc-3.0/index.html.
2014-06-14 Richard Sandiford <[email protected]>
* dg-extract-results.py: For Python 3, force sys.stdout to handle
surrogate escape sequences.
(safe_open): New function.
(output_segment, main): Use it.
2014-05-25 Richard Sandiford <[email protected]>
* dg-extract-results.py (Named): Remove __cmp__ method.
(output_variation): Use a key to sort variation.harnesses.
2014-05-24 Uros Bizjak <[email protected]>
* texi2pod.pl: Force .pod file to not be a numbered list.
2014-05-20 Richard Sandiford <[email protected]>
* dg-extract-results.py (parse_run): Handle warnings that are printed
before a test harness is run.
2014-05-09 Jan-Benedict Glaw <[email protected]>
* config-list.mk (show): New target.
2014-05-08 Richard Sandiford <[email protected]>
* dg-extract-results.py: New file.
* dg-extract-results.sh: Use it if the environment seems suitable.
2014-04-22 Rainer Orth <[email protected]>
* config-list.mk (LIST): Remove sparc-sun-solaris2.9, i686-solaris2.9.
2013-04-22 Jakub Jelinek <[email protected]>
* gennews (files): Add files for GCC 4.9.
2014-02-24 Walter Lee <[email protected]>
* config-list.mk (LIST): Add tilegxbe-linux-gnu.
2014-02-13 Richard Biener <[email protected]>
* download_prerequisites: Update ISL and CLOOG versions.
2014-01-31 Brooks Moses <[email protected]>
* gcc_update (files_and_dependencies): Add aarch64-tune.md.
2014-01-29 Yury Gribov <[email protected]>
* mklog: Improve support of context diffs.
2014-01-21 Tatiana Udalova <[email protected]>
* mklog: Avoid adding falsely changed functions to ChangeLog.
2013-12-31 Chung-Lin Tang <[email protected]>
* config-list.mk: Add nios2-elf, nios2-linux-gnu. Corrected
ordering of some configs.
2013-12-23 Yury Gribov <[email protected]>
* mklog: Automatically insert comments in trivial cases.
2013-12-19 Yury Gribov <[email protected]>
* mklog: Split generated message in parts.
2013-10-31 Chung-Ju Wu <[email protected]>
* config-list.mk (nds32le-elf, nds32be-elf): Add nds32 target.
2013-10-29 Tobias Burnus <[email protected]>
* gcc_update (files_and_dependencies): Add rules for
libcilkrts.
2013-10-11 Thomas Schwinge <[email protected]>
* gcc_update (files_and_dependencies): Fix rule for
libgomp/testsuite/Makefile.in.
2013-10-01 Joern Rennecke <[email protected]>
* config-list.mk: Add arc configurations.
2013-09-27 Diego Novillo <[email protected]>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: Update.
2013-09-12 DJ Delorie <[email protected]>
* config-list.mk: Add msp430-elf.
2013-08-31 Diego Novillo <[email protected]>
* testsuite-management/x86_64-unknown-linux-gnu.xfail: Update.
2013-08-29 Mike Stump <[email protected]>
* gcc_update (configure): Update to handle svn 1.8.1.
2013-08-03 Caroline Tice <[email protected]>
* gcc_update: Add libvtv files.
2013-06-06 Brooks Moses <[email protected]>
* testsuite-management/validate_failures.py: Fix handling of
summary lines with "|" characters or empty description fields.
2013-05-24 Chung-Ju Wu <[email protected]>
* download_prerequisites: Download isl and cloog conditionally.
2013-05-21 David Malcolm <[email protected]>
* repro_fail: Filter out "-ignore SIGHUP" from the spawn lines.
2013-05-16 Rainer Orth <[email protected]>
* config-list.mk (LIST): Add -enable-obsolete for
sparc-sun-solaris2.9, i686-solaris2.9.
2013-05-13 Mike Stump <[email protected]>
* compare_tests: Limit lines to 2000 characters as comm on Mac OS
X 10.8.3 doesn't like long lines (those 2055 characters or more).
2013-04-22 Sofiane Naci <[email protected]>
* config-list.mk (LIST): Add aarch64-elf and aarch64-linux-gnu.
2013-04-18 Diego Novillo <[email protected]>
* validate_failures.py: Fix typo.
2013-04-18 Diego Novillo <[email protected]>
* validate_failures.py: Loosen check for build directory.
State what failed if we couldn't find the source tree or
the target triplet.
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]>