forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
MAINTAINERS
961 lines (926 loc) · 63.1 KB
/
MAINTAINERS
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
Note
====
This file contains information about people who are permitted to make
changes to various parts of the compiler and associated libraries.
Please do not contact the people in this file directly to report
problems in GCC.
For general information about GCC, please visit:
http://gcc.gnu.org
To report problems in GCC, please visit:
http://gcc.gnu.org/bugs/
If you'd like to CC a maintainer in bugzilla, please add @gcc.gnu.org
to the account name given in the Write After Approval section below.
Please use the email address given in <...> for direct email communication.
Note: when adding someone who has commit access to a more specific section,
please also ensure that there is a corresponding entry in the Write After
Approval list, since that list contains the gcc.gnu.org account name.
Note: please verify that sorting is correct with:
./contrib/check-MAINTAINERS.py MAINTAINERS
Maintainers
===========
Global Reviewers
Richard Biener <[email protected]>
Richard Earnshaw <[email protected]>
Jakub Jelinek <[email protected]>
Richard Kenner <[email protected]>
Jeff Law <[email protected]>
Michael Meissner <[email protected]>
Jason Merrill <[email protected]>
David S. Miller <[email protected]>
Joseph Myers <[email protected]>
Richard Sandiford <[email protected]>
Bernd Schmidt <[email protected]>
Ian Lance Taylor <[email protected]>
Jim Wilson <[email protected]>
Note that while global reviewers can approve changes to any part of
the compiler or associated libraries, they still need approval for
their own patches from other maintainers or reviewers.
Also note that maintainership of any area covers changes to web pages,
docs, and the testsuite related to that.
CPU Port Maintainers (CPU alphabetical order)
aarch64 ldp/stp Alex Coplan <[email protected]>
aarch64 port Richard Earnshaw <[email protected]>
aarch64 port Richard Sandiford <[email protected]>
aarch64 port Marcus Shawcroft <[email protected]>
aarch64 port Kyrylo Tkachov <[email protected]>
alpha port Richard Henderson <[email protected]>
amdgcn port Julian Brown <[email protected]>
amdgcn port Andrew Stubbs <[email protected]>
arc port Claudiu Zissulescu <[email protected]>
arm port Nick Clifton <[email protected]>
arm port Richard Earnshaw <[email protected]>
arm port Ramana Radhakrishnan <[email protected]>
avr port Denis Chertykov <[email protected]>
bfin port Jie Zhang <[email protected]>
bpf port Jose E. Marchesi <[email protected]>
c6x port Bernd Schmidt <[email protected]>
cris port Hans-Peter Nilsson <[email protected]>
c-sky port Xianmiao Qu <[email protected]>
c-sky port Yunhai Shang <[email protected]>
fr30 port Nick Clifton <[email protected]>
frv port Nick Clifton <[email protected]>
frv port Alexandre Oliva <[email protected]>
ft32 port James Bowman <[email protected]>
h8 port Jeff Law <[email protected]>
hppa port Jeff Law <[email protected]>
hppa port John David Anglin <[email protected]>
i386 port Jan Hubicka <[email protected]>
i386 port Uros Bizjak <[email protected]>
i386 vector ISA extns Kirill Yukhin <[email protected]>
i386 vector ISA extns Hongtao Liu <[email protected]>
iq2000 port Nick Clifton <[email protected]>
lm32 port Sebastien Bourdeauducq <[email protected]>
LoongArch port Chenghua Xu <[email protected]>
LoongArch port Lulu Cheng <[email protected]>
m32r port Nick Clifton <[email protected]>
m68k port (?) Jeff Law <[email protected]>
m68k port Andreas Schwab <[email protected]>
m68k-motorola-sysv port Philippe De Muyter <[email protected]>
mcore port Nick Clifton <[email protected]>
microblaze Michael Eager <[email protected]>
mips port YunQiang Su <[email protected]>
mmix port Hans-Peter Nilsson <[email protected]>
mn10300 port Jeff Law <[email protected]>
mn10300 port Alexandre Oliva <[email protected]>
moxie port Anthony Green <[email protected]>
msp430 port Nick Clifton <[email protected]>
nds32 port Chung-Ju Wu <[email protected]>
nds32 port Shiva Chen <[email protected]>
nios2 port Chung-Lin Tang <[email protected]>
nios2 port Sandra Loosemore <[email protected]>
nvptx port Tom de Vries <[email protected]>
nvptx port Thomas Schwinge <[email protected]>
or1k port Stafford Horne <[email protected]>
pdp11 port Paul Koning <[email protected]>
powerpcspe port Andrew Jenner <[email protected]>
pru port Dimitar Dimitrov <[email protected]>
riscv port Kito Cheng <[email protected]>
riscv port Palmer Dabbelt <[email protected]>
riscv port Andrew Waterman <[email protected]>
riscv port Jim Wilson <[email protected]>
rs6000/powerpc port David Edelsohn <[email protected]>
rs6000/powerpc port Segher Boessenkool <[email protected]>
rs6000/powerpc port Kewen Lin <[email protected]>
rs6000 vector extns Aldy Hernandez <[email protected]>
rx port Nick Clifton <[email protected]>
s390 port Ulrich Weigand <[email protected]>
s390 port Andreas Krebbel <[email protected]>
s390 port Stefan Schulze Frielinghaus <[email protected]>
sh port Alexandre Oliva <[email protected]>
sh port Oleg Endo <[email protected]>
sparc port David S. Miller <[email protected]>
sparc port Eric Botcazou <[email protected]>
v850 port Nick Clifton <[email protected]>
vax port Matt Thomas <[email protected]>
vax port Maciej W. Rozycki <[email protected]>
visium port Eric Botcazou <[email protected]>
x86-64 port Jan Hubicka <[email protected]>
xstormy16 port Nick Clifton <[email protected]>
xtensa port Sterling Augustine <[email protected]>
xtensa port Max Filippov <[email protected]>
OS Port Maintainers (OS alphabetical order)
aix David Edelsohn <[email protected]>
Android sub-port Maxim Kuvyrkov <[email protected]>
darwin port Iain Sandoe <[email protected]>
darwin port Mike Stump <[email protected]>
DJGPP DJ Delorie <[email protected]>
freebsd Andreas Tobler <[email protected]>
GNU/Hurd Thomas Schwinge <[email protected]>
hpux John David Anglin <[email protected]>
solaris Rainer Orth <[email protected]>
netbsd Jason Thorpe <[email protected]>
netbsd Krister Walfridsson <[email protected]>
sh-linux-gnu Kaz Kojima <[email protected]>
RTEMS Ports Joel Sherrill <[email protected]>
RTEMS Ports Ralf Corsepius <[email protected]>
RTEMS Ports Sebastian Huber <[email protected]>
VMS Douglas Rupp <[email protected]>
VMS Tristan Gingold <[email protected]>
VxWorks ports Olivier Hainque <[email protected]>
cygwin, mingw-w64 Jonathan Yong <[email protected]>
Language Front Ends Maintainers
C front end/ISO C99 Joseph Myers <[email protected]>
Ada front end Arnaud Charlet <[email protected]>
Ada front end Eric Botcazou <[email protected]>
Ada front end Marc Poulhiès <[email protected]>
Ada front end Pierre-Marie de Rodat <[email protected]>
c++ Jason Merrill <[email protected]>
c++ Nathan Sidwell <[email protected]>
D front end Iain Buclaw <[email protected]>
go Ian Lance Taylor <[email protected]>
Modula-2 front end Gaius Mulley <[email protected]>
objective-c/c++ Mike Stump <[email protected]>
objective-c/c++ Iain Sandoe <[email protected]>
Rust Arthur Cohen <[email protected]>
Rust Philip Herron <[email protected]>
Various Maintainers
libbacktrace Ian Lance Taylor <[email protected]>
libcpp Per Bothner <[email protected]>
libcpp All C and C++ front end maintainers
libcpp David Malcolm <[email protected]>
fp-bit Ian Lance Taylor <[email protected]>
libgcc Ian Lance Taylor <[email protected]>
libgo Ian Lance Taylor <[email protected]>
libgomp Jakub Jelinek <[email protected]>
libgomp Tobias Burnus <[email protected]>
libgomp (OpenACC) Thomas Schwinge <[email protected]>
libgrust All Rust front end maintainers
libiberty Ian Lance Taylor <[email protected]>
libitm Torvald Riegel <[email protected]>
libobjc Nicola Pero <[email protected]>
libobjc Andrew Pinski <[email protected]>
libquadmath Tobias Burnus <[email protected]>
libquadmath Jakub Jelinek <[email protected]>
libvtv Caroline Tice <[email protected]>
libphobos Iain Buclaw <[email protected]>
line map Dodji Seketeli <[email protected]>
soft-fp Joseph Myers <[email protected]>
scheduler (+ haifa) Jim Wilson <[email protected]>
scheduler (+ haifa) Michael Meissner <[email protected]>
scheduler (+ haifa) Jeff Law <[email protected]>
scheduler (+ haifa) Vladimir Makarov <[email protected]>
modulo-scheduler Roman Zhuykov <[email protected]>
reorg Jeff Law <[email protected]>
caller-save.cc Jeff Law <[email protected]>
callgraph Jan Hubicka <[email protected]>
debugging code Jim Wilson <[email protected]>
dwarf debugging code Jason Merrill <[email protected]>
dwarf debugging code Cary Coutant <[email protected]>
c++ runtime libs Paolo Carlini <[email protected]>
c++ runtime libs Ulrich Drepper <[email protected]>
c++ runtime libs Benjamin De Kosnik <[email protected]>
c++ runtime libs Jonathan Wakely <[email protected]>
c++ runtime libs special modes François Dumont <[email protected]>
fixincludes Bruce Korb <[email protected]>
*gimpl* Jakub Jelinek <[email protected]>
*gimpl* Aldy Hernandez <[email protected]>
*gimpl* Jason Merrill <[email protected]>
gcse.cc Jeff Law <[email protected]>
global opt framework Jeff Law <[email protected]>
jump.cc David S. Miller <[email protected]>
web pages Gerald Pfeifer <[email protected]>
config.sub/config.guess Ben Elliston <[email protected]>
i18n Philipp Thomas <[email protected]>
i18n Joseph Myers <[email protected]>
diagnostic messages Dodji Seketeli <[email protected]>
diagnostic messages David Malcolm <[email protected]>
build machinery (*.in) Paolo Bonzini <[email protected]>
build machinery (*.in) Nathanael Nerode <[email protected]>
build machinery (*.in) Alexandre Oliva <[email protected]>
build machinery (*.in) Ralf Wildenhues <[email protected]>
docs co-maintainer Gerald Pfeifer <[email protected]>
docs co-maintainer Joseph Myers <[email protected]>
docs co-maintainer Sandra Loosemore <[email protected]>
docstring relicensing Gerald Pfeifer <[email protected]>
docstring relicensing Joseph Myers <[email protected]>
predict.def Jan Hubicka <[email protected]>
gcov Jan Hubicka <[email protected]>
gcov Nathan Sidwell <[email protected]>
option handling Joseph Myers <[email protected]>
middle-end Jeff Law <[email protected]>
middle-end Ian Lance Taylor <[email protected]>
middle-end Richard Biener <[email protected]>
*vrp, ranger Aldy Hernandez <[email protected]>
*vrp, ranger Andrew MacLeod <[email protected]>
tree-ssa Andrew MacLeod <[email protected]>
tree browser/unparser Sebastian Pop <[email protected]>
scev, data dependence Sebastian Pop <[email protected]>
profile feedback Jan Hubicka <[email protected]>
AutoFDO Eugene Rozenfeld <[email protected]>
reload Ulrich Weigand <[email protected]>
RTL optimizers Eric Botcazou <[email protected]>
instruction combiner Segher Boessenkool <[email protected]>
pair fusion Alex Coplan <[email protected]>
auto-vectorizer Richard Biener <[email protected]>
auto-vectorizer Zdenek Dvorak <[email protected]>
loop infrastructure Zdenek Dvorak <[email protected]>
loop ivopts Bin Cheng <[email protected]>
loop optimizer Bin Cheng <[email protected]>
OpenACC Thomas Schwinge <[email protected]>
OpenACC Tobias Burnus <[email protected]>
OpenMP Jakub Jelinek <[email protected]>
OpenMP Tobias Burnus <[email protected]>
testsuite Rainer Orth <[email protected]>
testsuite Mike Stump <[email protected]>
register allocation Vladimir Makarov <[email protected]>
gdbhooks.py David Malcolm <[email protected]>
jit David Malcolm <[email protected]>
gen* on machine desc Richard Sandiford <[email protected]>
static analyzer David Malcolm <[email protected]>
Note that individuals who maintain parts of the compiler need approval to
check in changes outside of the parts of the compiler they maintain.
Reviewers
arm port (MVE) Christophe Lyon <[email protected]>
callgraph Martin Jambor <[email protected]>
C front end Marek Polacek <[email protected]>
CTF, BTF Indu Bhagat <[email protected]>
CTF, BTF, bpf port David Faust <[email protected]>
dataflow Paolo Bonzini <[email protected]>
dataflow Seongbae Park <[email protected]>
dataflow Kenneth Zadeck <[email protected]>
driver Joseph Myers <[email protected]>
Fortran Harald Anlauf <[email protected]>
Fortran Janne Blomqvist <[email protected]>
Fortran Tobias Burnus <[email protected]>
Fortran François-Xavier Coudert <[email protected]>
Fortran Jerry DeLisle <[email protected]>
Fortran Erik Edelmann <[email protected]>
Fortran Daniel Franke <[email protected]>
Fortran Thomas König <[email protected]>
Fortran Daniel Kraft <[email protected]>
Fortran Toon Moene <[email protected]>
Fortran Mikael Morin <[email protected]>
Fortran Tobias Schlüter <[email protected]>
Fortran Paul Thomas <[email protected]>
Fortran Janus Weil <[email protected]>
Graphite Tobias Grosser <[email protected]>
Graphite Sebastian Pop <[email protected]>
libcpp Tom Tromey <[email protected]>
libsanitizer, asan.cc Jakub Jelinek <[email protected]>
libsanitizer, asan.cc Dodji Seketeli <[email protected]>
libsanitizer, asan.cc Kostya Serebryany <[email protected]>
libsanitizer, asan.cc Dmitry Vyukov <[email protected]>
loop optimizer Zdenek Dvorak <[email protected]>
LTO Richard Biener <[email protected]>
LTO plugin Cary Coutant <[email protected]>
Plugin Le-Chun Wu <[email protected]>
register allocation Peter Bergner <[email protected]>
register allocation Kenneth Zadeck <[email protected]>
register allocation Seongbae Park <[email protected]>
riscv port Robin Dapp <[email protected]>
riscv port Juzhe Zhong <[email protected]>
RTL optimizers Steven Bosscher <[email protected]>
selective scheduling Andrey Belevantsev <[email protected]>
selective scheduling Alexander Monakov <[email protected]>
wide-int Kenneth Zadeck <[email protected]>
wide-int Mike Stump <[email protected]>
wide-int Richard Sandiford <[email protected]>
Note that while reviewers can approve changes to parts of the compiler
that they maintain, they still need approval for their own patches
from other maintainers or reviewers.
Write After Approval (last name alphabetical order)
Name BZ account Email
Mark G. Adams mgadams <[email protected]>
Ajit Kumar Agarwal aagarwa <[email protected]>
Pedro Alves palves <[email protected]>
John David Anglin danglin <[email protected]>
Harald Anlauf anlauf <[email protected]>
Soumya AR soumyaa <[email protected]>
Paul-Antoine Arras parras <[email protected]>
Arsen Arsenović arsen <[email protected]>
Raksit Ashok raksit <[email protected]>
Sterling Augustine sterling <[email protected]>
Matt Austern austern <[email protected]>
David Ayers ayers <[email protected]>
Prakhar Bahuguna prakhar <[email protected]>
Giovanni Bajo - <[email protected]>
Simon Baldwin simonb <[email protected]>
Richard Ball ricbal02 <[email protected]>
Scott Bambrough - <[email protected]>
Wolfgang Bangerth - <[email protected]>
Gergö Barany - <[email protected]>
Thiago Jung Bauermann - <[email protected]>
Charles Baylis cbaylis <[email protected]>
Tejas Belagod belagod <[email protected]>
Andrey Belevantsev abel <[email protected]>
Matthew Beliveau - <[email protected]>
Serge Belyshev - <[email protected]>
Jon Beniston jbeniston <[email protected]>
Andrew Bennett - <[email protected]>
Andrew Benson abensonca <[email protected]>
Peter Bergner bergner <[email protected]>
Daniel Berlin dberlin <[email protected]>
Pat Bernardi - <[email protected]>
Jan Beulich - <[email protected]>
Indu Bhagat ibhagat <[email protected]>
Richard Biener rguenth <[email protected]>
David Billinghurst billingd <[email protected]>
Tomas Bily tomby <[email protected]>
Laurynas Biveinis lauras <[email protected]>
Uros Bizjak uros <[email protected]>
Eric Blake ericb <[email protected]>
Janne Blomqvist jb <[email protected]>
Phil Blundell pb <[email protected]>
Hans Boehm - <[email protected]>
Segher Boessenkool segher <[email protected]>
Lynn Boger boger <[email protected]>
Ian Bolton ibolton <[email protected]>
Andrea Bona andreabo <[email protected]>
Paolo Bonzini - <[email protected]>
Neil Booth neil <[email protected]>
Steven Bosscher steven <[email protected]>
Eric Botcazou ebotcazou <[email protected]>
Per Bothner bothner <[email protected]>
Antoni Boucher - <[email protected]>
Sebastien Bourdeauducq lekernel <[email protected]>
Robert Bowdidge bowdidge <[email protected]>
James Bowman - <[email protected]>
Joel Brobecker - <[email protected]>
Dave Brolley - <[email protected]>
Julian Brown jules <[email protected]>
Christian Bruel chrbr <[email protected]>
Iain Buclaw ibuclaw <[email protected]>
Kevin Buettner - <[email protected]>
Andrew Burgess aburgess <[email protected]>
Tobias Burnus burnus <[email protected]>
Adam Butcher abutcher <[email protected]>
Andrew Cagney cagney <[email protected]>
Paolo Carlini paolo <[email protected]>
Andrew Carlotti acarlotti <[email protected]>
Daniel Carrera dcarrera <[email protected]>
Stephane Carrez ciceron <[email protected]>
Gabriel Charette gchare <[email protected]>
Arnaud Charlet charlet <[email protected]>
Chandra Chavva - <[email protected]>
Dehao Chen dehao <[email protected]>
Fabien Chêne fabien <[email protected]>
Bin Cheng amker <[email protected]>
Kito Cheng kito <[email protected]>
Lulu Cheng - <[email protected]>
Denis Chertykov denisc <[email protected]>
Monk Chiang - <[email protected]>
Clément Chigot - <[email protected]>
Harshit Chopra harshit <[email protected]>
Juergen Christ - <[email protected]>
Tamar Christina tnfchris <[email protected]>
Eric Christopher echristo <[email protected]>
Paul Clarke pc <[email protected]>
Nick Clifton nickc <[email protected]>
Arthur Cohen cohenarthur <[email protected]>
William Cohen - <[email protected]>
Michael Collison collison <[email protected]>
Josh Conner jconner <[email protected]>
R. Kelley Cook kcook <[email protected]>
Alex Coplan acoplan <[email protected]>
Andrea Corallo akrl <[email protected]>
Christian Cornelssen ccorn <[email protected]>
Ralf Corsepius corsepiu <[email protected]>
François-Xavier Coudert fxcoudert <[email protected]>
Ludovic Courtès ludo <[email protected]>
Cary Coutant - <[email protected]>
Lawrence Crowl crowl <[email protected]>
Lili Cui - <[email protected]>
Palmer Dabbelt palmer <[email protected]>
Ian Dall iandall <[email protected]>
David Daney daney <[email protected]>
Robin Dapp rdapp <[email protected]>
Simon Dardis dardiss <[email protected]>
Sudakshina Das sudi <[email protected]>
Bud Davis bdavis <[email protected]>
Jerry DeLisle jvdelisle <[email protected]>
DJ Delorie dj <[email protected]>
Chris Demetriou cgd <[email protected]>
Sameera Deshpande sameerad <[email protected]>
Wilco Dijkstra wilco <[email protected]>
Dimitar Dimitrov dimitar <[email protected]>
Benoit Dupont de Dinechin bd3 <[email protected]>
Lehua Ding - <[email protected]>
Ulrich Drepper drepper <[email protected]>
François Dumont fdumont <[email protected]>
Zdenek Dvorak rakdver <[email protected]>
Michael Eager eager <[email protected]>
Richard Earnshaw rearnsha <[email protected]>
Jason Eckhardt - <[email protected]>
Erik Edelmann eedelman <[email protected]>
David Edelsohn dje <[email protected]>
Bernd Edlinger edlinger <[email protected]>
Phil Edwards pme <[email protected]>
Mark Eggleston markeggleston <[email protected]>
Steve Ellcey sje <[email protected]>
Ben Elliston bje <[email protected]>
Mohan Embar membar <[email protected]>
Oleg Endo olegendo <[email protected]>
Revital Eres revitale <[email protected]>
Marc Espie - <[email protected]>
Ansgar Esztermann - <[email protected]>
Doug Evans devans <[email protected]>
Chris Fairles cfairles <[email protected]>
Alessandro Fanfarillo afanfa <[email protected]>
Changpeng Fang cfang <[email protected]>
David Faust - <[email protected]>
Sam Feifer - <[email protected]>
Eric Feng efric <[email protected]>
Li Feng lifeng <[email protected]>
Max Filippov jcmvbkbc <[email protected]>
Thomas Fitzsimmons fitzsim <[email protected]>
Alexander Fomin afomin <[email protected]>
Brian Ford - <[email protected]>
Matthew Fortune mpf <[email protected]>
Daniel Franke dfranke <[email protected]>
John Freeman - <[email protected]>
Nathan Froyd froydnj <[email protected]>
Chao-ying Fu - <[email protected]>
Gary Funck gfunck <[email protected]>
Pompapathi V Gadad pompa <[email protected]>
Eric Gallager egallager <[email protected]>
Gopalasubramanian Ganesh - <[email protected]>
Fei Gao - <[email protected]>
Kaveh Ghazi ghazi <[email protected]>
Doug Gilmore dgilmore <[email protected]>
Matthew Gingell - <[email protected]>
Tristan Gingold gingold <[email protected]>
Jan-Benedict Glaw jbglaw <[email protected]>
Marc Glisse glisse <[email protected]>
Prachi Godbole prachigodbole <[email protected]>
Torbjorn Granlund - <[email protected]>
Anthony Green green <[email protected]>
James Greenhalgh jgreenhalgh <[email protected]>
Doug Gregor dgregor <[email protected]>
Matthew Gretton-Dann mgretton <[email protected]>
Yury Gribov ygribov <[email protected]>
Jon Grimm jgrimm <[email protected]>
Tobias Grosser grosser <[email protected]>
Laurent Guerby guerby <[email protected]>
Haochen Gui guihaoc <[email protected]>
Jiufu Guo guojiufu <[email protected]>
Xuepeng Guo xguo <[email protected]>
Wei Guozhi carrot <[email protected]>
Vineet Gupta vineetg <[email protected]>
Naveen H.S naveenh <[email protected]>
Mostafa Hagog hagog <[email protected]>
Olivier Hainque hainque <[email protected]>
Jivan Hakobyan - <[email protected]>
Andrew Haley aph <[email protected]>
Demin Han deminhan <[email protected]>
Frederik Harwath frederik <[email protected]>
Stuart Hastings stuart <[email protected]>
Michael Haubenwallner haubi <[email protected]>
Pat Haugen pthaugen <[email protected]>
Michael Hayes m.hayes <[email protected]>
Alan Hayward alahay01 <[email protected]>
Li Jia He helijia <[email protected]>
Mark Heffernan meheff <[email protected]>
George Helffrich george <[email protected]>
Daniel Hellstrom danielh <[email protected]>
Fergus Henderson - <[email protected]>
Richard Henderson rth <[email protected]>
Stuart Henderson shenders <[email protected]>
Aldy Hernandez aldyh <[email protected]>
Philip Herron redbrain <[email protected]>
Marius Hillenbrand - <[email protected]>
Matthew Hiller - <[email protected]>
Kazu Hirata kazu <[email protected]>
Manfred Hollstein - <[email protected]>
Stafford Horne shorne <[email protected]>
Cong Hou congh <[email protected]>
Levy Hsu - <[email protected]>
Lin Hu - <[email protected]>
Sebastian Huber sh <[email protected]>
Jan Hubicka hubicka <[email protected]>
Falk Hueffner falk <[email protected]>
Andrew John Hughes gandalf <[email protected]>
Dominique d'Humieres dominiq <[email protected]>
Andy Hutchinson hutchinsonandy <[email protected]>
Joel Hutton joelh <[email protected]>
Lewis Hyatt lhyatt <[email protected]>
Paul Iannetta - <[email protected]>
Roland Illig - <[email protected]>
Meador Inge meadori <[email protected]>
Bernardo Innocenti - <[email protected]>
Mihail Ionescu - <[email protected]>
Vladislav Ivanishin - <[email protected]>
Alexander Ivchenko aivchenk <[email protected]>
Balaji V. Iyer bviyer <[email protected]>
Pekka Jääskeläinen visit0r <[email protected]>
Daniel Jacobowitz drow <[email protected]>
Andreas Jaeger aj <[email protected]>
Harsha Jagasia hjagasia <[email protected]>
Fariborz Jahanian - <[email protected]>
Martin Jambor jamborm <[email protected]>
Sam James sjames <[email protected]>
Surya Kumari Jangala jskumari <[email protected]>
Jakub Jelinek jakub <[email protected]>
Andrew Jenner andrewjenner <[email protected]>
Saurabh Jha saurabhjha <[email protected]>
Haochen Jiang - <[email protected]>
Qian Jianhua - <[email protected]>
Michal Jires mjires <[email protected]>
Janis Johnson janis <[email protected]>
Teresa Johnson tejohnson <[email protected]>
Kean Johnston - <[email protected]>
Phillip Jordan pmj <[email protected]>
Tim Josling timjosling <[email protected]>
Victor Kaplansky victork <[email protected]>
Filip Kastl pheeck <[email protected]>
Geoffrey Keating geoffk <[email protected]>
Brendan Kehoe - <[email protected]>
Richard Kenner kenner <[email protected]>
Andi Kleen ak <[email protected]>
Matthias Klose doko <[email protected]>
Jeff Knaggs - <[email protected]>
Michael Koch - <[email protected]>
Nicolas Koenig koenigni <[email protected]>
Kaz Kojima kkojima <[email protected]>
Boris Kolpackov boris <[email protected]>
Lingling Kong - <[email protected]>
Thomas König tkoenig <[email protected]>
Paul Koning pkoning <[email protected]>
Bruce Korb korbb <[email protected]>
Dave Korn davek <[email protected]>
Julia Koval jkoval <[email protected]>
Matt Kraai kraai <[email protected]>
Daniel Kraft domob <[email protected]>
Jan Kratochvil jkratoch <[email protected]>
Andreas Krebbel krebbel <[email protected]>
Matthias Kretz mkretz <[email protected]>
Louis Krupp lkrupp <[email protected]>
Prathamesh Kulkarni prathamesh3492 <[email protected]>
Venkataramanan Kumar vekumar <[email protected]>
Maxim Kuvyrkov mkuvyrkov <[email protected]>
Doug Kwan dougkwan <[email protected]>
Aaron W. LaFramboise - <[email protected]>
Scott Robert Ladd - <[email protected]>
Razya Ladelsky razya <[email protected]>
Thierry Lafage tlafage <[email protected]>
Rask Ingemann Lambertsen rask <[email protected]>
Jerome Lambourg - <[email protected]>
Tim Lange tlange <[email protected]>
Asher Langton langton <[email protected]>
Chris Lattner sabre <[email protected]>
Terry Laurenzo tlaurenzo <[email protected]>
Jeff Law law <[email protected]>
Alan Lawrence - <[email protected]>
Jozef Lawrynowicz jozefl <[email protected]>
Georg-Johann Lay gjl <[email protected]>
Vlad Lazar vladlazar <[email protected]>
Marc Lehmann - <[email protected]>
James Lemke jwlemke <[email protected]>
Ilya Leoshkevich iii <[email protected]>
Kriang Lerdsuwanakij lerdsuwa <[email protected]>
Pan Li - <[email protected]>
Renlin Li renlin <[email protected]>
Xinliang David Li davidxl <[email protected]>
Kewen Lin linkw <[email protected]>
Chen Liqin liqin <[email protected]>
Martin Liska marxin <[email protected]>
Hao Liu - <[email protected]>
Hongtao Liu liuhongt <[email protected]>
Jiangning Liu liujiangning <[email protected]>
Sa Liu saliu <[email protected]>
Ralph Loader ralph <[email protected]>
Sheldon Lobo smlobo <[email protected]>
Gabor Loki loki <[email protected]>
Sandra Loosemore sandra <[email protected]>
Manuel López-Ibáñez manu <[email protected]>
Carl Love carll <[email protected]>
Martin v. Löwis loewis <[email protected]>
Edwin Lu - <[email protected]>
H.J. Lu hjl <[email protected]>
Xiong Hu Luo - <[email protected]>
Bin Bin Lv shlb <[email protected]>
Christophe Lyon clyon <[email protected]>
Jun Ma junma <[email protected]>
Andrew MacLeod - <[email protected]>
Luis Machado luisgpm <[email protected]>
Ziga Mahkovec ziga <[email protected]>
Vladimir Makarov vmakarov <[email protected]>
David Malcolm dmalcolm <[email protected]>
Matthew Malcomson matmal01 <[email protected]>
Mikhail Maltsev miyuki <[email protected]>
Jose E. Marchesi jemarch <[email protected]>
Stamatis Markianos-Wright stammark <[email protected]>
Patrick Marlier pmarlier <[email protected]>
Simon Martin simartin <[email protected]>
Alejandro Martinez alejandro <[email protected]>
Ranjit Mathew rmathew <[email protected]>
Paulo Matos pmatos <[email protected]>
Ken Matsui kmatsui <[email protected]>
Michael Matz matz <[email protected]>
Greg McGary - <[email protected]>
Roland McGrath roland <[email protected]>
Bryce McKinlay bryce <[email protected]>
Adam Megacz - <[email protected]>
Bingfeng Mei meibf <[email protected]>
Michael Meissner meissner <[email protected]>
Josef Melcr - <[email protected]>
Jason Merrill jason <[email protected]>
Jim Meyering - <[email protected]>
Martin Michlmayr tbm <[email protected]>
David S. Miller davem <[email protected]>
Lee Millward lmillward <[email protected]>
Immad Mir mir <[email protected]>
Cupertino Miranda - <[email protected]>
Dragan Mladjenovic draganm <[email protected]>
Alan Modra amodra <[email protected]>
Toon Moene toon <[email protected]>
Alexander Monakov amonakov <[email protected]>
Catherine Moore clm <[email protected]>
Mikael Morin mikael <[email protected]>
James A. Morrison phython <[email protected]>
Brooks Moses brooks <[email protected]>
Dirk Mueller mueller <[email protected]>
Phil Muldoon pmuldoon <[email protected]>
Gaius Mulley gaius <[email protected]>
Christoph Müllner cmuellner <[email protected]>
Steven Munroe munroesj <[email protected]>
Philippe De Muyter - <[email protected]>
Joseph Myers jsm28 <[email protected]>
Szabolcs Nagy nsz <[email protected]>
Victor Do Nascimento victorldn <[email protected]>
Quentin Neill qneill <[email protected]>
Adam Nemet nemet <[email protected]>
Nathanael Nerode neroden <[email protected]>
Thomas Neumann tneumann <[email protected]>
Dan Nicolaescu - <[email protected]>
Kelvin Nilsen kelvin <[email protected]>
Hans-Peter Nilsson hp <[email protected]>
James Norris
Diego Novillo dnovillo <[email protected]>
Dorit Nuzman dorit <[email protected]>
David O'Brien - <[email protected]>
Carlos O'Donell carlos <[email protected]>
Peter O'Gorman pogma <[email protected]>
Patrick O'Neill - <[email protected]>
Braden Obrzut blzut3 <[email protected]>
Tsukasa Oi - <[email protected]>
Alexandre Oliva aoliva <[email protected]>
Andrea Ornstein andreao <[email protected]>
Rainer Orth ro <[email protected]>
Maxim Ostapenko chefmax <[email protected]>
Jeevitha Palanisamy jeevitha <[email protected]>
Patrick Palka ppalka <[email protected]>
Seongbae Park spark <[email protected]>
Srinath Parvathaneni sripar01 <[email protected]>
Devang Patel dpatel <[email protected]>
Andris Pavenis andris <[email protected]>
Fernando Pereira pronesto <[email protected]>
Nicola Pero nicola <[email protected]>
Sebastian Perta - <[email protected]>
Sebastian Peryt speryt <[email protected]>
Johannes Pfau jpfau <[email protected]>
Gerald Pfeifer gerald <[email protected]>
Kaushik Phatak kaushikp <[email protected]>
Andrew Pinski pinskia <[email protected]>
Nicolas Pitre nico <[email protected]>
Michael Ploujnikov plouj <[email protected]>
Paul Pluzhnikov ppluzhnikov <[email protected]>
Marek Polacek mpolacek <[email protected]>
Antoniu Pop apop <[email protected]>
Sebastian Pop spop <[email protected]>
Marc Poulhiès dkm <[email protected]>
Siddhesh Poyarekar siddhesh <[email protected]>
Vidya Praveen vp <[email protected]>
Thomas Preud'homme - <[email protected]>
Benjamin Priour vultkayn <[email protected]>
Vladimir Prus vprus <[email protected]>
Hafiz Abid Qadeer abidh <[email protected]>
Yao Qi qiyao <[email protected]>
Xianmiao Qu - <[email protected]>
Jerry Quinn jlquinn <[email protected]>
Ramana Radhakrishnan ramana <[email protected]>
Navid Rahimi navidr <[email protected]>
Rishi Raj - <[email protected]>
Easwaran Raman eraman <[email protected]>
Joe Ramsay joeramsay <[email protected]>
Rolf Rasmussen - <[email protected]>
Fritz Reese foreese <[email protected]>
Volker Reichelt reichelt <[email protected]>
Joern Rennecke amylaar <[email protected]>
Bernhard Reutner-Fischer aldot <[email protected]>
Torvald Riegel torvald <[email protected]>
Tom Rix - <[email protected]>
Pierre-Marie de Rodat pmderodat <[email protected]>
Thomas Rodgers rodgertq <[email protected]>
Craig Rodrigues rodrigc <[email protected]>
Erven Rohou erven <[email protected]>
Ira Rosen irar <[email protected]>
Yvan Roux yroux <[email protected]>
Eugene Rozenfeld - <[email protected]>
Maciej W. Rozycki - <[email protected]>
Douglas Rupp - <[email protected]>
Silvius Rus rus <[email protected]>
Matthew Sachs matthewg <[email protected]>
Ankur Saini arsenic <[email protected]>
Hariharan Sandanagobalane hariharans <[email protected]>
Richard Sandiford rsandifo <[email protected]>
Iain Sandoe iains <[email protected]>
Duncan Sands baldrick <[email protected]>
Sujoy Saraswati ssaraswati <[email protected]>
Trevor Saunders tbsaunde <[email protected]>
Aaron Sawdey acsawdey <[email protected]>
Roger Sayle sayle <[email protected]>
Tobias Schlüter tobi <[email protected]>
Bernd Schmidt bernds <[email protected]>
Will Schmidt willschm <[email protected]>
Jennifer Schmitz jschmitz <[email protected]>
Stefan Schulze Frielinghaus stefansf <[email protected]>
Andreas Schwab schwab <[email protected]>
Tilo Schwarz tiloschwarz <[email protected]>
Thomas Schwinge tschwinge <[email protected]>
Martin Sebor msebor <[email protected]>
Dodji Seketeli dodji <[email protected]>
Svein Seldal - <[email protected]>
Senthil Kumar Selvaraj saaadhu <[email protected]>
Kostya Serebryany kcc <[email protected]>
Thiemo Seufer - <[email protected]>
Bill Seurer seurer <[email protected]>
Marcus Shawcroft mshawcroft <[email protected]>
Nathaniel Shead nshead <[email protected]>
Tim Shen timshen <[email protected]>
Joel Sherrill joel <[email protected]>
David Sherwood davids <[email protected]>
Nathan Sidwell nathan <[email protected]>
Sharad Singhai singhai <[email protected]>
Johannes Singler singler <[email protected]>
Franz Sirl sirl <[email protected]>
Jan Sjodin jsjodin <[email protected]>
Trevor Smigiel tsmigiel <[email protected]>
Edward Smith-Rowland emsr <[email protected]>
Anatoly Sokolov aesok <[email protected]>
Michael Sokolov - <[email protected]>
Jayant Sonar jayants <[email protected]>
Fangrui Song - <[email protected]>
Richard Stallman - <[email protected]>
Basile Starynkevitch bstarynk <[email protected]>
Jakub Staszak kuba <[email protected]>
Graham Stott grahams <[email protected]>
Andrew Stubbs ams <[email protected]>
Mike Stump mrs <[email protected]>
Jeff Sturm jsturm <[email protected]>
YunQiang Su syq <[email protected]>
Robert Suchanek rts <[email protected]>
Andrew Sutton asutton <[email protected]>
Gabriele Svelto gsvelto <[email protected]>
Torbjörn Svensson azoff <[email protected]>
Toma Tabacu tomtab <[email protected]>
Omar Tahir - <[email protected]>
Sriraman Tallam tmsriram <[email protected]>
Chung-Lin Tang cltang <[email protected]>
Samuel Tardieu sam <[email protected]>
Ian Lance Taylor ian <[email protected]>
Sam Tebbs samtebbs <[email protected]>
Dinar Temirbulatov dinar <[email protected]>
Matt Thomas matt <[email protected]>
Paul Thomas pault <[email protected]>
Philipp Thomas - <[email protected]>
Jason Thorpe thorpej <[email protected]>
Kresten Krab Thorup - <[email protected]>
Caroline Tice ctice <[email protected]>
Kai Tietz ktietz <[email protected]>
Kyrylo Tkachov ktkachov <[email protected]>
Andreas Tobler andreast <[email protected]>
Ilya Tocar tocarip <[email protected]>
Petter Tomner - <[email protected]>
Philipp Tomsich ptomsich <[email protected]>
Daniel Towner - <[email protected]>
Konrad Trifunovic trifunovic <[email protected]>
Markus Trippelsdorf trippels <[email protected]>
Sergei Trofimovich slyfox <[email protected]>
Tom Tromey tromey <[email protected]>
Igor Tsimbalist itsimbal <[email protected]>
Martin Uecker uecker <[email protected]>
David Ung davidu <[email protected]>
Neil Vachharajani nvachhar <[email protected]>
Kris Van Hees - <[email protected]>
Joost VandeVondele vondele <[email protected]>
Andre Vehreschild vehre <[email protected]>
Alex Velenko avelenko <[email protected]>
Ilya Verbin iverbin <[email protected]>
Andre Vieira avieira <[email protected]>
Rasmus Villemoes - <[email protected]>
Kugan Vivekanandarajah kugan <[email protected]>
Marcel Vollweiler - <[email protected]>
Ville Voutilainen ville <[email protected]>
Tom de Vries vries <[email protected]>
Nenad Vukicevic nenadv <[email protected]>
Dmitry Vyukov dvyukov <[email protected]>
Jonathan Wakely redi <[email protected]>
Krister Walfridsson kristerw <[email protected]>
Feng Wang - <[email protected]>
Feng Wang fengwang <[email protected]>
Hongyu Wang hongyuw <[email protected]>
Jiong Wang jiwang <[email protected]>
Stephen M. Webb smw <[email protected]>
John Wehle - <[email protected]>
Ulrich Weigand uweigand <[email protected]>
Janus Weil janus <[email protected]>
Florian Weimer fw <[email protected]>
Zack Weinberg - <[email protected]>
Alexander Westbrooks alexanderw <[email protected]>
Mark Wielaard mark <[email protected]>
Edmar Wienskoski edmarwjr <[email protected]>
Ollie Wild - <[email protected]>
Ralf Wildenhues rwild <[email protected]>
Kevin Williams kwilliam <[email protected]>
Jim Wilson wilson <[email protected]>
Przemyslaw Wirkus wirkus <[email protected]>
Carlo Wood carlo <[email protected]>
Jackson Woodruff jcw <[email protected]>
Jonathan Wright - <[email protected]>
Chung-Ju Wu jasonwucj <[email protected]>
Le-Chun Wu lcwu <[email protected]>
Ruoyao Xi xry111 <[email protected]>
Mingjie Xing xmj <[email protected]>
Chenghua Xu paulhua <[email protected]>
Li Xu - <[email protected]>
Feng Xue fxue <[email protected]>
Canqun Yang canqun <[email protected]>
Fei Yang fyang <[email protected]>
Jeffrey Yasskin jyasskin <[email protected]>
Joey Ye jye2 <[email protected]>
Kwok Cheung Yeung - <[email protected]>
Jonathan Yong jyong <[email protected]>
Greta Yorsh gretay <[email protected]>
Kirill Yukhin kyukhin <[email protected]>
David Yuste dyuste <[email protected]>
Kenneth Zadeck zadeck <[email protected]>
Adhemerval Zanella - <[email protected]>
Xiao Zeng - <[email protected]>
Dennis Zhang - <[email protected]>
Jie Zhang jiez <[email protected]>
Yufeng Zhang yufeng <[email protected]>
Qing Zhao qinzhao <[email protected]>
Shujing Zhao pzhao <[email protected]>
Pengxuan Zheng pzheng <[email protected]>
Juzhe Zhong - <[email protected]>
Roman Zhuykov zhroma <[email protected]>
Jon Ziegler jonz <[email protected]>
Roman Zippel zippel <[email protected]>
Claudiu Zissulescu claziss <[email protected]>
Josef Zlomek zlomek <[email protected]>
Bug database only accounts
James Dennett <[email protected]>
Christian Ehrhardt <[email protected]>
Dara Hazeghi <[email protected]>
Contributing under the DCO
By adding your name and email to this section, you certify that all your
subsequent contributions to GCC are made under the terms of the Developer's
Certificate of Origin Version 1.1. See https://gcc.gnu.org/dco.html for more
information.
Soumya AR <[email protected]>
Juergen Christ <[email protected]>
Robin Dapp <[email protected]>
Robin Dapp <[email protected]>
Aldy Hernandez <[email protected]>
Michal Jires <[email protected]>
Matthias Kretz <[email protected]>
Prathamesh Kulkarni <[email protected]>
Tim Lange <[email protected]>
Jeff Law <[email protected]>
Jeff Law <[email protected]>
Jeff Law <[email protected]>
H.J. Lu <[email protected]>
Matthew Malcomson <[email protected]>
Immad Mir <[email protected]>
Gaius Mulley <[email protected]>
Szabolcs Nagy <[email protected]>
Andrew Pinski <[email protected]>
Siddhesh Poyarekar <[email protected]>
Ramana Radhakrishnan <[email protected]>
Navid Rahimi <[email protected]>
Rishi Raj <[email protected]>
Trevor Saunders <[email protected]>
Bill Schmidt <[email protected]>
Jennifer Schmitz <[email protected]>
Nathaniel Shead <[email protected]>
Nathan Sidwell <[email protected]>
Edward Smith-Rowland <[email protected]>
Fangrui Song <[email protected]>
Kyrylo Tkachov <[email protected]>
Petter Tomner <[email protected]>
Martin Uecker <[email protected]>
Kugan Vivekanandarajah <[email protected]>
Jonathan Wakely <[email protected]>
Alexander Westbrooks <[email protected]>
Chung-Ju Wu <[email protected]>
Pengxuan Zheng <[email protected]>