1
0
mirror of https://github.com/golang/go synced 2024-11-19 06:54:39 -07:00
go/test/fixedbugs
David Chase b64f549ba9 cmd/compile: ignore OXXX nodes in closure captured vars list
Added a debug flag "-d closure" to explain compilation of
closures (should this be done some other way? Should we
rewrite the "-m" flag to "-d escapes"?)  Used this to
discover that cause was an OXXX node in the captured vars
list, and in turn noticed that OXXX nodes are explicitly
ignored in all other processing of captured variables.

Couldn't figure out a reproducer, did verify that this OXXX
was not caused by an unnamed return value (which is one use
of these).  Verified lack of heap allocation by examining -S
output.

Assembly:
(runtime/mgc.go:1371) PCDATA $0, $2
(runtime/mgc.go:1371) CALL "".notewakeup(SB)
(runtime/mgc.go:1377) LEAQ "".gcBgMarkWorker.func1·f(SB), AX
(runtime/mgc.go:1404) MOVQ AX, (SP)
(runtime/mgc.go:1404) MOVQ "".autotmp_2242+88(SP), CX
(runtime/mgc.go:1404) MOVQ CX, 8(SP)
(runtime/mgc.go:1404) LEAQ go.string."GC worker (idle)"(SB), AX
(runtime/mgc.go:1404) MOVQ AX, 16(SP)
(runtime/mgc.go:1404) MOVQ $16, 24(SP)
(runtime/mgc.go:1404) MOVB $20, 32(SP)
(runtime/mgc.go:1404) MOVQ $0, 40(SP)
(runtime/mgc.go:1404) PCDATA $0, $2
(runtime/mgc.go:1404) CALL "".gopark(SB)

Added a check for compiling_runtime to ensure that this is
caught in the future.  Added a test to test the check.
Verified that 1.5.3 did NOT reject the test case when
compiled with -+ flag, so this is not a recently added bug.

Cause of bug is two-part -- there was no leaking closure
detection ever, and instead it relied on capture-of-variables
to trigger compiling_runtime test, but closures improved in
1.5.3 so that mere capture of a value did not also capture
the variable, which thus allowed closures to escape, as well
as this case where the escape was spurious.  In
fixedbugs/issue14999.go, compare messages for f and g;
1.5.3 would reject g, but not f.  1.4 rejects both because
1.4 heap-allocates parameter x for both.

Fixes #14999.

Change-Id: I40bcdd27056810628e96763a44f2acddd503aee1
Reviewed-on: https://go-review.googlesource.com/21322
Run-TryBot: David Chase <drchase@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
2016-04-01 02:08:56 +00:00
..
bug083.dir
bug088.dir
bug106.dir
bug133.dir
bug160.dir
bug191.dir
bug222.dir
bug248.dir
bug282.dir
bug302.dir test/fixedbugs/bug302: fix test on windows. 2014-12-09 05:23:35 +00:00
bug306.dir
bug313.dir
bug322.dir
bug324.dir
bug335.dir
bug345.dir
bug367.dir
bug369.dir test: migrate remaining tests to run.go 2014-12-22 22:41:34 +00:00
bug377.dir
bug382.dir
bug392.dir
bug396.dir
bug404.dir
bug407.dir
bug414.dir
bug415.dir
bug424.dir
bug437.dir
bug448.dir
bug460.dir
bug465.dir
bug466.dir
bug467.dir
bug468.dir
bug472.dir
bug478.dir
bug479.dir
bug480.dir
bug488.dir
bug492.dir test: add test case that gccgo failed to link 2014-12-22 23:07:10 +00:00
gcc67968.dir test: add gcc6798, valid code that caused gccgo to crash 2015-11-01 21:17:01 +00:00
issue3552.dir
issue4252.dir
issue4326.dir
issue4370.dir
issue4510.dir
issue4590.dir
issue4879.dir
issue4932.dir
issue4964.dir test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
issue5105.dir
issue5125.dir
issue5259.dir
issue5260.dir
issue5291.dir
issue5470.dir
issue5614.dir
issue5755.dir
issue5910.dir
issue5957.dir test: adjust gccgo expected import errors 2015-10-07 14:37:44 +00:00
issue6295.dir
issue6513.dir
issue6789.dir
issue7023.dir
issue7648.dir
issue7995b.dir test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
issue8060.dir cmd/gc: generate type alg after calling dowidth. 2014-09-15 18:24:16 +02:00
issue8280.dir cmd/gc: fix import of package with var func returning _ 2014-09-24 16:53:34 -04:00
issue9355.dir cmd/gc: resolve static addresses of the form &x.f at link time 2014-12-18 21:53:03 +00:00
issue9537.dir cmd/gc: treat non-local vars inlined into wrapper as escaping 2015-01-22 03:25:12 +00:00
issue9608.dir cmd/gc: eliminate dead code in switch statements 2015-02-06 19:05:47 +00:00
issue10066.dir cmd/internal/gc: do not show original expression for constants in export data 2015-03-05 03:40:42 +00:00
issue10219.dir cmd/compile: recognize embedded field in inlined function 2015-07-15 06:04:51 +00:00
issue10700.dir cmd/internal/gc: improve "type *X has no field or method M" message 2015-05-07 16:21:57 +00:00
issue11053.dir cmd/compile: run escape analysis after method wrapper generation 2015-06-17 02:36:45 +00:00
issue12677.dir cmd/compile: fix export type conversion loss in inlined func body 2015-12-16 20:30:04 +00:00
issue13777.dir cmd/compile: suppress export of Note field within exported bodies 2016-01-05 15:42:12 +00:00
issue14164.dir cmd/compile: fix parsing of inlined interface types with unexported methods 2016-02-01 20:29:19 +00:00
issue14331.dir cmd/compile: print struct tags in var decl in inlined func body 2016-02-16 19:39:10 +00:00
bug000.go
bug002.go
bug003.go
bug004.go
bug005.go
bug006.go
bug007.go
bug008.go
bug009.go
bug010.go
bug011.go
bug012.go
bug013.go
bug014.go
bug015.go
bug016.go
bug017.go
bug020.go
bug021.go
bug022.go
bug023.go
bug024.go
bug026.go
bug027.go
bug028.go
bug030.go
bug031.go
bug035.go
bug037.go
bug039.go
bug040.go
bug045.go
bug046.go
bug047.go
bug048.go
bug049.go
bug050.go
bug051.go
bug052.go
bug053.go
bug054.go
bug055.go
bug056.go
bug057.go
bug058.go
bug059.go
bug060.go
bug061.go
bug062.go
bug063.go
bug064.go
bug065.go
bug066.go
bug067.go
bug068.go
bug069.go
bug070.go
bug071.go
bug072.go
bug073.go
bug074.go
bug075.go
bug076.go
bug077.go
bug078.go
bug080.go
bug081.go
bug082.go
bug083.go
bug084.go
bug085.go
bug086.go
bug087.go
bug088.go
bug089.go
bug090.go
bug091.go
bug092.go
bug093.go
bug094.go
bug096.go
bug097.go
bug098.go
bug099.go
bug101.go
bug102.go
bug103.go
bug104.go
bug106.go
bug107.go
bug108.go cmd/compile: give informative error instead of "stupid shift" 2016-02-23 22:31:35 +00:00
bug109.go
bug110.go
bug111.go
bug112.go
bug113.go
bug114.go
bug115.go
bug116.go
bug117.go
bug118.go
bug119.go
bug120.go
bug121.go cmd/internal/gc, cmd/yacc: restore custom syntax error messages 2015-04-02 21:56:24 +00:00
bug122.go
bug123.go
bug126.go
bug127.go
bug128.go
bug129.go
bug130.go
bug131.go
bug132.go
bug133.go
bug135.go
bug136.go
bug137.go
bug139.go
bug140.go
bug141.go
bug142.go
bug143.go
bug144.go
bug145.go
bug146.go
bug147.go
bug148.go
bug149.go
bug150.go
bug151.go
bug152.go
bug154.go
bug155.go
bug156.go
bug157.go
bug158.go
bug159.go
bug160.go
bug161.go
bug163.go
bug164.go
bug165.go
bug167.go
bug168.go
bug169.go
bug170.go
bug171.go
bug172.go
bug173.go
bug174.go
bug175.go
bug176.go
bug177.go
bug178.go
bug179.go
bug180.go
bug181.go
bug182.go
bug183.go
bug184.go
bug185.go
bug186.go
bug187.go
bug188.go
bug189.go
bug190.go
bug191.go
bug192.go
bug193.go
bug194.go
bug195.go
bug196.go
bug197.go
bug198.go
bug199.go
bug200.go
bug201.go
bug202.go
bug203.go
bug204.go
bug205.go
bug206.go
bug206.out
bug207.go
bug208.go
bug209.go
bug211.go
bug212.go
bug213.go
bug214.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug215.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug216.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug217.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug218.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug219.go
bug221.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug222.go
bug223.go
bug224.go
bug225.go
bug227.go
bug228.go
bug229.go testing: prepare for the introduction of Run methods 2016-03-18 11:25:54 +00:00
bug230.go
bug231.go
bug232.go
bug233.go
bug234.go
bug235.go
bug236.go
bug237.go
bug238.go
bug239.go
bug240.go
bug241.go
bug242.go
bug243.go
bug244.go
bug245.go
bug246.go
bug247.go
bug248.go all: retire architecture letter in file names, public API 2015-05-21 17:32:17 +00:00
bug249.go
bug250.go
bug251.go
bug252.go
bug253.go
bug254.go
bug255.go cmd/gc: say 'non-constant array bound' instead of 'invalid array bound' 2014-09-16 10:21:54 -04:00
bug256.go
bug257.go
bug258.go
bug259.go
bug260.go
bug261.go
bug262.go
bug263.go
bug264.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug265.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug266.go
bug267.go
bug269.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug271.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug272.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug273.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug274.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug275.go
bug276.go
bug277.go
bug278.go
bug279.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug280.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug281.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug282.go
bug283.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug284.go
bug285.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug286.go
bug287.go
bug288.go
bug289.go
bug290.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug291.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug292.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug293.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug294.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug295.go
bug296.go
bug297.go
bug298.go
bug299.go
bug300.go
bug301.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug302.go all: retire architecture letter in file names, public API 2015-05-21 17:32:17 +00:00
bug303.go
bug304.go
bug305.go
bug306.go
bug307.go
bug308.go
bug309.go
bug311.go
bug312.go
bug313.go
bug314.go
bug315.go
bug316.go
bug317.go
bug318.go
bug319.go
bug320.go
bug321.go
bug322.go
bug323.go
bug324.go
bug325.go
bug326.go
bug327.go
bug328.go
bug328.out
bug329.go
bug330.go
bug331.go
bug332.go
bug333.go
bug334.go
bug335.go
bug336.go
bug337.go
bug338.go
bug339.go
bug340.go
bug341.go
bug342.go
bug343.go
bug344.go
bug345.go all: retire architecture letter in file names, public API 2015-05-21 17:32:17 +00:00
bug346.go cmd/gc: transform closure calls to function calls 2015-02-13 12:12:18 +00:00
bug347.go
bug348.go
bug349.go cmd/internal/gc, cmd/yacc: restore remaining custom error messages 2015-04-03 23:40:40 +00:00
bug350.go
bug351.go
bug352.go
bug353.go
bug354.go
bug355.go
bug356.go
bug357.go
bug358.go cmd/compile/internal/gc: recursive-descent parser 2015-11-13 14:53:57 +00:00
bug361.go
bug362.go
bug363.go
bug364.go
bug365.go
bug366.go
bug367.go
bug368.go
bug369.go all: retire architecture letter in file names, public API 2015-05-21 17:32:17 +00:00
bug370.go
bug371.go cmd/gc: disallow call of *T method using **T variable 2014-10-20 22:04:12 -04:00
bug372.go
bug373.go
bug374.go
bug375.go
bug376.go
bug377.go
bug378.go
bug379.go
bug380.go
bug381.go
bug382.go
bug383.go
bug384.go
bug385_32.go
bug385_64.go
bug386.go
bug387.go
bug388.go cmd/compile: faster parameter parsing with no OKEY nodes 2016-03-16 18:54:31 +00:00
bug389.go
bug390.go
bug391.go
bug392.go
bug393.go
bug394.go
bug396.go
bug397.go
bug398.go
bug399.go
bug401.go test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
bug402.go
bug403.go
bug404.go
bug405.go
bug406.go
bug407.go
bug409.go
bug409.out
bug410.go
bug411.go
bug412.go
bug413.go
bug414.go
bug415.go
bug416.go
bug417.go
bug418.go
bug419.go
bug420.go
bug421.go
bug422.go
bug423.go
bug424.go
bug425.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug426.go
bug427.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug428.go
bug429_run.go test: migrate remaining tests to run.go 2014-12-22 22:41:34 +00:00
bug429.go test: migrate remaining tests to run.go 2014-12-22 22:41:34 +00:00
bug430.go
bug431.go
bug432.go
bug433.go
bug434.go
bug435.go cmd/internal/gc, cmd/yacc: restore remaining custom error messages 2015-04-03 23:40:40 +00:00
bug436.go
bug437.go
bug438.go
bug439.go
bug440_32.go
bug440_64.go
bug441.go
bug442.go
bug443.go
bug444.go
bug445.go
bug446.go
bug447.go
bug448.go
bug449.go
bug450.go
bug451.go
bug452.go
bug453.go
bug454.go
bug455.go
bug456.go
bug457.go
bug458.go
bug459.go
bug460.go
bug461.go
bug462.go
bug463.go
bug464.go
bug465.go
bug466.go
bug467.go
bug468.go
bug470.go
bug471.go
bug472.go
bug473.go
bug474.go
bug475.go
bug476.go
bug477.go
bug478.go
bug479.go
bug480.go
bug481.go
bug482.go
bug483.go
bug484.go test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
bug485.go
bug486.go
bug487.go
bug488.go
bug489.go
bug490.go
bug491.go cmd/gc: fix call order in array literal of slice literal of make chan 2014-09-30 12:48:47 -04:00
bug492.go test: add test case that gccgo failed to link 2014-12-22 23:07:10 +00:00
bug493.go test: add test that gccgo failed to compile 2014-12-17 02:22:57 +00:00
bug494.go test: add bug494: test case miscompiled by gccgo 2014-12-18 02:45:00 +00:00
bug495.go test: add test that gccgo failed to compile 2015-03-13 22:05:23 +00:00
bug496.go test: add another test that gccgo failed to compile 2015-11-20 13:31:30 +00:00
bug497.go test: add test that gccgo miscompiled 2015-12-22 00:03:45 +00:00
bug1515.go
bug13343.go cmd/compile/internal/gc: fix initialization logic 2016-01-06 02:10:52 +00:00
gcc61204.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61244.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61246.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61248.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61253.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61254.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61255.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61258.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61264.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61265.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc61273.go test: add fixed GoSmith bugs reported on the gcc Bugzilla 2014-12-29 23:21:10 +00:00
gcc65755.go test: add gcc65755.go for http://gcc.gnu.org/PR65755 2015-04-13 23:24:30 +00:00
gcc67968.go test: add gcc6798, valid code that caused gccgo to crash 2015-11-01 21:17:01 +00:00
issue887.go
issue1304.go
issue2615.go
issue3552.go
issue3705.go
issue3783.go
issue3925.go
issue4066.go
issue4085a.go
issue4085b.go
issue4097.go
issue4099.go
issue4162.go
issue4167.go
issue4232.go cmd/gc: emit error for out-of-bounds slice of constant string 2014-09-25 13:24:43 -04:00
issue4251.go
issue4252.go
issue4264.go
issue4283.go
issue4313.go
issue4316.go
issue4323.go
issue4326.go
issue4348.go
issue4353.go
issue4359.go
issue4365.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
issue4370.go
issue4388.go runtime: use reflect.call during panic instead of newstackcall 2014-09-05 16:51:45 -04:00
issue4396a.go
issue4396b.go
issue4399.go
issue4405.go
issue4429.go
issue4448.go
issue4452.go
issue4458.go
issue4463.go
issue4468.go cmd/compile/internal/gc: better error message for parenthesized go/defer exprs 2015-11-18 22:26:07 +00:00
issue4470.go
issue4495.go
issue4510.go
issue4517a.go
issue4517b.go
issue4517c.go
issue4517d.go
issue4518.go test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
issue4529.go
issue4545.go
issue4562.go
issue4585.go
issue4590.go
issue4610.go
issue4614.go
issue4618.go
issue4620.go
issue4654.go
issue4663.go
issue4667.go
issue4734.go
issue4748.go
issue4752.go
issue4776.go
issue4785.go
issue4813.go
issue4847.go
issue4879.go
issue4909a.go
issue4909b.go
issue4932.go
issue4964.go
issue5002.go
issue5056.go
issue5089.go
issue5105.go
issue5125.go
issue5162.go
issue5172.go
issue5231.go
issue5244.go
issue5259.go
issue5260.go
issue5291.go
issue5358.go
issue5373.go cmd/gc: optimize memclr of slices and arrays 2015-01-09 22:35:25 +00:00
issue5470.go
issue5493.go
issue5515.go
issue5581.go
issue5607.go
issue5609.go
issue5614.go
issue5698.go
issue5704.go
issue5753.go
issue5755.go
issue5793.go
issue5809.go
issue5820.go
issue5841.go
issue5856.go runtime: use reflect.call during panic instead of newstackcall 2014-09-05 16:51:45 -04:00
issue5910.go
issue5957.go
issue5963.go
issue6004.go
issue6036.go
issue6055.go
issue6131.go
issue6140.go
issue6247.go
issue6269.go
issue6295.go
issue6298.go
issue6399.go
issue6402.go
issue6403.go
issue6405.go
issue6406.go
issue6500.go
issue6513.go
issue6572.go
issue6671.go cmd/gc: logical operators should produce untyped bool for untyped 2014-12-29 23:36:30 +00:00
issue6703a.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703b.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703c.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703d.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703e.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703f.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703g.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703h.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703i.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703j.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703k.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703l.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703m.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703n.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703o.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703p.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703q.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703r.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703s.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703t.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703u.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703v.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703w.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703x.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703y.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6703z.go cmd/gc: check for initialization cycles in method values 2014-10-14 19:12:10 -07:00
issue6789.go
issue6847.go
issue6866.go cmd/internal/gc: use big.Float to represent Mpflt bits 2015-04-02 22:49:47 +00:00
issue6889.go cmd/internal/gc: use 512 bits (rather than 464) for multi-precision arithmetic 2015-04-03 17:13:07 +00:00
issue6899.go
issue6899.out
issue6902.go
issue6964.go cmd/internal/gc: do not show computed value in type error 2015-02-25 19:49:49 +00:00
issue7023.go
issue7044.go
issue7050.go
issue7083.go
issue7129.go
issue7150.go cmd/compile: clearer error for invalid array/slice literal elements 2015-11-25 19:49:38 +00:00
issue7153.go cmd/compile: clearer error for invalid array/slice literal elements 2015-11-25 19:49:38 +00:00
issue7214.go
issue7223.go
issue7272.go
issue7310.go
issue7316.go
issue7346.go
issue7366.go
issue7405.go
issue7419.go
issue7525.go
issue7538a.go
issue7538b.go
issue7547.go
issue7550.go
issue7590.go
issue7648.go
issue7675.go
issue7690.go runtime: fix line number in first stack frame in printed stack trace 2014-10-29 15:14:24 -04:00
issue7740.go cmd/internal/gc: use 512 bits (rather than 464) for multi-precision arithmetic 2015-04-03 17:13:07 +00:00
issue7742.go
issue7746.go cmd/internal/gc: avoid spurious div-zero errors 2015-05-13 17:38:13 +00:00
issue7760.go cmd/gc: disallow pointer constants 2014-08-15 11:33:31 -07:00
issue7794.go
issue7863.go
issue7867.go
issue7884.go
issue7944.go
issue7995.go
issue7995b.go
issue7996.go
issue7997.go
issue7998.go
issue8004.go
issue8011.go
issue8017.go cmd/gc: don't walk static nodes generated by anylit. 2014-09-15 18:31:47 +02:00
issue8028.go
issue8036.go test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
issue8039.go
issue8047.go
issue8047b.go
issue8048.go
issue8060.go cmd/gc: generate type alg after calling dowidth. 2014-09-15 18:24:16 +02:00
issue8073.go
issue8074.go
issue8076.go
issue8079.go test: add test for gccgo-specific issue 8079 2014-10-13 12:33:45 -07:00
issue8132.go
issue8139.go
issue8154.go test: add test case for issue 8154 2015-06-26 17:58:22 +00:00
issue8155.go
issue8158.go
issue8183.go cmd/compile: propagate correct line numbers in treecopy 2015-05-27 17:29:15 +00:00
issue8280.go cmd/gc: fix import of package with var func returning _ 2014-09-24 16:53:34 -04:00
issue8311.go cmd/gc: print x++ (not x += 1) in errors about x++ 2014-09-25 13:13:02 -04:00
issue8325.go
issue8336.go cmd/gc: fix order of channel evaluation of receive channels 2014-08-25 07:05:45 -04:00
issue8347.go
issue8385.go cmd/compile: provide better error when method called without receiver 2015-06-18 19:37:38 +00:00
issue8475.go cmd/gc: comma-ok assignments produce untyped bool as 2nd result 2014-08-11 16:11:55 -07:00
issue8501.go cmd/gc: give an error if only one argument is given to complex() 2015-01-02 02:52:56 +00:00
issue8507.go cmd/gc: avoid infinite recursion on invalid recursive type 2014-09-25 13:08:37 -04:00
issue8612.go test: add test that caused gccgo to crash on valid code 2014-08-28 19:51:21 -07:00
issue8613.go test/fixedbugs: add test for divide by zero being optimized away 2016-03-31 06:12:38 +00:00
issue8620.go runtime: fix slicecopy return value for zero-width elements 2015-01-04 01:59:59 +00:00
issue8745.go cmd/internal/gc: type of str[i] is byte, not uint8 2015-05-19 19:20:25 +00:00
issue8761.go cmd/gc: fix call order in array literal of slice literal of make chan 2014-09-30 12:48:47 -04:00
issue8836.go cmd/compile: allow unnamed constants to set line number 2015-06-29 17:35:55 +00:00
issue8947.go cmd/gc: synthesize zeroed value for non-assignment context 2014-10-24 10:27:39 -04:00
issue8961.go cmd/gc: emit code for extern = <N> 2014-10-20 15:59:10 +01:00
issue9006.go cmd/gc: fix internal compiler error in struct compare 2014-10-28 23:22:46 -04:00
issue9017.go cmd/internal/gc: method selector should not auto-deref named pointer type 2015-02-25 19:27:30 +00:00
issue9036.go cmd/compile: cleanup number lexing 2016-02-29 19:00:10 +00:00
issue9076.go cmd/internal/gc: do not show computed value in type error 2015-02-25 19:49:49 +00:00
issue9083.go cmd/internal/gc: omit non-explicit capacity in errors with map/chan make 2015-02-25 20:04:22 +00:00
issue9110.go test: set GOMAXPROCS=1 in fixedbugs/issue9110 2015-04-28 00:06:13 +00:00
issue9321.go test: shorten test runtime 2015-01-08 04:49:43 +00:00
issue9355.go all: retire architecture letter in file names, public API 2015-05-21 17:32:17 +00:00
issue9370.go cmd/gc: evaluate concrete == interface without allocating 2015-02-12 22:23:38 +00:00
issue9432.go cmd/gc: don't recurse infinitely when a recursive type references itself more than once 2015-01-12 02:09:50 +00:00
issue9521.go cmd/internal/gc: detect bad append(f()) during type check 2015-05-12 16:26:35 +00:00
issue9537.go cmd/gc: treat non-local vars inlined into wrapper as escaping 2015-01-22 03:25:12 +00:00
issue9604.go cmd/5g: make sure we normalize after unary ops on small types 2015-01-15 23:50:01 +00:00
issue9604b.go test: generate tests for arithmetic on narrow types 2015-01-17 21:00:15 +00:00
issue9608.go cmd/gc: eliminate dead code in switch statements 2015-02-06 19:05:47 +00:00
issue9634.go cmd/gc: don't unpack struct arguments to append 2015-01-20 22:55:56 +00:00
issue9691.go cmd/gc: allow map index expressions in for range statements 2015-01-28 15:14:04 +00:00
issue9731.go cmd/gc: typecheck type switch variables 2015-02-03 15:44:06 +00:00
issue9738.go cmd/gc: always treat the output parameters as having been assigned in capturevars. 2015-02-02 14:14:21 +00:00
issue9862_run.go cmd/link: reject data size > 2 GB 2015-06-30 19:40:39 +00:00
issue9862.go cmd/link: reject data size > 2 GB 2015-06-30 19:40:39 +00:00
issue10047.go test: add testcase for gccgo-specific issue 10047. 2015-03-06 22:29:08 +00:00
issue10066.go cmd/internal/gc: do not show original expression for constants in export data 2015-03-05 03:40:42 +00:00
issue10135.go runtime: don't return a slice with nil ptr but non-zero len from growslice 2015-03-12 00:08:38 +00:00
issue10219.go cmd/compile: recognize embedded field in inlined function 2015-07-15 06:04:51 +00:00
issue10253.go cmd/7g: fix ACMP entry in progtable 2015-04-02 20:18:28 +00:00
issue10284.go test: add testcase for gccgo-specific issue 10284 2015-03-30 19:31:35 +00:00
issue10320.go cmd/7g: reserve registers R26 to R32 2015-04-03 18:25:09 +00:00
issue10332.go cmd/internal/gc, cmd/go: fix value of importpath symbol 2015-04-19 20:14:59 +00:00
issue10353.go cmd/internal/gc: improve flow of input params to output params 2015-05-01 13:47:20 +00:00
issue10407.go test: add gccgo test case for #10407 2015-04-10 22:51:46 +00:00
issue10441.go test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
issue10486.go runtime: change arm software div/mod call sequence not to modify stack 2015-07-30 16:14:05 +00:00
issue10607.go test: fix nosplit.go, fixedbugs/issue11656.go and skip two tests for mips64{,le} 2015-11-12 04:52:31 +00:00
issue10607a.go cmd/link: if -B option was used, pass it to the external linker 2015-07-21 03:57:55 +00:00
issue10654.go cmd/compile: use generated temps in bool codegen 2015-06-09 17:38:26 +00:00
issue10700.go cmd/internal/gc: improve "type *X has no field or method M" message 2015-05-07 16:21:57 +00:00
issue10925.go cmd/internal/gc: make indirect calls properly escape-y 2015-05-22 01:36:11 +00:00
issue10975.go test: gofmt fixedbugs/issue10975.go 2015-10-06 06:56:11 +00:00
issue10977.go cmd/compile: early typecheck top level OAS2 nodes 2015-06-09 00:25:02 +00:00
issue11053.go cmd/compile: run escape analysis after method wrapper generation 2015-06-17 02:36:45 +00:00
issue11053.out cmd/compile: run escape analysis after method wrapper generation 2015-06-17 02:36:45 +00:00
issue11256.go runtime: always clear stack barriers on G exit 2015-06-29 15:02:30 +00:00
issue11286.go runtime: fix heap bitmap repeating with large scalar tails 2015-06-23 18:37:17 +00:00
issue11326.go cmd/compile: don't truncate tiny float constants to 0 in error messages 2015-12-10 16:39:46 +00:00
issue11326b.go src/cmd/compile/internal/gc: remove now unnecessary restriction on float exponent parsing 2015-09-22 00:22:49 +00:00
issue11359.go cmd/compile: reject identifiers beginning with non-ASCII digit 2015-11-16 20:38:42 +00:00
issue11362.go cmd/compile: fix some C to Go translation leftovers 2015-10-08 01:51:24 +00:00
issue11369.go cmd/compile: fix half multiply issue 2015-06-26 15:55:22 +00:00
issue11590.go cmd/compile: don't truncate tiny float constants to 0 in error messages 2015-12-10 16:39:46 +00:00
issue11610.go cmd/compile: towards simpler and faster lexing: always use getr 2016-02-24 04:36:25 +00:00
issue11614.go cmd/compile/internal/gc: fix panic in Type Stringer 2015-12-07 20:18:03 +00:00
issue11656.go test/fixedbugs: add s390x case to issue11656 2016-03-21 07:09:36 +00:00
issue11699.go cmd/compile: do not emit args_stackmap for func _ 2015-11-16 20:38:52 +00:00
issue11737.go cmd/compile: diagnose invalid switch interface{} case earlier 2015-12-16 20:58:00 +00:00
issue11750.go cmd/compile: prepend captured args to called-closure params 2015-07-23 19:02:19 +00:00
issue11771.go cmd/compile: ignore carriage return in magic comments 2015-07-18 17:33:53 +00:00
issue11790.go cmd/compile: adjust annotation of implicit operations. 2015-07-23 14:19:07 +00:00
issue11987.go cmd/internal/obj/ppc64: fix assembly of SRADCC with immediate 2015-11-05 22:54:21 +00:00
issue12006.go cmd/compile: escape analysis, don't always escape variadic args 2015-10-04 20:45:35 +00:00
issue12108.go cmd/compile/internal/ppc64: fix the epilogue for non-leaf generated methods 2015-10-06 03:34:13 +00:00
issue12133.go test: use go:noinline consistently 2015-11-03 02:01:34 +00:00
issue12226.go cmd/compile: fix register allocation for == operator 2015-08-25 18:10:14 +00:00
issue12347.go [dev.ssa] cmd/compile/internal/ssa: handle dead code a different way 2015-08-29 17:21:02 +00:00
issue12411.go cmd/compile: fix magic multiply smashing AX 2015-12-16 20:58:17 +00:00
issue12413.go cmd/compile: "invalid variable name x in type switch", where x is a name of a constant 2015-10-21 04:21:16 +00:00
issue12525.go cmd/compile: don't emit conversion error in non-numeric increment/decrement 2016-03-07 14:34:58 +00:00
issue12577.go cmd/compile/internal/gc: there are no -0 floating-point constants 2015-10-20 22:11:11 +00:00
issue12588.go cmd/compile: repair escape analysis of range &fixedArray 2015-10-01 18:49:18 +00:00
issue12677.go cmd/compile: fix export type conversion loss in inlined func body 2015-12-16 20:30:04 +00:00
issue12686.go cmd/compile: fix Val vs Opt collision 2015-11-18 18:31:27 +00:00
issue12944.go cmd/compile/internal/gc: reject invalid unsafe.Sizeof([0]byte{}[0]) 2015-10-15 20:56:58 +00:00
issue13160.go runtime: memmove/memclr pointers atomically 2015-11-07 02:42:12 +00:00
issue13169.go runtime: simplify chan ops, take 2 2015-11-08 23:20:25 +00:00
issue13171.go runtime: teach peephole optimizer that duffcopy clobbers X0 2015-11-06 15:11:42 +00:00
issue13248.go test: add test case for issue #13248 2015-11-17 01:05:51 +00:00
issue13261.go cmd/compile/internal/gc: fix incorrect parsing of &(T{}) when followed by { 2015-11-18 22:25:48 +00:00
issue13266.go cmd/compile/internal/gc: correctly use internal call to error reporting 2015-11-17 01:05:07 +00:00
issue13268.go test: add test case for issue 13268 2015-11-24 04:14:39 +00:00
issue13273.go cmd/compile/internal/gc: fix parsing of <-x (recv op vs recv-only chan) 2015-11-18 22:22:56 +00:00
issue13274.go cmd/compile/internal/gc: don't ignore EOF in new parser 2015-11-17 01:05:39 +00:00
issue13319.go cmd/compile: better syntax error recovery 2015-11-20 19:56:27 +00:00
issue13337.go cmd/compile: support arbitrarily deep embedded fields 2016-03-10 06:33:52 +00:00
issue13365.go cmd/compile: clearer error for invalid array/slice literal elements 2015-11-25 19:49:38 +00:00
issue13415.go cmd/compile: use correct line number for := (LCOLAS) 2015-11-28 03:36:00 +00:00
issue13471.go cmd/compile: don't truncate tiny float constants to 0 in error messages 2015-12-10 16:39:46 +00:00
issue13480.go cmd/compile: reject slice/map/func comparisons against converted nil 2015-12-05 05:46:48 +00:00
issue13539.go cmd/compile: recognize labels even if they have the same name as packages 2015-12-09 02:02:11 +00:00
issue13559.go cmd/compile: don't truncate tiny float constants to 0 in error messages 2015-12-10 16:39:46 +00:00
issue13587.go cmd/compile: add missing write barriers for return statements 2015-12-12 06:46:56 +00:00
issue13684.go cmd/compile: const name and label name may match 2015-12-21 20:21:28 +00:00
issue13777.go cmd/compile: suppress export of Note field within exported bodies 2016-01-05 15:42:12 +00:00
issue13799.go cmd/compile: better modeling of escape across loop levels 2016-01-13 04:01:00 +00:00
issue13821.go cmd/compile: recognize bool(true) as a constant expression 2016-01-06 14:38:33 +00:00
issue13821b.go cmd/compile: recognize !typedbool is typed 2016-01-07 21:43:47 +00:00
issue14006.go cmd/compile: don't crash on invalid labeled statement 2016-01-19 21:34:28 +00:00
issue14010.go cmd/compile: don't print (empty) package name in errors referring to built-ins 2016-01-20 04:43:43 +00:00
issue14164.go cmd/compile: fix parsing of inlined interface types with unexported methods 2016-02-01 20:29:19 +00:00
issue14331.go cmd/compile: print struct tags in var decl in inlined func body 2016-02-16 19:39:10 +00:00
issue14405.go cmd/compile: don't walk field-name syntax in esc.go 2016-02-19 19:40:49 +00:00
issue14520.go cmd/compile: fix contrived line number errors 2016-02-26 21:25:43 +00:00
issue14553.go cmd/compile: update vendored math/big to latest version 2016-03-22 17:09:29 +00:00
issue14591.go cmd/compile: don't use PPARAMOUT names for temps 2016-03-11 00:56:04 +00:00
issue14636.go cmd/link/internal/ld: don't panic on short buildid 2016-03-04 21:20:09 +00:00
issue14646.go cmd/compile: attach correct line number for fallthru-return 2016-03-08 19:23:25 +00:00
issue14651.go cmd/compile: update vendored math/big to latest version 2016-03-22 17:09:29 +00:00
issue14652.go cmd/compile: stop leaking 'any' type into user package 2016-03-05 02:13:04 +00:00
issue14725.go cmd/compile: fix defer/deferreturn 2016-03-10 22:33:49 +00:00
issue14999.go cmd/compile: ignore OXXX nodes in closure captured vars list 2016-04-01 02:08:56 +00:00
issue15002.go cmd/compile: fix build 2016-03-31 18:00:36 +00:00
issue15013.go cmd/compile: don't skip PPARAMOUT in esccall after varargs 2016-03-30 02:43:08 +00:00
issue15039.go cmd/compile, runtime: fix pedantic int->string conversions 2016-03-31 10:28:23 +00:00
issue15042.go cmd/compile: s.f aliases itself 2016-04-01 00:47:56 +00:00