-
Notifications
You must be signed in to change notification settings - Fork 147
/
BUGS_REPORTED.TXT
1306 lines (976 loc) · 32.1 KB
/
BUGS_REPORTED.TXT
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
===================================================================
11/21/2013 (total 476)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=18023
11/17/2013 (total 475)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59164
11/14/2013 (total 474)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59139
11/14/2013 (total 473)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59138
11/08/2013 (total 472)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=17852
11/06/2013 (total 471)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=17836
11/05/2013 (total 470)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59006
10/06/2013 (total 469)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=17487
10/04/2013 (total 468)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58626
10/03/2013 (total 467)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=17473
09/10/2013 (total 466)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58385
09/09/2013 (total 465)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=17179
09/08/2013 (total 464)
1 clang wrong code bug reportd
http://llvm.org/bugs/show_bug.cgi?id=17158
09/08/2013 (total 463)
1 gcc wrong code bug reportd
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58365
09/08/2013 (total 462)
1 gcc wrong code bug reportd
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58364
01/29/2013 (total 461)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56144
07/10/2012 (total 460)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=13326
05/29/2012 (total 459)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53519
05/27/2012 (total 458)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12967
05/25/2012 (total 457)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12952
05/22/2012 (total 456)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12911
05/20/2012 (total 455)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=12901
05/20/2012 (total 454)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=12899
05/18/2012 (total 453)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=12885
05/18/2012 (total 452)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53411
05/18/2012 (total 451)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53410
05/18/2012 (total 450)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53409
05/18/2012 (total 449)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53408
05/16/2012 (total 448)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12858
05/11/2012 (total 447)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12802
04/30/2012 (total 446)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53168
04/29/2012 (total 445)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53163
04/29/2012 (total 444)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53160
04/28/2012 (total 443)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12691
04/22/2012 (total 442)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12627
04/16/2012 (total 441)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53010
04/16/2012 (total 440)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12565
04/15/2012 (total 439)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52996
04/13/2012 (total 438)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52979
04/12/2012 (total 437)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=12541
04/12/2012 (total 436)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12536
04/11/2012 (total 435)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52943
04/09/2012 (total 434)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12507
04/09/2012 (total 433)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52912
04/05/2012 (total 432)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52883
04/05/2012 (total 431)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12470
04/05/2012 (total 430)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52882
04/05/2012 (total 429)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52881
03/05/2012 (total 428)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=12189
02/29/2012 (total 427)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52437
02/29/2012 (total 426)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12138
02/29/2012 (total 425)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12135
02/27/2012 (total 424)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52406
02/26/2012 (total 423)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12087
02/17/2012 (total 422)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52298
02/16/2012 (total 421)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=12021
02/16/2012 (total 420)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52286
02/14/2012 (total 419)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52255
02/10/2012 (total 418)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52209
02/10/2012 (total 417)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=11977
02/09/2012 (total 416)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=11964
02/01/2012 (total 415)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52092
02/01/2012 (total 414)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52091
01/31/2012 (total 413)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52073
01/29/2012 (total 412)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=11882
01/29/2012 (total 411)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=11881
11/20/2011 (total 410)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51247
11/20/2011 (total 409)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51246
11/20/2011 (total 408)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51245
11/11/2011 (total 407)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=11361
11/10/2011 (total 406)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=11357
11/10/2011 (total 405)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=11356
11/09/2011 (total 404)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51070
11/09/2011 (total 403)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51069
11/09/2011 (total 402)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=11350
11/09/2011 (total 401)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=11347
11/08/2011 (total 400)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51042
11/08/2011 (total 399)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=11340
11/08/2011 (total 398)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50762
11/08/2011 (total 397)
http://llvm.org/bugs/show_bug.cgi?id=11335
1 llvm crash bug reported
11/07/2011 (total 396)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51023
08/10/2011 (total 395)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50039
08/02/2011 (total 394)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49948
07/31/2011 (total 393)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49927
07/31/2011 (total 392)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49926
07/12/2011 (total 391)
1 clang wrong code bug reported (-O0)
http://llvm.org/bugs/show_bug.cgi?id=10342
07/11/2011 (total 390)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49710
07/11/2011 (total 389)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=10336
07/04/2011 (total 388)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49632
07/03/2011 (total 387)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49619
07/01/2011 (total 386)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49610
06/30/2011 (total 385)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49602
06/24/2011 (total 384)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=10189
06/23/2011 (total 383)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49518
05/27/2011 (total 382)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49206
05/27/2011 (total 381)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=10040
05/26/2011 (total 380)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=10028
05/23/2011 (total 379)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9998
05/20/2011 (total 378)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49093
05/17/2011 (total 377)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49033
05/17/2011 (total 376)
1 gcc wrong code bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49032
05/16/2011 (total 375)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9931
05/14/2011 (total 374)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49000
05/12/2011 (total 373)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48975
05/11/2011 (total 372)
1 gcc wrong code bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48973
05/09/2011 (total 371)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9883
05/06/2011 (total 370)
1 gcc wrong code bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48921
05/06/2011 (total 369)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9856
05/05/2011 (total 368)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9846
05/04/2011 (total 367)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9845
05/02/2011 (total 366)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9831
05/01/2011 (total 365)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9823
04/30/2011 (total 364)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9820
04/29/2011 (total 363)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9815
04/28/2011 (total 362)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48813
04/27/2011 (total 361)
1 gcc wrong code bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48784
04/26/2011 (total 360)
1 gcc wrong code bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48766
04/23/2011 (total 359)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48739
04/22/2011 (total 358)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48723
04/22/2011 (total 357)
1 gcc crash bug reported by Arthur O'Dwyer
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48722
04/22/2011 (total 356)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48734
04/21/2011 (total 355)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48717
04/19/2011 (total 354)
1 gcc memory hog bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48694
04/06/2011 (total 353)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9634
04/05/2011 (total 352)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9633
04/04/2011 (total 351)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9630
04/02/2011 (total 350)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9609
03/31/2011 (total 349)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9604
03/30/2011 (total 348)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48381
03/28/2011 (total 347)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9578
03/27/2011 (total 346)
1 gcc crash bug reported (-O0)
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48305
03/18/2011 (total 345)
1 gcc wrong code bug reported (-O0)
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48197
03/15/2011 (total 344)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48146
03/15/2011 (total 343)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48136
03/14/2011 (total 342)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48124
03/10/2011 (total 341)
1 icc (Version 12.0 Build 20110112) wrong code bug reported
03/10/2011 (total 340)
1 icc (Version 12.0 Build 20110112) crash bug reported
03/10/2011 (total 339)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9454
03/10/2011 (total 338)
1 clang dragonegg wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9448
03/09/2011 (total 337)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9446
03/08/2011 (total 336)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9429
03/08/2011 (total 335)
1 clang "memory pathology" bug
http://llvm.org/bugs/show_bug.cgi?id=9428
03/07/2011 (total 334)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9420
02/28/2011 (total 333)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9346
02/25/2011 (total 332)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9331
02/25/2011 (total 331)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47899
02/24/2011 (total 330)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9324
02/14/2011 (total 329)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9223
02/03/2011 (total 328)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9133
01/31/2011 (total 327)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=9113
01/31/2011 (total 326)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9112
01/25/2011 (total 325)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9055
01/24/2011 (total 324)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9046
01/23/2011 (total 323)
1 gcc crash bug reproted
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47428
01/23/2011 (total 322)
1 gcc crash bug reproted
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47427
01/21/2011 (total 321)
1 gcc volatile bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47409
01/21/2011 (total 320)
1 clang volatile bug reported
http://llvm.org/bugs/show_bug.cgi?id=9027
01/21/2011 (total 319)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=9017
01/20/2011 (total 318)
1 gcc volatile bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47391
01/20/2011 (total 317)
1 clang wrong code bug reported (clang loops forever)
http://llvm.org/bugs/show_bug.cgi?id=9013
01/19/2011 (total 316)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47370
01/18/2011 (total 315)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47337
01/10/2011 (total 314)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8955
01/09/2011 (total 313)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47228
01/03/2011 (total 312)
1 dragonegg nondeterministic wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8898
01/03/2011 (total 311)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8896
01/02/2011 (total 310)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47155
01/01/2011 (total 309)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47148
12/31/2010 (total 308)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47141
12/31/2010 (total 307)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47140
12/31/2010 (total 306)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47139
12/25/2010 (total 305)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8854
12/14/2010 (total 304)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8790
12/07/2010 (total 303)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8757
12/02/2010 (total 302)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8728
11/23/2010 (total 301)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8677
11/17/2010 (total 300)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8642
11/15/2010 (total 299)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8622
11/15/2010 (total 298)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8620
11/14/2010 (total 297)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8604
11/14/2010 (total 296)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8602
11/10/2010 (total 295)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8585
11/10/2010 (total 294)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8582
11/09/2010 (total 293)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8578
11/04/2010 (total 292)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8547
10/30/2010 (total 291)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8514
10/30/2010 (total 290)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8513
10/29/2010 (total 289)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8511
10/29/2010 (total 288)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8506
10/02/2010 (total 287)
1 CompCert volatile bug reported
10/02/2010 (total 286)
1 clang volatile bug reported
http://llvm.org/bugs/show_bug.cgi?id=8279
9/30/2010 (total 285)
1 gcc volatile bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45852
9/30/2010 (total 284)
1 clang volatile bug reported
http://llvm.org/bugs/show_bug.cgi?id=8267
9/30/2010 (total 283)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8266
9/27/2010 (total 282)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8250
9/27/2010 (total 281)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8249
9/27/2010 (total 280)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8247
9/27/2010 (total 279)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=8244
9/23/2010 (total 278)
1 CompCert-1.8 and r1513 bug reported
9/16/2010 (total 277)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45687
9/15/2010 (total 276)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8162
9/15/2010 (total 275)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8161
9/2/2010 (total 274)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8068
9/2/2010 (total 273)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=8067
8/22/2010 (total 272)
1 CompCert-svn (r1475) wrong code bug reported
8/22/2010 (total 271)
1 CompCert-svn (r1475) crash bug reported
8/08/2010 (total 270)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=7845
8/08/2010 (total 269)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7844
8/05/2010 (total 268)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=7833
8/04/2010 (total 267)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=7814
7/31/2010 (total 266)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7771
7/30/2010 (total 265)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=7768
7/30/2010 (total 264)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7755
7/29/2010 (total 263)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=7750
7/26/2010 (total 262)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=7714
7/24/2010 (total 261)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45059
7/18/2010 (total 260)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44977
7/17/2010 (total 259)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7661
7/14/2010 (total 258)
1 clang crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44937
7/14/2010 (total 257)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44937
7/8/2010 (total 256)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7601
7/7/2010 (total 255)
1 CompCert-1.7/svn wrong code bug reported
7/7/2010 (total 254)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=7586
7/7/2010 (total 253)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44858
7/6/2010 (total 252)
1 gcc wrong code bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44828
7/1/2010 (total 251)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7542
7/1/2010 (total 250)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7540
6/30/2010 (total 249)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7535
6/30/2010 (total 248)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7530
6/29/2010 (total 247)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7521
6/28/2010 (total 246)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7514
6/28/2010 (total 245)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44695
6/28/2010 (total 244)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7513
6/25/2010 (total 243)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7498
6/9/2010 (total 242)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44485
5/25/2010 (total 241)
1 CompCert-1.7 bug reported
5/13/2010 (total 240)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44119
5/7/2010 (total 239)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44031
5/7/2010 (total 238)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44030
5/2/2010 (total 237)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=7018
4/24/2010 (total 236)
1 clang wrong code bug reported
http://llvm.org/bugs/show_bug.cgi?id=6929
4/23/2010 (total 235)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=6914
4/21/2010 (total 234)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=6889
4/21/2010 (total 233)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43842
4/17/2010 (total 232)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=6879
4/17/2010 (total 231)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=6862
4/17/2010 (total 230)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43781
4/17/2010 (total 229)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=6861
4/17/2010 (total 228)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=6860
4/7/2010 (total 227)
1 gcc crash bug reported
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43679
4/7/2010 (total 226)
1 clang crash bug reported
http://llvm.org/bugs/show_bug.cgi?id=6802
4/7/2010 (total 225)
1 CompCert-1.7 bug reported