summaryrefslogtreecommitdiff
path: root/test/fixedbugs
AgeCommit message (Collapse)AuthorFilesLines
2009-07-27do not insert implicit "return;" in empty function bodyRuss Cox3-1/+13
R=ken OCL=32239 CL=32239
2009-07-09bug168 (dsymonds) + fixRuss Cox1-0/+18
R=ken OCL=31399 CL=31399
2009-07-07bug167Russ Cox1-0/+26
R=ken OCL=31295 CL=31295
2009-07-03change bug163 to use actual non-letter in identifierRuss Cox1-1/+1
R=r,iant DELTA=1 (0 added, 0 deleted, 1 changed) OCL=31146 CL=31148
2009-07-02Recognize gccgo error message.Ian Lance Taylor1-1/+1
bug022.go:8:13: error: attempt to index object which is not array, string, or map R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=31082 CL=31089
2009-06-29bug163 bug164 bug166Russ Cox3-0/+43
R=ken OCL=30889 CL=30889
2009-06-29bug041 not a bug.Russ Cox1-16/+0
can now forward declare across files R=r DELTA=15 (0 added, 15 deleted, 0 changed) OCL=30873 CL=30880
2009-06-25bug165Russ Cox1-0/+15
R=ken OCL=30783 CL=30783
2009-06-25add ./ to imports where necessaryRuss Cox6-7/+7
R=r DELTA=51 (4 added, 4 deleted, 43 changed) OCL=30759 CL=30778
2009-06-25update tests for CL 30586.Russ Cox3-9/+5
won't submit unless 30586 goes in. R=r DELTA=94 (65 added, 16 deleted, 13 changed) OCL=30592 CL=30755
2009-06-22canonicalize bug122.goRob Pike1-1/+2
R=rsc DELTA=6 (1 added, 3 deleted, 2 changed) OCL=30604 CL=30604
2009-06-06bug140 is fixedRuss Cox1-0/+18
R=ken OCL=29989 CL=29999
2009-06-04bug161, fixedRuss Cox1-0/+17
R=ken OCL=29907 CL=29907
2009-06-04fix handling of floating point zero constant 0p+0Russ Cox3-0/+34
R=r DELTA=25 (25 added, 0 deleted, 0 changed) OCL=29875 CL=29875
2009-05-30bug157Russ Cox1-0/+32
R=ken OCL=29651 CL=29653
2009-05-30bug 158Ken Thompson1-0/+26
R=r OCL=29646 CL=29646
2009-05-29bug 156Ken Thompson1-0/+21
R=r OCL=29623 CL=29623
2009-05-29bug 155Ken Thompson1-0/+23
R=r OCL=29619 CL=29619
2009-05-29bug 149Ken Thompson1-0/+24
R=r OCL=29612 CL=29612
2009-05-27bug 153Ken Thompson1-0/+14
R=r OCL=29479 CL=29479
2009-05-27fix bug154; tweak bug153 exit statusRuss Cox1-0/+32
R=ken OCL=29448 CL=29448
2009-05-26bug151, bug152 -> fixedbugsRuss Cox2-0/+38
R=ken OCL=29425 CL=29427
2009-05-26bug150 is fixedRob Pike1-0/+23
R=ken OCL=29407 CL=29407
2009-05-19Match gccgo error messages.Ian Lance Taylor1-1/+1
bug117.go:13:12: error: reference to undefined field or method import1.go:9:2: error: redefinition of '.main.bufio' import1.go:8:2: note: previous definition of '.main.bufio' was here import1.go:9:2: error: incompatible imported type 'bufio.Error' interface9.go:25:5: error: incompatible types in assignment (method P requires a pointer) interface9.go:30:5: error: incompatible types in assignment (method P requires a pointer) R=rsc DELTA=5 (0 added, 0 deleted, 5 changed) OCL=29044 CL=29055
2009-05-08move things out of sys into os and runtimeRuss Cox6-6/+17
R=r OCL=28569 CL=28573
2009-05-05bug117 is fixed in 6g; now an errchkRuss Cox1-0/+25
R=r DELTA=42 (20 added, 22 deleted, 0 changed) OCL=28295 CL=28295
2009-05-02Verify that a send on a sychronous channel waits until theIan Lance Taylor1-0/+22
value has been received. This failed with gccgo before today. R=ken,r DELTA=18 (18 added, 0 deleted, 0 changed) OCL=28185 CL=28190
2009-04-30bug146: array/slice conversion before I left missed conversionsRuss Cox1-0/+14
R=ken OCL=28120 CL=28124
2009-04-28bug 139Ken Thompson1-0/+17
R=r OCL=27987 CL=27987
2009-04-28bug131 has been fixed with no changeKen Thompson1-0/+12
R=r OCL=27980 CL=27980
2009-04-28bug 145Ken Thompson1-0/+17
R=r OCL=27979 CL=27979
2009-04-24recognize a defined constantKen Thompson1-0/+21
as a new name in a later declaration (bug 144) R=r OCL=27850 CL=27850
2009-04-21Extend fixedbugs/bug143.go with function return values,David Symonds1-1/+14
as a regression test for the fix made in s2/27706. R=r APPROVED=r DELTA=14 (13 added, 0 deleted, 1 changed) OCL=27707 CL=27709
2009-04-21bug143 is fixedRob Pike1-0/+30
R=dsymonds DELTA=58 (26 added, 32 deleted, 0 changed) OCL=27698 CL=27698
2009-04-16make string take []byte only, so have to use *[10]byte to convertRuss Cox1-2/+2
R=r DELTA=4 (0 added, 0 deleted, 4 changed) OCL=27578 CL=27584
2009-04-15code changes for array conversion.Russ Cox2-2/+2
as a reminder, the old conversion was that you could write var arr [10]byte; var slice []byte; slice = arr; but now you have to write slice = &arr; the change eliminates an implicit &, so that the only implicit &s left are in the . operator and in string(arr). also, removed utf8.EncodeRuneToString in favor of string(rune). R=r DELTA=83 (1 added, 23 deleted, 59 changed) OCL=27531 CL=27534
2009-04-10bug142 is fixedRob Pike1-0/+31
R=rsc OCL=27331 CL=27331
2009-03-24^ type(const) now inverts "enough" bitsKen Thompson1-0/+14
^ signed(const) becomes illegal ^ unsigned(const) becomes legal R=r OCL=26697 CL=26697
2009-03-22bug141 is fixedRob Pike1-0/+30
R=ken DELTA=56 (26 added, 30 deleted, 0 changed) OCL=26628 CL=26628
2009-03-20Match gccgo error messages.Ian Lance Taylor1-2/+2
bug090.go:41:6: error: floating point constant truncated to integer bug090.go:32:6: error: floating point constant truncated to integer bug090.go:34:14: error: floating point constant truncated to integer bug090.go:37:5: error: incompatible types in assignment bug090.go:40:5: error: incompatible types in assignment R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=26564 CL=26574
2009-03-12warn -> yyerror in mparith.Russ Cox2-0/+25
close two more bugs. R=ken OCL=26226 CL=26226
2009-03-12make 6g constants behave as ken proposes. (i hope.)Russ Cox2-6/+7
various bug fixes and tests involving constants. test/const1.go is the major new test case. R=ken OCL=26216 CL=26224
2009-03-11bug 125Ken Thompson1-0/+11
R=r OCL=26146 CL=26146
2009-03-11bug 137Ken Thompson1-0/+26
R=r OCL=26142 CL=26142
2009-03-10bug086Ken Thompson1-0/+19
R=r OCL=26090 CL=26090
2009-03-06delete vestigial references to package syscallRob Pike1-2/+2
R=rsc DELTA=8 (0 added, 5 deleted, 3 changed) OCL=25857 CL=25861
2009-03-05bug085 bug129Russ Cox2-0/+38
R=ken OCL=25787 CL=25791
2009-03-03update missed test case to {}Rob Pike1-1/+1
R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=25648 CL=25654
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox11-23/+23
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-25bug130 is fixedRob Pike1-0/+20
R=ken OCL=25448 CL=25448