go/test/fixedbugs
thepudds d3070a767b cmd/compile/internal/types2: more consistently print "check go.mod" if language version < 1.18
If you attempt to instantiate a generic type or func and run 'go build'
with a language version < 1.18 in the 'go' directive inside the go.mod
file, cmd/compile emits a friendly message that includes the suggestion
to 'check go.mod':

    type instantiation requires go1.18 or later (-lang was set to go1.17; check go.mod)

However, if the code instead only declares a generic type or func
without instantiating, cmd/compile currently emits a less friendly
message:

    type parameters require go1.18 or later

With this CL, the error in that situation becomes:

    type parameter requires go1.18 or later (-lang was set to go1.17; check go.mod)

Within cmd/compile/internal/types2, it already calls check.versionErrorf
in a dozen or so places, including three existing calls to
check.versionErrorf within typeset.go (e.g., for embedding a constraint
interface).

This CL adds two more calls to check.versionErrorf, replacing calls to
check.softErrorf. Both check.versionErrorf and check.softErrorf call
check.err(at, <string>, true) after massaging the string message.

Fixes #51531

Change-Id: If54e179f5952b97701d1dfde4abb08101de07811
GitHub-Last-Rev: b0b7c1346f
GitHub-Pull-Request: golang/go#51536
Reviewed-on: https://go-review.googlesource.com/c/go/+/390578
Reviewed-by: Robert Griesemer <gri@golang.org>
Trust: Robert Findley <rfindley@google.com>
2022-03-08 16:50:57 +00:00
..
bug083.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug088.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug106.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug133.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug160.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug191.dir
bug222.dir
bug248.dir [dev.typeparams] test: update regress tests for types2 2021-05-19 06:26:35 +00:00
bug282.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug302.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug306.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug313.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug322.dir
bug324.dir
bug335.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug345.dir [dev.typeparams] test: update regress tests for types2 2021-05-19 06:26:35 +00:00
bug367.dir
bug369.dir testing: delay flag registration; move to an Init function 2019-04-29 19:54:30 +00:00
bug377.dir
bug382.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug392.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug396.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug404.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug407.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug414.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug415.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug424.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug437.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug448.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug460.dir [dev.typeparams] test: update regress tests for types2 2021-05-19 06:26:35 +00:00
bug465.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug466.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug467.dir
bug468.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug472.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug478.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug479.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug480.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug488.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug492.dir test: add test case that gccgo failed to link 2014-12-22 23:07:10 +00:00
bug504.dir test: add test case that gccgo miscompiled 2017-10-12 19:02:09 +00:00
bug506.dir test: add fixedbugs/bug506 for gccgo 2018-10-18 04:57:41 +00:00
bug507.dir test: add test that gccgo fails to compile 2020-02-22 04:31:41 +00:00
bug510.dir test: add new test that gofrontend failed to handle 2020-12-07 17:29:52 +00:00
bug511.dir test: add test case that failed with gccgo 2021-02-25 15:24:25 +00:00
gcc67968.dir test: add gcc6798, valid code that caused gccgo to crash 2015-11-01 21:17:01 +00:00
issue3552.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4252.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4326.dir
issue4370.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4510.dir test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue4590.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6513.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
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 test: expand switch dead code test to include a range 2016-08-23 05:12:39 +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 test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue11053.dir all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11656.dir test: workaround SIGILL on issue11656 on aix 2022-01-11 15:28:40 +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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15071.dir test/fixedbugs: fix some tests will not be run 2019-05-23 01:39:41 +00:00
issue15470.dir test: added test case for (fixed) issue 15470 2016-04-29 00:42:13 +00:00
issue15514.dir test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue15548.dir test: update test for issue 15548 2016-05-06 02:50:42 +00:00
issue15572.dir cmd/compile: fix binary export of composite literals with implicit types 2016-05-09 06:16:07 +00:00
issue15609.dir cmd/internal/obj/x86: On amd64, relocation type for and indirect call is pc-relative. 2016-10-09 19:50:09 +00:00
issue15646.dir cmd/compile: clean up encoding of method expressions and add test 2016-05-11 19:23:04 +00:00
issue15838.dir cmd/compile: correctly import labels, gotos, and fallthroughs 2016-05-26 00:32:03 +00:00
issue15920.dir cmd/compile: correctly export underlying type of predecl. error type 2016-06-01 21:32:46 +00:00
issue16133.dir cmd/compile: fix error msg mentioning different packages with same name 2016-06-22 00:12:55 +00:00
issue16317.dir cmd/compile: fix binary import of unsafe.Pointer literals 2016-08-23 18:03:07 +00:00
issue16616.dir cmd/compile: qualify unexported fields of unnamed types 2016-08-26 11:46:15 +00:00
issue18419.dir test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue18895.dir cmd/compile: fix exporting of function bodies 2017-06-15 04:17:30 +00:00
issue18911.dir runtime: slightly better error message for assertion panics with identical looking types 2018-06-05 00:29:50 +00:00
issue19028.dir test: import file name for issue19028 2020-12-15 20:45:24 +00:00
issue19261.dir cmd/compile: record InlCost in export data 2017-10-11 23:20:44 +00:00
issue19467.dir cmd/compile: fix names of inlined methods from other packages 2017-03-29 17:27:49 +00:00
issue19507.dir test: fix ABI mismatch in fixedbugs/issue19507 2018-11-13 23:44:52 +00:00
issue19548.dir cmd/compile/internal/gc: mark generated wrappers as DUPOK 2017-03-15 00:27:13 +00:00
issue19699.dir cmd/compile: eliminate dead code in if statements after typechecking 2017-04-18 17:13:30 +00:00
issue19764.dir cmd/link: canonicalize the "package" of dupok text symbols 2017-04-02 03:25:02 +00:00
issue20014.dir test: add a field tracking test 2021-04-21 20:24:34 +00:00
issue20682.dir cmd/compile: add regress test for #20682 2017-06-15 22:01:35 +00:00
issue21120.dir cmd/compile: consider exported flag in namedata 2017-07-24 18:05:00 +00:00
issue22877.dir cmd/compile: make -asmhdr work with type aliases 2017-11-29 20:40:41 +00:00
issue22941.dir cmd/compile: fix DWARF type symbol buglet 2017-12-01 18:52:50 +00:00
issue22962.dir cmd/compile: fix bug in DWARF inl handling of unused autos 2017-12-04 18:36:11 +00:00
issue23179.dir cmd/compile: second attempt at fix for issue 23179 2017-12-20 20:39:16 +00:00
issue23311.dir cmd/compile: allow bodyless function if it is linkname'd 2018-11-26 20:00:59 +00:00
issue24693.dir cmd/compile: sort method sets using package height 2018-04-10 00:06:06 +00:00
issue24761.dir cmd/compile: loop to ensure all autogenerated functions are compiled 2018-04-11 23:46:30 +00:00
issue24801.dir cmd/compile: fix check that ensures main.main is a function 2018-04-10 23:34:12 +00:00
issue25055.dir cmd/compile: fix "width not calculated" ICE 2018-07-06 20:25:52 +00:00
issue25984.dir cmd/compile: fix compile failure for lazily resolved shadowed types 2018-06-22 17:57:09 +00:00
issue26341.dir cmd/compile: fix ICE due to missing inline function body 2018-07-12 00:13:37 +00:00
issue27836.dir test: add testcase for gccgo compile failure 2018-09-27 15:01:24 +00:00
issue29610.dir cmd/compile: separate data and function LSyms 2019-01-11 00:45:49 +00:00
issue29612.dir test: make runindir tests pass regardless of whether module mode is in use 2020-03-25 14:19:25 +00:00
issue29919.dir cmd/compile: rename init function from init.ializers back to init 2019-03-18 20:41:12 +00:00
issue30659.dir test: add new test for gccgo compilation problem 2019-03-12 00:04:59 +00:00
issue30862.dir [dev.typeparams] cmd/compile: fix unified IR support for //go:nointerface 2021-07-26 18:43:12 +00:00
issue30907.dir cmd/compile: fix importing rewritten f(g()) calls 2019-03-18 19:43:38 +00:00
issue30908.dir test: new test for issue 30908 2019-03-25 15:00:08 +00:00
issue31053.dir [dev.regabi] cmd/compile: stop mangling SelectorExpr.Sel for ODOTMETH 2020-12-28 07:44:07 +00:00
issue31252.dir cmd/compile: use correct package name for stack object symbol 2019-04-22 17:40:48 +00:00
issue31636.dir runtime: revert init order changes 2019-05-22 11:07:00 +00:00
issue31637.dir test: new test for issue 31637 2019-04-24 19:55:13 +00:00
issue31959.dir cmd/compile: fix typecheck type alias makes wrong export symbol metadata 2019-05-21 17:44:21 +00:00
issue32595.dir cmd/compile: don't mark argument array as noalg 2019-06-25 21:30:39 +00:00
issue32778.dir test: add testcase for gccgo compile failure 2019-07-02 16:34:55 +00:00
issue32901.dir all: use reflect.{Pointer,PointerTo} 2021-10-26 14:24:17 +00:00
issue32922.dir test: add new test case for gccgo compiler bug 2019-07-08 13:20:23 +00:00
issue33013.dir test: new testcase for gccgo compiler bug 2019-07-10 18:26:53 +00:00
issue33020.dir test: new testcase for gccgo bug 2019-07-18 11:34:23 +00:00
issue33020a.dir test: new testcase for gollvm bug 2019-08-29 15:21:31 +00:00
issue33158.dir test: new testcase for gccgo bug 2019-07-18 17:24:59 +00:00
issue33219.dir test: new testcase for gccgo compiler failure 2019-07-23 12:39:03 +00:00
issue33739.dir test: add test that failed with gccgo 2019-08-28 18:35:32 +00:00
issue33866.dir test: add test that failed with gccgo 2019-09-06 12:11:17 +00:00
issue34503.dir test: add testcase for gccgo compiler buglet 2019-09-25 18:10:57 +00:00
issue34577.dir test: revise testcase for new gccgo compiler bug 2019-10-14 16:13:27 +00:00
issue35586.dir test: new test for gollvm compiler crash bug 2019-11-18 21:19:53 +00:00
issue35739.dir test: add test that fails with gofrontend 2020-10-13 22:50:26 +00:00
issue36085.dir test: add a test for gccgo compiler bug of missing type descriptor 2019-12-11 19:48:39 +00:00
issue37513.dir runtime: print instruction bytes when reporting a SIGILL 2020-03-02 18:46:06 +00:00
issue37837.dir cmd/compile: support inlining of type switches 2020-11-06 20:49:11 +00:00
issue40252.dir test: add test case that caused gccgo undefined symbol reference 2020-08-15 00:23:28 +00:00
issue42284.dir [dev.typeparams] cmd/compile: simplify ~r/~b naming 2021-05-26 23:50:32 +00:00
issue42401.dir cmd/compile: make sure linkname'd symbol is non-package 2020-11-09 16:09:16 +00:00
issue43164.dir [dev.regabi] cmd/compile: use ir.Ident for imported identifiers 2020-12-15 07:53:10 +00:00
issue43479.dir [dev.regabi] cmd/compile: fix re-export of parameters 2021-01-04 10:30:08 +00:00
issue43551.dir cmd/compile: fix late expand_calls leaf type for OpStructSelect/OpArraySelect 2021-01-07 19:31:03 +00:00
issue43633.dir [dev.regabi] cmd/compile: stop using Vargen for import/export 2021-01-12 03:15:18 +00:00
issue43962.dir [dev.regabi] go/types: must not import a package called "init" 2021-02-09 14:00:14 +00:00
issue44325.dir cmd/compile: fix check to avoid creating new closure function when typechecking inline body 2021-02-19 19:28:53 +00:00
issue44330.dir cmd/compile: import empty closure function correctly 2021-03-01 20:59:43 +00:00
issue44335.dir cmd/compile: fix import of functions of multiple nested closure 2021-02-23 01:53:51 +00:00
issue44355.dir cmd/compile: declare inlined result params early for empty returns 2021-02-25 19:57:49 +00:00
issue44370.dir cmd/compile: fix missing descend in Addrtaken for closures. 2021-02-26 02:11:50 +00:00
issue44732.dir cmd/compile: fix width not calculated for imported type 2021-03-08 19:43:19 +00:00
issue45503.dir cmd/compile: fix importing of method expressions 2021-04-14 04:02:01 +00:00
issue46653.dir cmd/compile: make map.zero symbol content-addressable 2021-06-09 02:18:34 +00:00
issue47068.dir cmd/compile: do not mark arrays used for map initialization noalg 2021-08-23 19:49:23 +00:00
issue47087.dir cmd/compile: remove special-casing of blank in types.sconv{,2} 2021-07-07 22:29:01 +00:00
issue47131.dir test: add test case that caused a gofrontend compiler crash 2021-08-13 20:47:06 +00:00
issue47185.dir cmd/{compile,link}: fix bug in map.zero handling 2021-07-19 13:27:46 +00:00
issue47201.dir test: re-enable a bunch of tests with types2 2021-12-03 16:24:32 +00:00
issue47317.dir cmd/compile: do not change field offset in ABI analysis 2021-07-22 20:47:59 +00:00
issue48088.dir cmd/compile: fix method expression lookup during import 2021-09-01 02:16:30 +00:00
issue49016.dir cmd/compile: fix crawling of embeddable types during inline 2021-10-20 17:26:58 +00:00
issue49094.dir cmd/compile: only look for struct type when crawling inline body 2021-10-22 00:57:18 +00:00
issue49143.dir cmd/compile: fix generic type handling when crawling inline body 2021-10-27 05:33:58 +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 [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
bug045.go
bug046.go
bug047.go
bug048.go
bug049.go
bug050.go cmd/compile: graceful handle error in noder LoadPackage 2021-03-04 06:35:44 +00:00
bug051.go
bug052.go
bug053.go
bug054.go
bug055.go
bug056.go
bug057.go
bug058.go
bug059.go
bug060.go
bug061.go
bug062.go cmd/compile/internal/types2: avoid "declared but not used" errors for invalid code 2021-09-23 19:41:45 +00:00
bug063.go
bug064.go
bug065.go
bug066.go
bug067.go
bug068.go
bug069.go
bug070.go
bug071.go
bug072.go
bug073.go cmd/compile: implement shifts by signed amounts 2019-02-15 23:13:09 +00:00
bug074.go
bug075.go
bug076.go
bug077.go
bug078.go
bug080.go
bug081.go [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
bug082.go
bug083.go
bug084.go
bug085.go
bug086.go
bug087.go
bug088.go
bug089.go
bug090.go [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
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 [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
bug123.go
bug126.go
bug127.go
bug128.go
bug129.go
bug130.go
bug131.go cmd/compile/internal/types2: avoid "declared but not used" errors for invalid code 2021-09-23 19:41:45 +00:00
bug132.go [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
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 [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug164.go
bug165.go
bug167.go
bug168.go
bug169.go cmd/compile/internal/syntax: better scanner error messages 2020-03-05 00:40:38 +00:00
bug170.go
bug171.go
bug172.go
bug173.go cmd/gc: implement 'for range x {' 2014-07-16 19:27:10 -04:00
bug174.go
bug175.go cmd/compile/internal/types2: avoid "declared but not used" errors for invalid code 2021-09-23 19:41:45 +00:00
bug176.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug177.go
bug178.go
bug179.go
bug180.go
bug181.go
bug182.go
bug183.go
bug184.go
bug185.go
bug186.go
bug187.go
bug188.go cmd/compile: make check2 gracefully exit if it reported errors 2021-03-04 06:36:33 +00:00
bug189.go
bug190.go
bug191.go
bug192.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug193.go go/types, types2: report error for invalid string(1 << s) 2022-01-18 23:59:40 +00:00
bug194.go
bug195.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug196.go
bug197.go
bug198.go
bug199.go
bug200.go
bug201.go
bug202.go
bug203.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug204.go
bug205.go cmd/compile/internal/types2: refactor untyped conversions 2021-03-23 05:11:09 +00:00
bug206.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
bug206.out
bug207.go
bug208.go
bug209.go
bug212.go
bug213.go
bug214.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug215.go [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
bug216.go all: link to https instead of http 2015-07-11 14:36:33 +00:00
bug217.go cmd/compile: be slightly more tolerant in case of certain syntax errors 2017-03-24 20:07:15 +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 [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
bug224.go [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
bug225.go
bug227.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug228.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug228a.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug229.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug230.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug231.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug232.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug233.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug234.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug235.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug236.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug237.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug238.go
bug239.go
bug240.go
bug241.go
bug242.go
bug243.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug244.go
bug245.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug246.go
bug247.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug248.go test: eliminate use of Perl in test/fixedbugs/bug248.go 2018-05-26 15:20:42 +00:00
bug249.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug250.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug251.go test: update for gofrontend error message changes 2020-12-15 21:45:05 +00:00
bug252.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug253.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug254.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug255.go go/types, types2: better error message for invalid array length 2022-02-11 22:01:05 +00:00
bug256.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug257.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug258.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug259.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug260.go
bug261.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug267.go [dev.typeparams] test: rename blank functions 2021-07-28 21:41:07 +00:00
bug269.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug271.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug272.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug273.go runtime: handle 64bits addresses for AIX 2018-11-26 14:06:28 +00:00
bug274.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug275.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug276.go
bug277.go
bug278.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug279.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug280.go [dev.typeparams] test: adjust more test cases to match compiler -G output 2020-12-03 17:55:56 +00:00
bug281.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug282.go
bug283.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug284.go
bug285.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug286.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug287.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug288.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug289.go cmd/compile/internal/types2: avoid "declared but not used" errors for invalid code 2021-09-23 19:41:45 +00:00
bug290.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug291.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug292.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug293.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug294.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug295.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug296.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug297.go cmd/compile: fix wrong condition in tcShift 2021-03-05 18:46:48 +00:00
bug298.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug299.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug300.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug301.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug302.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
bug303.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug304.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug305.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug306.go
bug307.go
bug308.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug309.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug311.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug312.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug313.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug314.go
bug315.go
bug316.go
bug317.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug318.go
bug319.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug320.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug321.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug322.go
bug323.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug324.go
bug325.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug326.go cmd/compile/internal/types2: report types for mismatched call and return statements 2021-11-24 20:57:46 +00:00
bug327.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug328.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
bug328.out
bug329.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug330.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug331.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug332.go test: match gofrontend error messages 2020-11-28 02:31:54 +00:00
bug333.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug334.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug335.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug336.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug337.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug338.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug339.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug340.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug341.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug342.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug343.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug344.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug345.go test: skip test/fixedbugs/bug345.go on windows 2018-06-01 21:46:07 +00:00
bug346.go cmd/gc: transform closure calls to function calls 2015-02-13 12:12:18 +00:00
bug347.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug348.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug349.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug350.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug351.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug352.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug353.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug354.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug355.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug356.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug357.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug358.go cmd/compile: make check2 gracefully exit if it reported errors 2021-03-04 06:36:33 +00:00
bug361.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug362.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug363.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug364.go
bug365.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug366.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug367.go
bug368.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug369.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
bug370.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug371.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug372.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug373.go cmd/compile/internal/gc: reword "declared and not used" error message 2019-10-28 23:34:13 +00:00
bug374.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug375.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug376.go cmd/compile: handle unsafe builtins like universal builtins 2016-10-18 22:34:44 +00:00
bug377.go
bug378.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug379.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug380.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug381.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug382.go
bug383.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug384.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug385_32.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug385_64.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug386.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug387.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug388.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug388a.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug389.go cmd/compile: match Go 1.17 compiler error messages more closely 2021-11-12 23:07:01 +00:00
bug390.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug391.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug392.go
bug393.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug394.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug396.go
bug397.go cmd/compile/internal/types2: refactor untyped conversions 2021-03-23 05:11:09 +00:00
bug398.go test: restore fixedbugs/bug398.go to original version 2017-05-18 21:45:03 +00:00
bug399.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug401.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug402.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug403.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug404.go
bug405.go
bug406.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug407.go
bug409.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
bug409.out
bug410.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug411.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug412.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
bug413.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug414.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug415.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug416.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug417.go
bug418.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug419.go
bug420.go
bug421.go
bug422.go
bug423.go
bug424.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug430.go
bug431.go
bug432.go
bug433.go
bug434.go
bug435.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug436.go
bug437.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug438.go
bug439.go
bug440_32.go
bug440_64.go
bug441.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug442.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug443.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug444.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug445.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug446.go
bug447.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug448.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug449.go
bug450.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug451.go
bug452.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug453.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug454.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug455.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug456.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug457.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug458.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug459.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug460.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug461.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug462.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
bug463.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug464.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug465.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug466.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug467.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug468.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug470.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug471.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug472.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug473.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug474.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug475.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug476.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug477.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug478.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug479.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug480.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug481.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug482.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug483.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug484.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug485.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug486.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug487.go [dev.typeparams] test: finish triaging all outstanding failing tests 2020-12-14 21:28:48 +00:00
bug488.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug489.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug490.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug491.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00: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
bug498.go test: add test case that gccgo miscompiled 2016-08-23 14:19:45 +00:00
bug499.go test: add test case that failed when built with gccgo 2016-11-15 21:25:44 +00:00
bug500.go test: add test case for which gccgo generated incorrect GC info 2016-12-02 21:29:37 +00:00
bug501.go test: add bug501.go, a gccgo compiler crash 2016-12-07 21:55:00 +00:00
bug502.go test: add test that caused gccgo undefined symbol error 2017-06-08 03:58:11 +00:00
bug503.go test: add test case that gccgo crashed on 2017-09-11 06:03:39 +00:00
bug504.go test: add test case that gccgo miscompiled 2017-10-12 19:02:09 +00:00
bug505.go test: add type alias test that caused gccgo to crash 2017-10-26 22:52:53 +00:00
bug506.go test: add fixedbugs/bug506 for gccgo 2018-10-18 04:57:41 +00:00
bug507.go test: add test that gccgo fails to compile 2020-02-22 04:31:41 +00:00
bug508.go test: add test case that gccgo failed to compile 2020-04-10 18:42:07 +00:00
bug509.go test: add a test case that gccgo fails to compile 2020-08-15 01:42:57 +00:00
bug510.go test: add new test that gofrontend failed to handle 2020-12-07 17:29:52 +00:00
bug511.go test: add test case that failed with gccgo 2021-02-25 15:24:25 +00:00
bug512.go test: add bug that failed when run with gccgo 2021-03-17 19:15:18 +00:00
bug513.go test: only run bug513.go if cgo is enabled 2021-03-24 21:20:10 +00:00
bug514.go test: add test case for CL 340609 2021-08-13 20:49:48 +00:00
bug515.go test: add notinheap test that caused a gofrontend crash 2022-02-13 18:51:07 +00:00
bug1515.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
bug13343.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
bug19403.go test/fixedbugs: add test for #19403 2017-03-06 21:39:00 +00:00
gcc61204.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61244.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61246.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61248.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61253.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61254.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61255.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61258.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61264.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61265.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc61273.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc65755.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
gcc67968.go test: add gcc6798, valid code that caused gccgo to crash 2015-11-01 21:17:01 +00:00
gcc78763.go test: add test gcc78763.go that caused a gccgo compiler crash 2016-12-15 22:42:33 +00:00
gcc80226.go test: add test for gccgo compiler crash 2017-03-28 20:05:34 +00:00
gcc89321.go test: add test case that caused a gccgo compiler crash 2019-02-26 23:02:54 +00:00
gcc101994.go test: add test that caused gofrontend compiler crash 2021-08-25 03:13:06 +00:00
issue887.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue1304.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue2615.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue3552.go
issue3705.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue3783.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue3925.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue4066.go
issue4085a.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue4085b.go [dev.regabi] cmd/compile: remove toolstash scaffolding 2021-01-05 21:44:30 +00:00
issue4097.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4099.go cmd/compile: skip escape analysis diagnostics for OADDR 2019-04-02 16:34:03 +00:00
issue4162.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4167.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4215.go cmd/compile, go/types: restore 'too many return values' error for func with no results 2022-01-18 21:43:02 +00:00
issue4232.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue4251.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue4252.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4264.go
issue4283.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4313.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4316.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4323.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4326.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4348.go cmd/internal/obj: reject too large symbols 2020-10-20 18:51:03 +00:00
issue4353.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4359.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4365.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4370.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4396a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4396b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4399.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4405.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4429.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue4448.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4452.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue4458.go [dev.typeparams] merge: merge branch 'dev.regabi' into 'dev.typeparams' 2020-12-14 12:13:36 -08:00
issue4463.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4468.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4470.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue4495.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4510.go
issue4517a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4517b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4517c.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4517d.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue4518.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4529.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4545.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4562.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4585.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4590.go
issue4610.go
issue4614.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4618.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4620.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4654.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4663.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4667.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4734.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4748.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4752.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4776.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4785.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue4813.go
issue4847.go
issue4879.go
issue4909a.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue4909b.go [dev.typeparams] test: update regress tests for types2 2021-05-19 06:26:35 +00:00
issue4932.go
issue4964.go
issue5002.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5056.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5089.go test: update issue5089.go for recent gccgo changes 2018-10-18 17:53:42 +00:00
issue5105.go
issue5125.go
issue5162.go
issue5172.go test: match gofrontend error messages 2020-11-28 02:31:54 +00:00
issue5231.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5244.go
issue5259.go
issue5260.go
issue5291.go
issue5358.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5373.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5470.go
issue5493.go [dev.regabi] test: enable finalizer tests on !amd64 2021-01-05 21:11:31 +00:00
issue5515.go
issue5581.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5607.go
issue5609.go test: re-enable a bunch of tests with types2 2021-12-03 16:24:32 +00:00
issue5614.go
issue5698.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5704.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5753.go
issue5755.go
issue5793.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5809.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5820.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5841.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue5856.go cmd/compile,runtime: redo mid-stack inlining tracebacks 2018-12-28 20:55:36 +00:00
issue5910.go
issue5957.go
issue5963.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6004.go cmd/compile/internal/types2: print "nil" rather than "untyped nil" 2021-11-22 23:51:43 +00:00
issue6036.go cmd/compile: do not fold large offset on ARM64 2017-02-04 16:46:11 +00:00
issue6055.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6131.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6140.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6247.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6269.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6295.go
issue6298.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6399.go
issue6402.go cmd/compile/internal/types2: print "nil" rather than "untyped nil" 2021-11-22 23:51:43 +00:00
issue6403.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue6405.go
issue6406.go
issue6428.go [dev.regabi] cmd/compile: use ir.Ident for imported identifiers 2020-12-15 07:53:10 +00:00
issue6500.go
issue6513.go
issue6572.go cmd/compile: match Go 1.17 compiler error messages more closely 2021-11-12 23:07:01 +00:00
issue6671.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703a.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703b.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703c.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703d.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703e.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703f.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703g.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703h.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703i.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703j.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703k.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703l.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703m.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703n.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703o.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703p.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703q.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703r.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703s.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703t.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703u.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703v.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703w.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703x.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703y.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6703z.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6750.go [dev.typeparams] cmd/compile/internal/types2: adjusted array error message for compiler 2020-12-09 23:54:59 +00:00
issue6772.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue6789.go
issue6847.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue6866.go cmd/internal/gc: use big.Float to represent Mpflt bits 2015-04-02 22:49:47 +00:00
issue6889.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue6899.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
issue6899.out
issue6902.go
issue6964.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue6977.go test: match gofrontend error messages 2020-12-03 20:30:02 +00:00
issue7023.go
issue7044.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7050.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7083.go
issue7129.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue7150.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue7153.go cmd/compile/internal/types2: refactor untyped conversions 2021-03-23 05:11:09 +00:00
issue7214.go
issue7223.go cmd/compile/internal/types2: print "nil" rather than "untyped nil" 2021-11-22 23:51:43 +00:00
issue7272.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7310.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue7316.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7346.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7366.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7405.go
issue7419.go
issue7525.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue7525b.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue7525c.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue7525d.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue7525e.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue7538a.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue7538b.go
issue7547.go
issue7550.go
issue7590.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7648.go
issue7675.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue7690.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7740.go [dev.regabi] cmd/compile: enable rational constant arithmetic 2021-01-25 18:53:24 +00:00
issue7742.go
issue7746.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue7760.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue7794.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7863.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7867.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7884.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7921.go [dev.regabi] cmd/compile: convert OPANIC argument to interface{} during typecheck 2021-01-18 05:55:08 +00:00
issue7944.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7995.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7995b.go
issue7996.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7997.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue7998.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8004.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8011.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8017.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8028.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8036.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8039.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8042.go [dev.typeparams] test: rename blank functions 2021-07-28 21:41:07 +00:00
issue8047.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8047b.go runtime: ensure that Goexit cannot be aborted by a recursive panic/recover 2019-11-04 16:32:38 +00:00
issue8048.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8060.go cmd/gc: generate type alg after calling dowidth. 2014-09-15 18:24:16 +02:00
issue8073.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8074.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8076.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8079.go test: add test for gccgo-specific issue 8079 2014-10-13 12:33:45 -07:00
issue8132.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8139.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8154.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8155.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8158.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8183.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue8280.go cmd/gc: fix import of package with var func returning _ 2014-09-24 16:53:34 -04:00
issue8311.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue8325.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8336.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8347.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8385.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue8438.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue8440.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue8475.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00: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 test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue8606.go cmd/compile: fix ordering problems in struct equality 2020-06-15 18:03:08 +00:00
issue8606b.go test: make issue8606b test more robust 2021-11-18 02:53:02 +00:00
issue8612.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8613.go test: remove amd64 build tag from test 2016-11-23 22:01:32 +00:00
issue8620.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8745.go [dev.typeparams] test: enable some more errorcheck tests 2020-12-04 21:22:23 +00:00
issue8761.go [dev.typeparams] test: rename blank functions 2021-07-28 21:41:07 +00:00
issue8836.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8947.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue8961.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9006.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9017.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9036.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue9076.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue9083.go cmd/compile/internal/types2: avoid "declared but not used" errors for invalid code 2021-09-23 19:41:45 +00:00
issue9110.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9321.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9355.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue9370.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue9432.go [dev.typeparams] test: enable some more errorcheck tests 2020-12-04 21:22:23 +00:00
issue9521.go cmd/compile: match Go 1.17 compiler error messages more closely 2021-11-12 23:07:01 +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 all: skip unsupported tests for js/wasm 2018-04-30 19:39:18 +00:00
issue9608.go cmd/gc: eliminate dead code in switch statements 2015-02-06 19:05:47 +00:00
issue9634.go [dev.typeparams] test: enable some more errorcheck tests 2020-12-04 21:22:23 +00:00
issue9691.go cmd/gc: allow map index expressions in for range statements 2015-01-28 15:14:04 +00:00
issue9731.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +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.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue9862_run.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue10047.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10320.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10332.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10441.go test: change issue10441.go from "build" to "compile" 2021-08-13 21:43:20 +00:00
issue10486.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue10607.go test: re-enable test on riscv64 now that it supports external linking 2021-05-20 16:41:09 +00:00
issue10607a.go test: improve output format of issue10607a.go test 2017-02-07 14:00:27 +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
issue10958.go all: skip unsupported tests for js/wasm 2018-04-30 19:39:18 +00:00
issue10975.go cmd/compile: always accept 1.18 syntax but complain if not 1.18 2021-08-25 23:43:53 +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/internal/types2: refactor untyped conversions 2021-03-23 05:11:09 +00:00
issue11326b.go test: permit "exponent too large" error 2020-12-18 23:47:11 +00:00
issue11354.go cmd/compile: add Type.WidthCalculated 2017-03-28 18:06:09 +00:00
issue11359.go cmd/compile: reject identifiers beginning with non-ASCII digit 2015-11-16 20:38:42 +00:00
issue11361.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue11362.go [dev.regabi] cmd/compile: backport changes from dev.typeparams (9456804) 2021-01-25 01:31:37 +00:00
issue11369.go cmd/compile: fix half multiply issue 2015-06-26 15:55:22 +00:00
issue11370.go cmd/compile: "abc"[1] is not an ideal constant 2016-10-13 17:41:04 +00:00
issue11371.go cmd/compile/internal/types2: refactor untyped conversions 2021-03-23 05:11:09 +00:00
issue11590.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue11610.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue11610a.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue11614.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue11656.go test: workaround SIGILL on issue11656 on aix 2022-01-11 15:28:40 +00:00
issue11674.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue11699.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11737.go go/types, types2: better error messages for comparisons 2022-02-04 23:42:25 +00:00
issue11750.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11771.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue11790.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue11945.go [dev.typeparams] cmd/compile: force untyped constants from types2 to expected kind 2021-01-26 01:50:30 +00:00
issue11987.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12006.go [dev.typeparams] cmd/compile: simplify ~r/~b naming 2021-05-26 23:50:32 +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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12226.go cmd/compile: fix register allocation for == operator 2015-08-25 18:10:14 +00:00
issue12347.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue12411.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +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
issue12536.go cmd/compile: add test for Issue 12536 2017-04-14 14:16:09 +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 [dev.typeparams] cmd/compile: simplify ~r/~b naming 2021-05-26 23:50:32 +00:00
issue12621.go test: add test for rounding to positive zero 2018-02-14 20:13:05 +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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +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 all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13162.go cmd/compile: improve string iteration performance 2016-08-30 18:17:20 +00:00
issue13169.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13171.go all: spell "marshal" and "unmarshal" consistently 2016-11-12 00:13:35 +00:00
issue13248.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue13261.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13262.go cmd/compile: fix bogus "fallthrough statement out of place" 2016-09-26 15:46:44 +00:00
issue13263.go cmd/compile: fix static-initialization compilation failure 2016-12-06 06:14:59 +00:00
issue13265.go cmd/compile: only support -race and -msan where they work 2018-08-21 03:38:27 +00:00
issue13266.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue13268.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue13273.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue13274.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue13319.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13337.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13365.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue13415.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue13471.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue13480.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue13485.go [dev.typeparams] cmd/compile/internal/types2: adjusted qualified identifier error message for compiler 2020-12-09 23:56:19 +00:00
issue13539.go [dev.typeparams] cmd/compile/internal/types2: adjusted qualified identifier error message for compiler 2020-12-09 23:56:19 +00:00
issue13559.go cmd/compile/internal/types2: refactor untyped conversions 2021-03-23 05:11:09 +00:00
issue13587.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13684.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13777.go cmd/compile: suppress export of Note field within exported bodies 2016-01-05 15:42:12 +00:00
issue13779.go cmd/compile, go/types: omit needless word in error message 2016-05-24 15:07:16 +00:00
issue13799.go [dev.regabi] cmd/compile: convert OPANIC argument to interface{} during typecheck 2021-01-18 05:55:08 +00:00
issue13821.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue13821b.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue14006.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue14010.go test: match gofrontend error messages 2020-12-10 18:34:40 +00:00
issue14136.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue14164.go cmd/compile: fix parsing of inlined interface types with unexported methods 2016-02-01 20:29:19 +00:00
issue14321.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue14331.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14405.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14520.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue14520a.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue14540.go cmd/compile: eliminate OXFALL 2017-09-19 18:08:50 +00:00
issue14553.go cmd/compile: update vendored math/big to latest version 2016-03-22 17:09:29 +00:00
issue14591.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14636.go test: recognize and use gc build tag 2020-12-18 00:10:44 +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 all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue14725.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue14729.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue14988.go cmd/compile: make enqueued map keys fail validation on forward types 2016-04-13 08:43:12 +00:00
issue14999.go [dev.typeparams] cmd/compile: allow go'd closure to escape when compiling runtime 2021-06-04 17:00:19 +00:00
issue15002.go cmd/compile,runtime: provide index information on bounds check failure 2019-03-18 17:33:38 +00:00
issue15013.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15039.go cmd/compile, runtime: fix pedantic int->string conversions 2016-03-31 10:28:23 +00:00
issue15042.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15055.go [dev.typeparams] all: merge dev.regabi (77365c5) into dev.typeparams 2021-01-05 10:13:59 -08:00
issue15071.go test/fixedbugs: fix some tests will not be run 2019-05-23 01:39:41 +00:00
issue15084.go test: add test for issue 15084 2016-04-25 19:20:40 +00:00
issue15091.go cmd/compile: only support -race and -msan where they work 2018-08-21 03:38:27 +00:00
issue15141.go cmd/compile: added test to ensure that accidental fix remains 2016-10-25 15:29:27 +00:00
issue15175.go all: make copyright headers consistent with one space after period 2016-05-02 13:43:18 +00:00
issue15252.go cmd/compile: fix register size for ODOTPTR result 2016-04-14 21:19:12 +00:00
issue15277.go cmd/compile: args no longer live until end-of-function 2016-09-19 16:54:35 +00:00
issue15281.go all: add empty line between copyright header and package clause 2020-08-17 09:45:44 +00:00
issue15303.go cmd/compile: when inlining ==, don’t take the address of the values 2016-08-25 17:51:10 +00:00
issue15311.go cmd/compile: a dot expression can not be a struct literal key 2016-04-18 15:09:47 +00:00
issue15329.go cmd/compile: handle unsafe.Pointer(f()) correctly 2016-05-18 14:01:22 +00:00
issue15439.go cmd/compile: treat empty and absent struct field tags as identical 2016-04-25 21:28:45 +00:00
issue15470.go test: added test case for (fixed) issue 15470 2016-04-29 00:42:13 +00:00
issue15514.go cmd/compile: export package for _ (blank) struct fields 2016-08-23 23:40:36 +00:00
issue15528.go cmd/compile: statically initialize some interface values 2016-09-12 14:31:26 +00:00
issue15548.go cmd/compile: verify imported types after they are fully imported 2016-05-05 20:31:30 +00:00
issue15550.go cmd/compile/internal/gc: add comment and test for #15550 2017-02-02 04:25:23 +00:00
issue15572.go cmd/compile: fix binary export of composite literals with implicit types 2016-05-09 06:16:07 +00:00
issue15585.go cmd/compile: correct sparseSet probes in regalloc to avoid index error 2016-05-09 18:35:44 +00:00
issue15602.go test: add test for issue 15602 2016-05-08 22:59:43 +00:00
issue15604.go test: add test for unlowered ITab 2016-05-10 16:30:34 +00:00
issue15609.go test: skip a test on failing test on nacl/386 2019-05-23 20:48:20 +00:00
issue15611.go cmd/compile/internal/syntax: better scanner error messages 2020-03-05 00:40:38 +00:00
issue15646.go cmd/compile: clean up encoding of method expressions and add test 2016-05-11 19:23:04 +00:00
issue15722.go test: add test for gccgo issue #15722 2016-08-23 20:43:59 +00:00
issue15733.go cmd/compile: large ptr literals must escape 2016-05-19 15:12:01 +00:00
issue15747.go runtime: remove legacy eager write barrier 2018-02-13 16:34:46 +00:00
issue15747b.go all: fix article typos 2017-09-15 02:39:16 +00:00
issue15838.go cmd/compile: correctly import labels, gotos, and fallthroughs 2016-05-26 00:32:03 +00:00
issue15895.go test: add test for issue 15895 2016-09-04 00:15:41 +00:00
issue15898.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue15902.go cmd/compile: for arm, zero unaligned memory 1 byte at a time 2016-06-01 14:14:13 +00:00
issue15920.go cmd/compile: correctly export underlying type of predecl. error type 2016-06-01 21:32:46 +00:00
issue15926.go cmd/link: avoid name collision with DWARF .def suffix 2016-06-03 16:56:29 +00:00
issue15961.go cmd/compile: use fake package for allocating autos 2016-06-07 06:04:23 +00:00
issue15975.go cmd/compile: nilcheck interface value in go/defer interface call for SSA 2016-06-08 20:35:53 +00:00
issue15988.go cmd/compile: cgen_append can handle complex targets 2016-06-08 00:01:09 +00:00
issue15992.go test: fix issue 15992 test wrong function call 2020-03-11 06:06:20 +00:00
issue15992.out cmd/compile: rewrite f(g()) for multi-value g() during typecheck 2019-03-14 21:00:20 +00:00
issue16008.go test/fixedbugs: fix go directive of issue16008.go 2021-11-26 13:06:40 +00:00
issue16016.go cmd/compile: for tail calls in stubs, ensure args are alive 2016-06-09 19:32:51 +00:00
issue16037_run.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue16095.go cmd/compile: keep heap pointer for escaping output parameters live 2016-06-27 16:48:48 +00:00
issue16130.go all: make spelling consistent 2016-12-08 23:22:37 +00:00
issue16133.go cmd/compile: fix error msg mentioning different packages with same name 2016-06-22 00:12:55 +00:00
issue16193.go cmd/compile: avoid function literal name collision with "glob" 2016-06-27 21:05:28 +00:00
issue16249.go cmd/compile: mark live heap-allocated pparamout vars as needzero 2016-07-02 00:40:40 +00:00
issue16306.go cmd/compile: allow unsafe.Pointer(nil) as static data 2016-08-16 17:47:50 +00:00
issue16317.go cmd/compile: fix binary import of unsafe.Pointer literals 2016-08-23 18:03:07 +00:00
issue16331.go runtime: fix getArgInfo for deferred reflection calls 2016-10-17 18:57:01 +00:00
issue16369.go cmd/compile/internal/gc: export interface embedding information 2017-03-21 02:35:40 +00:00
issue16428.go test: re-enable a bunch of tests with types2 2021-12-03 16:24:32 +00:00
issue16439.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue16515.go cmd/compile: fix possible spill of invalid pointer with DUFFZERO on AMD64 2016-07-29 01:09:55 +00:00
issue16616.go cmd/compile: qualify unexported fields of unnamed types 2016-08-26 11:46:15 +00:00
issue16733.go cmd/compile: don't fold >32bit constants into a MULQ 2016-08-16 16:46:48 +00:00
issue16741.go cmd/compile: CSE copied tuple selectors 2016-08-17 21:03:26 +00:00
issue16760.go fix typo in issue16760.go 2021-02-22 22:53:51 +00:00
issue16804.go cmd/compile: fix compilation of math.Sqrt when used as a statement 2016-08-21 16:49:48 +00:00
issue16870.go cmd/compile: fix comma-ok assignments for non-boolean ok 2016-09-14 22:11:38 +00:00
issue16948.go cmd/compile: fix scheduling of memory-producing tuple ops 2016-09-01 14:25:46 +00:00
issue16949.go [dev.typeparams] cmd/compile/internal/types2: adjusted qualified identifier error message for compiler 2020-12-09 23:56:19 +00:00
issue16985.go cmd/compile: mark some AMD64 atomic ops as clobberFlags 2016-09-06 14:26:18 +00:00
issue17005.go cmd/compile: add BVC/BVS to branch ops in ppc64/prog.go 2016-09-07 01:30:34 +00:00
issue17038.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue17039.go test: add test for issue 17039 2016-10-12 14:57:26 +00:00
issue17111.go cmd/compile: unwrap fewer CONVNOPs in staticassign 2016-09-15 14:08:10 +00:00
issue17194.go cmd/compile: force folding of MOVDaddr into storezero 2016-10-04 16:10:27 +00:00
issue17270.go cmd/compile: don't crash on (unsafe.Sizeof)(0) 2016-09-28 23:13:53 +00:00
issue17318.go cmd/compile: trim function name prefix from escape diagnostics 2019-09-16 15:30:51 +00:00
issue17328.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue17381.go cmd/internal/obj: save link register in leaf function with non-empty frame on PPC64, ARM64, S390X 2016-10-25 21:44:32 +00:00
issue17449.go cmd/compile: only support -race and -msan where they work 2018-08-21 03:38:27 +00:00
issue17551.go cmd/compile: preserve type information in inrange 2016-10-24 22:57:21 +00:00
issue17588.go cmd/compile: only check return for valid functions 2021-03-05 18:45:59 +00:00
issue17596.go cmd/compile: emit assignments after calls in the right order 2016-10-27 16:52:30 +00:00
issue17631.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue17640.go test: add test for gccgo issue #17640 2016-10-29 01:16:25 +00:00
issue17645.go test: re-enable a bunch of tests with types2 2021-12-03 16:24:32 +00:00
issue17710.go cmd/compile: On a runtime.KeepAlive call, keep whole variable alive 2016-11-02 21:29:41 +00:00
issue17752.go cmd/compile: prevent Noalg from breaking user types 2016-11-04 00:11:28 +00:00
issue17758.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue17918.go cmd/compile: in cse, allow for new ssa values 2016-11-18 16:31:27 +00:00
issue18089.go cmd/compile: add test for blank field in composite literal 2017-04-29 20:32:54 +00:00
issue18092.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue18149.go cmd/compile: correctly parse //line filename:line where filename contains ':' 2016-12-01 22:01:33 +00:00
issue18231.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue18331.go cmd/compile: reject unknown //go: comments in std library 2017-06-06 22:28:17 +00:00
issue18392.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue18393.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue18410.go cmd/compile: rewrite literal.method to ensure full initialization 2017-01-06 20:35:52 +00:00
issue18419.go cmd/compile: don't use ."" as a pkg prefix 2017-06-09 16:13:52 +00:00
issue18459.go cmd/compile: provide line number for cgo directive error (fix a TODO) 2017-02-02 21:24:50 +00:00
issue18595.go cmd/compile: using CONV instead of CONVNOP for interface conversions 2017-02-06 20:00:05 +00:00
issue18636.go test: add test for issue 18636 2017-05-18 21:33:05 +00:00
issue18640.go cmd/compile: reintroduce work-around for cyclic alias declarations 2018-11-05 20:30:19 +00:00
issue18655.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue18661.go test: add extra test for issue18661 2017-02-02 04:57:33 +00:00
issue18725.go cmd/compile: don't use nilcheck information until the next block 2017-01-20 20:21:55 +00:00
issue18747.go cmd/compile/internal/syntax: better error for malformed 'if' statements 2017-02-13 22:02:36 +00:00
issue18808.go cmd/compile: use CMPWU for 32-bit or smaller unsigned Geq on ppc64{,le} 2017-01-27 16:04:04 +00:00
issue18882.go cmd/compile: provide line number for cgo directive error (fix a TODO) 2017-02-02 21:24:50 +00:00
issue18895.go cmd/compile: fix exporting of function bodies 2017-06-15 04:17:30 +00:00
issue18906.go cmd/compile: fix type propagation through s390x SSA rules 2017-02-03 21:27:21 +00:00
issue18911.go runtime: slightly better error message for assertion panics with identical looking types 2018-06-05 00:29:50 +00:00
issue18915.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue18994.go cmd/compile: handle DOT STRUCTLIT for zero-valued struct in SSA 2017-02-08 21:01:51 +00:00
issue19012.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue19028.go cmd/compile: fix detection of calls to reflect.Method 2017-06-14 21:57:56 +00:00
issue19040.go cmd/compile: make panicwrap argument-free 2017-02-11 23:27:35 +00:00
issue19056.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue19078.go cmd/compile: zero return parameters earlier 2017-03-13 19:39:15 +00:00
issue19084.go cmd/compile: undo special handling of zero-valued STRUCTLIT 2017-02-14 18:57:56 +00:00
issue19113.go cmd/compile: implement shifts by signed amounts 2019-02-15 23:13:09 +00:00
issue19137.go cmd/internal/obj/arm64: fix handling of unaligned offset between 256 and 504 2017-10-05 22:28:17 +00:00
issue19168.go cmd/compile: add missing WBs for reflect.{Slice,String}Header.Data 2017-03-02 17:21:50 +00:00
issue19182.go all: skip unsupported tests for js/wasm 2018-04-30 19:39:18 +00:00
issue19201.go test/fixedbugs: add a test for 19201 2017-03-28 19:07:23 +00:00
issue19217.go cmd/compile: repaired loop-finder to handle trickier nesting 2017-02-23 22:28:44 +00:00
issue19246.go cmd/compile: evaluate zero-sized values converted to interfaces 2017-02-24 19:09:41 +00:00
issue19261.go cmd/compile: record InlCost in export data 2017-10-11 23:20:44 +00:00
issue19275.go cmd/compile: added cheapexpr call to simplify operand of CONVIFACE 2017-02-25 04:53:23 +00:00
issue19323.go cmd/compile: restore original assignment error messages 2021-09-23 19:41:41 +00:00
issue19359.go cmd/compile: avoid mapaccess at m[k]=append(m[k].. 2018-03-20 01:47:07 +00:00
issue19467.go cmd/compile: fix names of inlined methods from other packages 2017-03-29 17:27:49 +00:00
issue19482.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue19507.go runtime: restore arm assembly stubs for div/mod 2017-06-15 03:51:03 +00:00
issue19515.go cmd/compile: don't spill rematerializeable value when resolving merge edges 2017-03-14 22:55:52 +00:00
issue19548.go cmd/compile/internal/gc: mark generated wrappers as DUPOK 2017-03-15 00:27:13 +00:00
issue19555.go cmd/compile: ensure TESTQconst AuxInt is in range 2017-03-15 21:44:08 +00:00
issue19610.go cmd/compile: don't permit declarations in post statement of for loop 2017-03-20 20:02:34 +00:00
issue19632.go cmd/compile: add regress test for issue 19632 2017-03-21 19:52:45 +00:00
issue19658.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue19667.go test: match gofrontend error messages 2020-12-14 17:26:06 +00:00
issue19671.go cmd/compile: only SSA [0]T when T is SSA-able 2017-03-24 16:53:22 +00:00
issue19678.go cmd/compile: ignore all unreachable values during simple phi insertion 2017-03-24 18:00:15 +00:00
issue19679.go cmd/compile: don't export dead code in inlineable fuctions 2017-03-24 17:21:05 +00:00
issue19696.go cmd/compile: only SSA [0]T when T is SSA-able 2017-03-24 16:53:22 +00:00
issue19699.go cmd/compile: eliminate dead code in if statements after typechecking 2017-04-18 17:13:30 +00:00
issue19699b.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue19705.go cmd/compile: eliminate dead code in if statements after typechecking 2017-04-18 17:13:30 +00:00
issue19710.go test: add test of deferred delete 2017-05-15 19:15:01 +00:00
issue19743.go cmd/compile: skip escape analysis diagnostics for OADDR 2019-04-02 16:34:03 +00:00
issue19764.go cmd/link: canonicalize the "package" of dupok text symbols 2017-04-02 03:25:02 +00:00
issue19783.go cmd/compile: avoid infinite loops in dead blocks during phi insertion 2017-03-30 17:06:08 +00:00
issue19799.go cmd/compile: retain source positions of arguments to inlined calls 2017-06-02 13:41:01 +00:00
issue19880.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue19911.go cmd/compile: make iface == iface const evaluation respect != 2017-04-10 20:05:56 +00:00
issue19947.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue19977.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue20014.go test: add a field tracking test 2021-04-21 20:24:34 +00:00
issue20014.out test: add a field tracking test 2021-04-21 20:24:34 +00:00
issue20029.go cmd/compile: zero ambiguously live variables at VARKILLs 2017-04-20 23:47:43 +00:00
issue20097.go cmd/compile: ignore types when considering tuple select for CSE 2017-05-09 23:22:00 +00:00
issue20145.go cmd/compile: dowidth more in the front end 2017-04-27 22:10:32 +00:00
issue20162.go cmd/compile: check width of embedded interfaces in expandiface 2017-04-28 20:07:38 +00:00
issue20174.go cmd/compile: checkwidth T when constructing *T 2017-04-30 00:45:42 +00:00
issue20185.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue20227.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue20232.go cmd/compile: do not report error for invalid constant 2021-03-05 18:46:43 +00:00
issue20233.go cmd/compile: suppress duplicate type errors 2017-05-04 21:53:49 +00:00
issue20245.go cmd/compile: don't expand invalid embedded interface 2021-03-05 18:46:16 +00:00
issue20250.go [dev.typeparams] cmd/compile: simplify interface conversions 2021-08-09 16:10:20 +00:00
issue20298.go cmd/compile: make "imported and not used" errors deterministic 2017-05-09 21:14:56 +00:00
issue20333.go cmd/compile: avoid checkwidth of [...] arrays 2017-05-11 18:18:55 +00:00
issue20335.go cmd/compile: fix store chain in schedule pass 2017-05-11 22:16:08 +00:00
issue20415.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue20529.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue20530.go cmd/compile: fix subword store/load elision for MIPS 2017-05-31 14:44:02 +00:00
issue20602.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue20682.go cmd/compile: add regress test for #20682 2017-06-15 22:01:35 +00:00
issue20739.go cmd/compile: refactor onebitwalktype1 2017-09-20 18:11:52 +00:00
issue20749.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue20780.go [dev.regabi] cmd/compile: deref PAUTOHEAPs during SSA construction 2021-01-10 08:01:49 +00:00
issue20780b.go [dev.regabi] cmd/compile: deref PAUTOHEAPs during SSA construction 2021-01-10 08:01:49 +00:00
issue20789.go test/fixedbugs: Close opening parenthesis in comment in issue20789.go 2017-06-27 00:01:20 +00:00
issue20811.go cmd/compile: fix slice-in-bound check on amd64p32 2017-06-28 16:20:53 +00:00
issue20812.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue20813.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue20923.go test: add a test that gccgo miscompiled 2018-02-14 20:13:07 +00:00
issue21048.go cmd/compile: fix unaligned loads/stores to global variables on s390x 2017-07-19 14:22:48 +00:00
issue21120.go cmd/compile: consider exported flag in namedata 2017-07-24 18:05:00 +00:00
issue21221.go cmd/compile: fix constant pointer comparison failure 2018-04-09 23:19:45 +00:00
issue21253.go test: add test that caused gccgo compiler crash 2017-08-17 18:09:52 +00:00
issue21256.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue21273.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue21317.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue21576.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue21655.go cmd/compile: fix large load/store offsets on 386 2017-12-08 03:53:18 +00:00
issue21687.go cmd/compile: fix evaluation order for OASOP 2017-09-05 18:10:17 +00:00
issue21709.go cmd/compile: use clearer error message for stuct literal 2020-09-12 08:31:49 +00:00
issue21770.go test: add test that caused gccgo incorrect compilation 2017-09-09 13:32:23 +00:00
issue21808.go cmd/compile: fix println() 2017-09-08 20:10:48 +00:00
issue21808.out cmd/compile: fix println() 2017-09-08 20:10:48 +00:00
issue21879.go cmd/compile: fix stack frame info for calls in receiver slot 2017-09-19 18:35:24 +00:00
issue21879.out cmd/compile: fix stack frame info for calls in receiver slot 2017-09-19 18:35:24 +00:00
issue21882.go cmd/compile: fix compiler crash on recursive types 2017-09-18 21:49:43 +00:00
issue21887.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
issue21887.out cmd/compile: fix print/println when input is uint 2017-09-26 04:08:38 +00:00
issue21934.go cmd/compile: lookup methods of base type for named pointer type 2019-10-04 18:34:18 +00:00
issue21963.go cmd/compile: fix sign-extension merging rules 2017-09-26 16:24:08 +00:00
issue21979.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue21988.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue22063.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue22076.go [dev.typeparams] test: rename blank functions 2021-07-28 21:41:07 +00:00
issue22083.go cmd/compile: fix merge rules for panic calls 2017-10-03 09:27:37 +00:00
issue22164.go cmd/compile/internal/syntax: better recovery after missing closing parentheses 2017-10-17 01:04:56 +00:00
issue22198.go cmd/compile: fold constant comparisions into SETxxmem ops. 2017-10-11 18:23:09 +00:00
issue22200.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue22200b.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue22305.go test: add new test that gccgo failed to compile 2018-02-15 03:37:20 +00:00
issue22326.go cmd/compile: fix package initialization ordering 2019-05-29 20:29:04 +00:00
issue22326.out cmd/compile: fix package initialization ordering 2019-05-29 20:29:04 +00:00
issue22327.go cmd/compile: in append(f()), type convert appended items 2018-10-22 17:30:57 +00:00
issue22344.go cmd/compile: allow iota inside function in a ConstSpec 2019-09-12 06:46:57 +00:00
issue22351.go cmd/compile: silence unnecessary unsafe error 2017-10-24 02:28:02 +00:00
issue22389.go cmd/compile: do not set ONAME type when evaluated in type context 2021-03-05 18:47:09 +00:00
issue22429.go cmd/compile: make sure not to use SP as an index register 2017-10-26 02:45:05 +00:00
issue22458.go cmd/compile: fix runtime.KeepAlive 2017-10-30 19:55:02 +00:00
issue22581.go cmd/compile/internal/syntax: better syntax errors for typos in if/switch/for headers 2017-11-06 23:17:24 +00:00
issue22605.go cmd/compile: don't put Noalg types in typelinks 2017-11-07 22:29:48 +00:00
issue22660.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue22662.go cmd/compile: track line directives w/ column information 2018-02-26 18:32:03 +00:00
issue22662b.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue22683.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
issue22683.out cmd/compile: add test for array decomposition 2017-11-13 20:22:22 +00:00
issue22781.go cmd/compile: fix mapassign_fast* routines for pointer keys 2017-11-22 04:30:27 +00:00
issue22794.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue22822.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue22877.go cmd/compile: make -asmhdr work with type aliases 2017-11-29 20:40:41 +00:00
issue22881.go cmd/compile: avoid mapaccess at m[k]=append(m[k].. 2018-03-20 01:47:07 +00:00
issue22904.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue22921.go cmd/compile: don't expand invalid embedded interface 2021-03-05 18:46:16 +00:00
issue22941.go cmd/compile: fix DWARF type symbol buglet 2017-12-01 18:52:50 +00:00
issue22962.go cmd/compile: fix bug in DWARF inl handling of unused autos 2017-12-04 18:36:11 +00:00
issue23017.go [dev.regabi] cmd/compile: fix map assignment order 2021-01-03 19:48:18 +00:00
issue23093.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue23094.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue23116.go cmd/compile/internal/gc: reword "declared and not used" error message 2019-10-28 23:34:13 +00:00
issue23179.go cmd/compile: fix corner case in DWARF inline info generation 2017-12-19 19:00:42 +00:00
issue23188.go test: add order of evaluation test case that gccgo got wrong 2018-07-10 21:30:26 +00:00
issue23298.go cmd/compile: allow converting defined string types to []rune 2018-02-15 00:25:21 +00:00
issue23305.go cmd/compile: disable "redundant zeroextensions" optimization for Select on AMD64 2018-01-02 21:08:35 +00:00
issue23311.go cmd/compile: allow bodyless function if it is linkname'd 2018-11-26 20:00:59 +00:00
issue23414.go cmd/compile: fix typechecking of untyped boolean expressions 2018-02-15 01:00:06 +00:00
issue23489.go test: add test case for incorrect gccgo compilation error 2018-02-14 20:13:22 +00:00
issue23504.go cmd/compile: reset branch prediction when deleting a branch 2018-02-20 00:56:13 +00:00
issue23521.go cmd/compile: make DCE remove nodes after terminating if 2018-04-03 15:19:41 +00:00
issue23522.go cmd/compile: don't let spills clobber arguments 2018-01-23 21:51:55 +00:00
issue23536.go cmd/compile: fix conv of slice of user-define byte type to string 2022-01-07 18:40:16 +00:00
issue23545.go cmd/compile: make sure alg functions are generated when we call them 2018-07-10 01:20:45 +00:00
issue23546.go cmd/compile: make sure alg functions are generated when we call them 2018-07-10 01:20:45 +00:00
issue23586.go cmd/compile/internal/syntax: more tolerant handling of missing function invocation in go/defer 2018-02-15 01:48:16 +00:00
issue23587.go cmd/compile/internal/syntax: add "~" operator 2021-04-07 05:19:41 +00:00
issue23609.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue23664.go cmd/compile/internal/syntax: better error message for incorrect if/switch header 2018-04-03 21:57:37 +00:00
issue23719.go cmd/compile: use unsigned loads for multi-element comparisons 2018-02-06 18:24:33 +00:00
issue23732.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue23734.go runtime: panic on uncomparable map key, even if map is empty 2018-12-29 01:00:54 +00:00
issue23780.go cmd/compile: initialize sparse slice literals dynamically 2018-11-26 22:50:48 +00:00
issue23781.go cmd/compile: fix constant index bounds check and error message 2018-11-30 23:48:00 +00:00
issue23812.go cmd/compile: fix constant folding of right shifts 2018-02-14 00:03:36 +00:00
issue23823.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue23837.go cmd/compile: when comparing 0-size types, make sure expr side-effects survive 2018-10-30 17:45:19 +00:00
issue23912.go test: add test case where gccgo incorrectly rejected aliases 2018-02-20 01:57:14 +00:00
issue24120.go cmd/compile: fix inlining of constant if statements 2018-02-27 19:27:32 +00:00
issue24159.go cmd/compile: prevent detection of wrong duplicates 2018-03-07 01:26:00 +00:00
issue24173.go cmd/compile: fix unexpected type alias crash 2018-02-28 20:18:37 +00:00
issue24187.go runtime: fix amd64p32 indexbytes in presence of overflow 2018-03-01 16:53:33 +00:00
issue24339.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue24419.go internal/bytealg: specify argmaps for exported functions 2018-07-10 17:13:53 +00:00
issue24449.go cmd/compile: mark LAA and LAAG as clobbering flags on s390x 2018-03-20 09:44:50 +00:00
issue24470.go cmd/compile: do not set type for OTYPESW 2021-03-05 18:46:36 +00:00
issue24488.go runtime: proper panic tracebacks with mid-stack inlining 2019-01-04 00:00:24 +00:00
issue24491a.go cmd/compile: fix mishandling of unsafe-uintptr arguments with call method in go/defer 2021-02-26 10:18:26 +00:00
issue24491b.go test: fix flaky test for issue24491 2020-09-13 07:54:42 +00:00
issue24503.go cmd/compile/internal/ssa: handle symbol address comparisons consistently 2018-03-31 21:37:13 +00:00
issue24547.go cmd/compile: fix method set computation for shadowed methods 2018-03-27 18:56:36 +00:00
issue24651a.go [dev.typeparams] cmd/compile/internal/inline: refactor mkinlcall 2021-05-27 23:40:56 +00:00
issue24651b.go [dev.typeparams] cmd/compile/internal/inline: refactor mkinlcall 2021-05-27 23:40:56 +00:00
issue24693.go cmd/compile: sort method sets using package height 2018-04-10 00:06:06 +00:00
issue24693.out cmd/compile: sort method sets using package height 2018-04-10 00:06:06 +00:00
issue24760.go cmd/compile: don't constant-fold non-Go constants in the frontend 2018-11-26 22:49:57 +00:00
issue24761.go cmd/compile: loop to ensure all autogenerated functions are compiled 2018-04-11 23:46:30 +00:00
issue24763.go cmd/compile: don't crash in untyped expr to interface conversion 2018-06-28 23:01:22 +00:00
issue24799.go cmd/compile: generate load without DS relocation for go.string on ppc64le 2018-04-20 16:16:47 +00:00
issue24801.go cmd/compile: fix check that ensures main.main is a function 2018-04-10 23:34:12 +00:00
issue24817.go cmd/compile: fix evaluation of "" < s 2018-04-12 19:38:37 +00:00
issue24937.go cmd/compile: avoid runtime call during switch string(byteslice) 2018-04-21 00:50:50 +00:00
issue24939.go cmd/compile: reintroduce work-around for cyclic alias declarations 2018-11-05 20:30:19 +00:00
issue25006.go cmd/compile/internal/ssa: fix endless compile loop on AMD64 2018-04-24 16:20:41 +00:00
issue25055.go cmd/compile: fix "width not calculated" ICE 2018-07-06 20:25:52 +00:00
issue25101.go cmd/compile: revert internal parameter rename (from ".anonX" to "") before export 2018-06-05 20:22:07 +00:00
issue25322.go test: remove rundircmpout and cmpout actions 2018-05-31 17:36:45 +00:00
issue25322.out cmd/compile: fix zero extend after float->int conversion 2018-05-10 17:32:43 +00:00
issue25507.go test: match gofrontend error messages 2020-12-14 17:37:52 +00:00
issue25516.go cmd/compile: update WBLoads during deadcode 2018-05-29 17:45:36 +00:00
issue25727.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue25741.go cmd/compile: fix OffPtr with negative offset on wasm 2018-06-06 14:40:25 +00:00
issue25776.go cmd/compile: ensure that operand of ORETURN is not double-walked 2018-06-14 20:08:10 +00:00
issue25897a.go runtime: get map of args of unstarted goroutines like we do for defers 2019-06-03 18:50:30 +00:00
issue25897b.go runtime: get map of args of unstarted goroutines like we do for defers 2019-06-03 18:50:30 +00:00
issue25958.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue25966.go cmd/compile: fold offset into address on Wasm 2018-06-27 14:30:00 +00:00
issue25984.go cmd/compile: fix compile failure for lazily resolved shadowed types 2018-06-22 17:57:09 +00:00
issue25993.go cmd/compile: convert uint32 to int32 in ARM constant folding rules 2018-06-22 16:25:32 +00:00
issue26024.go cmd/compile: handle degenerate write barrier case 2018-07-12 19:06:09 +00:00
issue26043.go cmd/compile: avoid remainder in loopbce when increment=0 2018-06-25 20:36:42 +00:00
issue26094.go runtime: don't say "different packages" if they may not be different 2018-07-11 21:34:05 +00:00
issue26097.go cmd/compile: mark CMOVLEQF, CMOVWEQF as cloberring AX 2018-06-28 18:39:56 +00:00
issue26105.go cmd/compile: add LocalAddr that takes SP,mem operands 2018-07-12 18:45:31 +00:00
issue26116.go cmd/compile: ensure that loop condition is detected correctly 2018-07-09 18:23:39 +00:00
issue26120.go cmd/compile: check SSAability in handling of INDEX of 1-element array 2018-06-29 12:05:05 +00:00
issue26153.go cmd/compile: keep autos whose address reaches a phi 2018-07-02 19:43:07 +00:00
issue26163.go [dev.typeparams] cmd/compile: make softfloat mode work with register ABI 2021-08-03 16:14:24 +00:00
issue26248.go test: add test for gccgo bug #26248 2018-07-10 01:19:37 +00:00
issue26335.go test: add test case that failed with gccgo 2018-07-11 18:14:35 +00:00
issue26340.go test: add test of valid code that gccgo failed to compile 2018-07-12 05:29:12 +00:00
issue26341.go cmd/compile: fix ICE due to missing inline function body 2018-07-12 00:13:37 +00:00
issue26407.go cmd/compile: keep autos if their address reaches a control value 2018-07-17 14:58:54 +00:00
issue26411.go cmd/compile: simplified test case (cleanup) 2018-10-16 23:11:02 +00:00
issue26416.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue26426.go cmd/compile: add test for OPmodify ops clobbering flags 2018-07-19 16:24:53 +00:00
issue26438.go cmd/compile: fix an arm64's comparison bug 2018-07-18 14:15:05 +00:00
issue26495.go test: add test for gccgo bug #26495 2018-07-20 20:08:15 +00:00
issue26616.go cmd/compile: restore original assignment error messages 2021-09-23 19:41:41 +00:00
issue26855.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue27143.go cmd/compile: prevent overflow in walkinrange 2018-08-26 21:52:27 +00:00
issue27201.go cmd/compile: when merging instructions, prefer line number of faulting insn 2019-01-14 22:41:33 +00:00
issue27232.go cmd/compile: reintroduce work-around for cyclic alias declarations 2018-11-05 20:30:19 +00:00
issue27267.go cmd/compile: reintroduce work-around for cyclic alias declarations 2018-11-05 20:30:19 +00:00
issue27278.go cmd/compile: count nil check as use in dead auto elim 2018-08-30 02:19:37 +00:00
issue27289.go cmd/compile: in prove, fix fence-post implications for unsigned domain 2018-08-31 08:54:38 +00:00
issue27356.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue27518a.go runtime: on a signal, set traceback address to a deferreturn call 2018-10-03 19:54:23 +00:00
issue27518b.go runtime: on a signal, set traceback address to a deferreturn call 2018-10-03 19:54:23 +00:00
issue27557.go [dev.typeparams] test: rename blank functions 2021-07-28 21:41:07 +00:00
issue27595.go cmd/compile: restore original assignment error messages 2021-09-23 19:41:41 +00:00
issue27695.go reflect: ensure correct scanning of return values 2018-09-29 20:25:24 +00:00
issue27695b.go reflect: ensure correct scanning of return values 2018-09-29 20:25:24 +00:00
issue27695c.go runtime: when using explicit argmap, also use arglen 2018-11-13 22:52:09 +00:00
issue27718.go test/fixedbugs: add more test cases to issue #27718 2019-08-28 02:29:42 +00:00
issue27732a.go test: remove -newescape from regress tests 2019-08-28 19:27:20 +00:00
issue27829.go cmd/compile: fix precedence order bug 2018-09-24 17:43:55 +00:00
issue27836.go test: add testcase for gccgo compile failure 2018-09-27 15:01:24 +00:00
issue27938.go cmd/compile: don't expand invalid embedded interface 2021-03-05 18:46:16 +00:00
issue27961.go cmd/compile: fix type of OffPtr in some optimization rules 2018-10-03 15:01:47 +00:00
issue28055.go cmd/compile: allow VARDEF at top level 2018-10-06 16:28:04 +00:00
issue28058.go cmd/compile: don't panic on invalid map key declarations 2018-10-15 22:11:26 +00:00
issue28078.go cmd/compile: don't convert non-Go-constants to OLITERALs 2018-11-27 01:21:41 +00:00
issue28079a.go cmd/compile: don't convert non-Go-constants to OLITERALs 2018-11-27 01:21:41 +00:00
issue28079b.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue28079c.go go/types, types2: use orig. compiler error message for a shift error 2022-01-19 20:54:49 +00:00
issue28085.go cmd/compile: unify duplicate const detection logic 2019-02-27 01:08:13 +00:00
issue28268.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue28390.go cmd/compile: convert arguments as needed 2018-10-28 18:22:36 +00:00
issue28390.out cmd/compile: convert arguments as needed 2018-10-28 18:22:36 +00:00
issue28430.go cmd/compile: convert arguments as needed 2018-10-28 18:22:36 +00:00
issue28445.go cmd/compile: don't combine load+op if the op has SymAddr arguments 2018-12-12 21:13:15 +00:00
issue28450.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue28601.go test: add test that gccgo failed to compile 2018-11-05 20:54:58 +00:00
issue28616.go cmd/compile: don't deadcode eliminate labels 2018-11-06 18:50:16 +00:00
issue28688.go [dev.typeparams] cmd/compile: make softfloat mode work with register ABI 2021-08-03 16:14:24 +00:00
issue28748.go reflect: special-case panic message when returning Value{} from MakeFunc function 2019-05-06 21:23:29 +00:00
issue28797.go cmd/compile: check for negative upper bound to IsSliceInBounds 2018-12-07 23:04:58 +00:00
issue28926.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue29013a.go cmd/compile: fix static initializer 2018-12-03 16:48:21 +00:00
issue29013b.go cmd/compile: fix static initializer 2018-12-03 16:48:21 +00:00
issue29190.go cmd/compile: fix length overflow when appending elements to a slice 2018-12-14 05:48:18 +00:00
issue29215.go cmd/compile: guard against loads with negative offset from readonly constants 2019-02-16 02:02:31 +00:00
issue29218.go cmd/compile: process blocks containing only dead values in fuseIf 2019-05-28 17:13:46 +00:00
issue29220.go cmd/compile: prevent double-walk of switch for OPRINT/OPRINTN 2018-12-17 22:49:21 +00:00
issue29264.go cmd/compile: increase nesting depth limit for type descriptors 2018-12-18 00:13:58 +00:00
issue29304.go cmd/compile: generate interface method expression wrapper for error.Error 2018-12-17 19:48:36 +00:00
issue29312.go cmd/compile: give every really deep type a unique name 2020-01-08 18:43:55 +00:00
issue29329.go test: disable issue 29329 test when cgo is not enabled 2018-12-29 14:18:11 +00:00
issue29350.go cmd/compile: fix ICE due to bad rune width 2018-12-20 19:35:04 +00:00
issue29362.go runtime: add test for go function argument scanning 2019-01-03 20:17:01 +00:00
issue29362b.go runtime: don't scan go'd function args past length of ptr bitmap 2019-01-03 23:37:42 +00:00
issue29389.go cmd/compile: fix line number for implicitly declared method expressions 2018-12-22 01:08:39 +00:00
issue29402.go cmd/compile: fix MIPS SGTconst-with-shift rules 2018-12-27 00:07:53 +00:00
issue29504.go cmd/compile: fix line numbers for index panics 2019-04-30 21:30:30 +00:00
issue29562.go cmd/compile: modify swt.go to skip repeated walks of switch 2019-01-04 21:51:37 +00:00
issue29610.go cmd/compile: separate data and function LSyms 2019-01-11 00:45:49 +00:00
issue29612.go test/fixedbugs: fix some tests will not be run 2019-05-23 01:39:41 +00:00
issue29735.go runtime: keep FuncForPC from crashing for PCs between functions 2019-01-14 23:37:39 +00:00
issue29855.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue29870.go cmd/compile: don't bother compiling functions named "_" 2019-01-22 22:06:11 +00:00
issue29870b.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue29919.go cmd/compile: hide init functions in tracebacks 2019-01-27 04:02:46 +00:00
issue29943.go cmd/compile: base PPC64 trunc rules on final type, not op type 2019-01-27 01:43:05 +00:00
issue30041.go reflect: eliminate write barrier for copying result in callReflect 2019-02-01 19:23:02 +00:00
issue30061.go cmd/compile: fix crash when memmove argument is not the right type 2019-02-01 23:43:09 +00:00
issue30085.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue30087.go [dev.typeparams] all: merge dev.regabi (07569da) into dev.typeparams 2020-12-28 00:39:17 -08:00
issue30116.go cmd/compile,runtime: provide index information on bounds check failure 2019-03-18 17:33:38 +00:00
issue30116.out cmd/compile,runtime: provide index information on bounds check failure 2019-03-18 17:33:38 +00:00
issue30116u.go cmd/compile,runtime: provide index information on bounds check failure 2019-03-18 17:33:38 +00:00
issue30116u.out cmd/compile,runtime: provide index information on bounds check failure 2019-03-18 17:33:38 +00:00
issue30243.go cmd/compile: don't mix internal float/complex constants of different precision 2019-02-19 21:05:17 +00:00
issue30430.go cmd/compile: fix false positives in isGoConst 2019-02-28 20:31:53 +00:00
issue30476.go cmd/compile: make KeepAlive work on stack object 2019-03-01 15:36:52 +00:00
issue30566a.go cmd/compile: fix ordering for short-circuiting ops 2019-03-06 20:04:07 +00:00
issue30566b.go cmd/compile: fix ordering for short-circuiting ops 2019-03-06 20:04:07 +00:00
issue30606.go reflect: fix StructOf GC programs 2019-03-06 20:22:14 +00:00
issue30606b.go reflect: fix more issues with StructOf GC programs 2019-03-07 00:06:12 +00:00
issue30659.go test: add new test for gccgo compilation problem 2019-03-12 00:04:59 +00:00
issue30679.go cmd/compile: add handling for new floating-point comparisons flags 2019-03-12 14:01:26 +00:00
issue30709.go cmd/compile: fix const declaration group broken with closure 2019-04-16 19:07:42 +00:00
issue30709.out cmd/compile: fix const declaration group broken with closure 2019-04-16 19:07:42 +00:00
issue30722.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue30862.go [dev.typeparams] cmd/compile: fix unified IR support for //go:nointerface 2021-07-26 18:43:12 +00:00
issue30898.go [dev.typeparams] cmd/compile: simplify inlining variadic calls 2021-05-26 23:50:45 +00:00
issue30907.go cmd/compile: fix importing rewritten f(g()) calls 2019-03-18 19:43:38 +00:00
issue30908.go test: fix fixedbugs/issue30908.go to work with no-opt builder 2019-03-27 17:53:36 +00:00
issue30956.go cmd/compile: fix literal struct interface {} lost passing by value 2019-03-27 17:28:06 +00:00
issue30956.out cmd/compile: fix literal struct interface {} lost passing by value 2019-03-27 17:28:06 +00:00
issue30977.go cmd/compile: copy volatile values before emitting write barrier call 2019-03-21 21:05:13 +00:00
issue31010.go cmd/compile: fix "append outside assignment" ICE 2019-03-26 02:20:09 +00:00
issue31053.go cmd/compile: improve error when setting unexported fields 2020-05-08 20:44:01 +00:00
issue31060.go cmd/compile: fix ICE from invalid operations on float/complex constants 2019-03-28 17:46:55 +00:00
issue31252.go cmd/compile: use correct package name for stack object symbol 2019-04-22 17:40:48 +00:00
issue31412a.go test: add testcases for gccgo bug 2019-04-11 20:17:26 +00:00
issue31412b.go test: add testcases for gccgo bug 2019-04-11 20:17:26 +00:00
issue31419.go runtime: set itab.fun[0] only on successful conversion 2019-04-11 18:59:57 +00:00
issue31546.go cmd/compile: don't initialize blank struct fields 2019-04-25 01:30:56 +00:00
issue31573.go [dev.typeparams] cmd/compile: move call logic from order.go to escape 2021-06-23 16:48:12 +00:00
issue31636.go runtime: revert init order changes 2019-05-22 11:07:00 +00:00
issue31636.out runtime: revert init order changes 2019-05-22 11:07:00 +00:00
issue31637.go test: new test for issue 31637 2019-04-24 19:55:13 +00:00
issue31747.go [dev.typeparams] cmd/compile: pass -lang flag value to new type checker 2021-02-04 22:21:42 +00:00
issue31777.go cmd/compile: fix maplit init panics for dynamic entry 2019-05-01 21:14:28 +00:00
issue31782.go cmd/compile: fix isStaticCompositeLiteral reports wrong for struct field 2019-05-03 03:49:11 +00:00
issue31782.out cmd/compile: fix isStaticCompositeLiteral reports wrong for struct field 2019-05-03 03:49:11 +00:00
issue31915.go cmd/compile: correct the argument type in SETXXstore -> MOVBstore rules on AMD64 2019-05-13 19:04:43 +00:00
issue31959.go cmd/compile: fix typecheck type alias makes wrong export symbol metadata 2019-05-21 17:44:21 +00:00
issue31959.out cmd/compile: fix typecheck type alias makes wrong export symbol metadata 2019-05-21 17:44:21 +00:00
issue31987.go cmd/compile: make sure to initialize static entries of slices 2019-05-14 16:36:38 +00:00
issue32133.go cmd/compile/internal/syntax: better scanner error messages 2020-03-05 00:40:38 +00:00
issue32175.go cmd/compile: fix capture-by-reference of return parameters 2019-05-22 18:43:09 +00:00
issue32175.out cmd/compile: fix capture-by-reference of return parameters 2019-05-22 18:43:09 +00:00
issue32187.go cmd/compile: ensure interface-to-concrete comparison panics when it should 2019-08-28 19:45:00 +00:00
issue32288.go cmd/compile: don't move nil checks across a VarDef 2019-05-31 21:52:17 +00:00
issue32347.go test: add a test for gccgo bug #32347 2019-05-31 19:57:27 +00:00
issue32454.go cmd/compile: optimize more pointer comparisons 2019-08-29 19:35:18 +00:00
issue32477.go cmd/link: fix deferreturn detector 2019-06-07 18:51:04 +00:00
issue32560.go cmd/compile: fix range analysis of small signed integers 2019-06-12 18:03:46 +00:00
issue32595.go cmd/compile: don't mark argument array as noalg 2019-06-25 21:30:39 +00:00
issue32680.go cmd/compile: add necessary operand to mergePoint in rewrite rules 2019-06-20 16:56:47 +00:00
issue32680.out cmd/compile: add necessary operand to mergePoint in rewrite rules 2019-06-20 16:56:47 +00:00
issue32680b.go test: add another test for issue 32680 2019-07-05 12:11:36 +00:00
issue32723.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue32778.go test: add testcase for gccgo compile failure 2019-07-02 16:34:55 +00:00
issue32901.go test: add a test for gccgo bug #32901 2019-07-03 14:12:22 +00:00
issue32922.go test: add new test case for gccgo compiler bug 2019-07-08 13:20:23 +00:00
issue32959.go cmd/compile: fix unsafeValue handles OLSH/ORSH wrong 2019-07-09 01:49:44 +00:00
issue33013.go test: new testcase for gccgo compiler bug 2019-07-10 18:26:53 +00:00
issue33020.go test: new testcase for gccgo bug 2019-07-18 11:34:23 +00:00
issue33020a.go test: new testcase for gollvm bug 2019-08-29 15:21:31 +00:00
issue33062.go test: add a test for gccgo bug #33062. 2019-07-11 22:30:42 +00:00
issue33158.go test: new testcase for gccgo bug 2019-07-18 17:24:59 +00:00
issue33219.go test: new testcase for gccgo compiler failure 2019-07-23 12:39:03 +00:00
issue33275.go internal/fmtsort: don't out-of-bounds panic if there's a race condition 2019-08-30 05:41:23 +00:00
issue33275_run.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue33308.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue33355.go cmd/compile: don't eliminate all registers when restricting to desired ones 2019-08-01 02:15:18 +00:00
issue33386.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue33438.go cmd/compile: fix crash on write barrier insertion 2019-08-02 19:35:37 +00:00
issue33460.go test: re-enable most go/tests that were disabled because of types2 differences 2022-01-11 02:26:58 +00:00
issue33555.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue33724.go cmd/compile: preserve statements in late nilcheckelim optimization 2019-10-15 16:43:44 +00:00
issue33739.go test: add test that failed with gccgo 2019-08-28 18:35:32 +00:00
issue33866.go test: add test that failed with gccgo 2019-09-06 12:11:17 +00:00
issue33903.go cmd/compile: handle infinite loops in shortcircuit pass 2019-08-29 17:41:49 +00:00
issue34123.go runtime: fix line number for faulting instructions 2019-11-08 21:05:17 +00:00
issue34329.go cmd/compile: require -lang=go1.14 for overlapping interfaces 2019-09-16 19:43:54 +00:00
issue34395.go cmd/link: produce valid binaries with large data section on wasm 2019-10-07 18:09:29 +00:00
issue34503.go test: add testcase for gccgo compiler buglet 2019-09-25 18:10:57 +00:00
issue34520.go test: add testcase for Issue 34520 2019-10-04 15:04:57 +00:00
issue34577.go test: new testcase for gccgo compiler problem 2019-10-09 17:26:20 +00:00
issue34723.go cmd/compile: improve write barrier removal 2019-10-07 17:19:13 +00:00
issue34966.go cmd/compile: fix -d=checkptr for named unsafe.Pointer types 2019-10-17 21:10:22 +00:00
issue34968.go cmd/compile: disable checkptr for //go:cgo_unsafe_args functions 2019-10-17 22:27:31 +00:00
issue35027.go cmd/compile: recognize reflect.{Slice,String}Header for -d=checkptr 2019-10-21 20:51:06 +00:00
issue35073.go cmd/compile: don't inline reflect.Value.UnsafeAddr/Pointer if enable checkptr 2020-04-01 06:12:05 +00:00
issue35157.go test: add test for fixed internal compiler error 2019-10-26 08:29:23 +00:00
issue35291.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue35518.go test: add another test case for #35518 2019-11-12 21:02:24 +00:00
issue35576.go cmd/compile: allow print/println(f()) where f() is multi-value 2020-02-22 03:34:22 +00:00
issue35576.out cmd/compile: allow print/println(f()) where f() is multi-value 2020-02-22 03:34:22 +00:00
issue35586.go test: new test for gollvm compiler crash bug 2019-11-18 21:19:53 +00:00
issue35652.go cmd/compile: try harder to not use an empty src.XPos for a bogus line 2019-11-22 03:06:22 +00:00
issue35739.go test: add test that fails with gofrontend 2020-10-13 22:50:26 +00:00
issue36085.go test: add a test for gccgo compiler bug of missing type descriptor 2019-12-11 19:48:39 +00:00
issue36259.go cmd/compile: avoid memmove -> SSA move rewrite when size is negative 2020-02-24 20:23:14 +00:00
issue36437.go test: recognize and use gc build tag 2020-12-18 00:10:44 +00:00
issue36516.go test: disable test for #36516 when cgo is not enabled 2020-01-19 20:36:10 +00:00
issue36705.go test: skip fixedbugs/issue36705 on Windows 2021-03-25 02:50:11 +00:00
issue36723.go cmd/compile: on PPC64, fold offset into some loads/stores only when offset is 4-aligned 2020-01-27 16:13:58 +00:00
issue37246.go cmd/compile: add test for issue 37246 2020-05-14 15:18:29 +00:00
issue37513.go runtime: print instruction bytes when reporting a SIGILL 2020-03-02 18:46:06 +00:00
issue37716.go runtime: make typehash match compiler generated hashes exactly 2020-03-10 16:26:59 +00:00
issue37753.go cmd/compile: use only bit patterns in isNonNegative 2020-03-09 20:19:25 +00:00
issue37837.go cmd/compile: support inlining of type switches 2020-11-06 20:49:11 +00:00
issue37975.go cmd/compile: make isSmallMakeSlice checks slice cap only 2020-03-31 21:51:51 +00:00
issue38093.go runtime: fix race condition between timer and event handler 2020-05-31 18:35:04 +00:00
issue38117.go [dev.typeparams] cmd/compile/internal/types2: adjusted more error messages for compiler 2020-12-09 23:59:57 +00:00
issue38125.go test: add test that gccgo failed to compile 2020-08-28 23:43:22 +00:00
issue38356.go cmd/compile: fix incorrect block for s390x Select1 op 2020-04-14 19:01:47 +00:00
issue38359.go cmd/compile: prevent constant folding of +/- when result is NaN 2020-04-10 19:32:41 +00:00
issue38496.go test: add test for nil check / bounds check compiler confusion 2020-04-17 04:26:54 +00:00
issue38690.go cmd/compile: do not emit code for discardable blank fields 2020-05-06 04:34:54 +00:00
issue38698.go test: add test for issue 38698 2021-02-22 20:00:00 +00:00
issue38745.go [dev.typeparams] all: merge dev.regabi into dev.typeparams 2020-12-22 17:50:13 +00:00
issue38746.go cmd/compile: restrict bit test rewrite rules 2020-05-05 15:41:37 +00:00
issue38905.go cmd/compile: another fix initializing blank fields in struct literal 2020-08-15 03:09:21 +00:00
issue38916.go cmd/compile: fix tuple selector bug in CSE pass 2020-05-14 08:07:52 +00:00
issue39292.go cmd/compile: use clearer error message for stuct literal 2020-09-12 08:31:49 +00:00
issue39459.go cmd/compile: remove check that Zero's arg has the correct base type 2020-06-25 15:59:48 +00:00
issue39472.go cmd/compile: always tighten and de-duplicate tuple selectors 2020-06-10 14:55:29 +00:00
issue39505.go cmd/compile: Install testcases for flag constant Ops 2020-08-28 16:40:32 +00:00
issue39505b.go cmd/compile: Install testcases for flag constant Ops 2020-08-28 16:40:32 +00:00
issue39541.go reflect: zero stack slots before writing to them with write barriers 2020-06-19 02:11:35 +00:00
issue39651.go cmd/compile: mark s390x int <-> float conversions as clobbering flags 2020-06-18 16:36:16 +00:00
issue40152.go test: add test for conversion of untyped bool to interface 2020-08-15 01:43:18 +00:00
issue40252.go test: add test case that caused gccgo undefined symbol reference 2020-08-15 00:23:28 +00:00
issue40367.go cmd/compile: don't addLocalInductiveFacts if there is no direct edge from if block to phi block 2020-07-30 17:23:11 +00:00
issue40629.go cmd/compile: fix live variable computation for deferreturn 2020-08-14 21:49:36 +00:00
issue40746.go cmd/compile: correct type of CvtBoolToUint8 values 2020-08-13 22:59:31 +00:00
issue40917.go cmd/compile: fix checkptr handling of &^ 2020-08-20 17:48:29 +00:00
issue40954.go cmd/cgo: use go:notinheap for anonymous structs 2020-09-16 17:26:46 +00:00
issue41239.go runtime: use old capacity to decide on append growth regime 2020-09-25 03:59:54 +00:00
issue41247.go cmd/compile: match Go 1.17 compiler error messages more closely 2021-11-12 23:07:01 +00:00
issue41440.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue41500.go [dev.typeparams] cmd/compile: make types2 report better error for invalid untyped operation 2021-06-17 02:30:22 +00:00
issue41575.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue41635.go cmd/compile: change mustHeapAlloc to return a reason why 2020-10-03 13:02:20 +00:00
issue41680.go cmd/compile: fix type checking of "make" arguments 2020-09-28 20:54:13 +00:00
issue41736.go cmd/compile: correct leaf type when "selecting" singleton register-sized struct 2020-10-06 15:37:42 +00:00
issue41780.go cmd/compile: avoid applying ARM CMP->CMN rewrite in unsigned context 2020-10-06 01:14:39 +00:00
issue41872.go cmd/compile: fix incorrect comparison folding 2020-10-08 20:35:54 +00:00
issue42032.go cmd/compile: fix storeType to handle pointers to go:notinheap types 2020-10-27 21:28:53 +00:00
issue42058a.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue42058b.go test: recognize gofrontend error messages 2020-12-15 02:35:59 +00:00
issue42075.go cmd/compile: fix ICE in reporting of invalid recursive types 2020-10-19 21:30:43 +00:00
issue42076.go cmd/compile, runtime: store pointers to go:notinheap types indirectly 2020-10-27 21:29:13 +00:00
issue42284.go cmd/compile: fix reassignVisitor 2020-10-30 19:30:44 +00:00
issue42401.go cmd/compile: make sure linkname'd symbol is non-package 2020-11-09 16:09:16 +00:00
issue42568.go cmd/compile: fix load of interface{}-typed OpIData in expand_calls 2020-11-14 17:24:37 +00:00
issue42587.go cmd/compile: mask SLL,SRL,SRAconst shift amount 2020-11-16 08:22:10 +00:00
issue42686.go test: switch fieldtrack test to use GOEXPERIMENT 2021-03-18 21:27:21 +00:00
issue42703.go cmd/compile: fix miscompilation during inlining 2020-11-18 22:24:21 +00:00
issue42727.go cmd/compile: allow loading single field of typed-interface{} OpIData 2020-11-20 17:31:50 +00:00
issue42753.go cmd/compile: add test for 42753 2020-11-21 16:46:05 +00:00
issue42784.go cmd/compile: set OpLoad argument type interface{} correctly 2020-11-24 03:06:15 +00:00
issue42790.go go/types: fix incorrect string(int) conversion (regression) 2020-11-24 00:50:11 +00:00
issue42876.go cmd/compile: do not assume TST and TEQ set V on arm 2020-12-01 22:59:34 +00:00
issue42944.go cmd/compile: make sure address of offset(SP) is rematerializeable 2020-12-03 21:34:39 +00:00
issue43099.go cmd/compile: don't constant fold divide by zero 2020-12-10 03:18:00 +00:00
issue43111.go cmd/compile: fix select statement evaluation order corner case 2020-12-11 22:02:02 +00:00
issue43112.go cmd/compile: set correct type for OpIData 2020-12-14 03:21:35 +00:00
issue43164.go [dev.regabi] cmd/compile: use ir.Ident for imported identifiers 2020-12-15 07:53:10 +00:00
issue43167.go [dev.regabi] cmd/compile: use ir.Ident for imported identifiers 2020-12-15 07:53:10 +00:00
issue43292.go cmd/compile: recognize reassignments involving receives 2020-12-20 09:43:29 +00:00
issue43384.go [dev.regabi] cmd/compile: fix defined-pointer method call check 2020-12-30 04:38:20 +00:00
issue43428.go [dev.regabi] cmd/compile: fix printing of method expressions 2020-12-31 05:52:09 +00:00
issue43444.go [dev.regabi] cmd/compile: fix package-initialization order 2021-01-01 10:52:33 +00:00
issue43444.out [dev.regabi] cmd/compile: fix package-initialization order 2021-01-01 10:52:33 +00:00
issue43479.go [dev.regabi] cmd/compile: fix re-export of parameters 2021-01-04 10:30:08 +00:00
issue43480.go [dev.regabi] cmd/compile: fix ICE due to large uint64 constants 2021-01-04 10:30:07 +00:00
issue43551.go cmd/compile: fix late expand_calls leaf type for OpStructSelect/OpArraySelect 2021-01-07 19:31:03 +00:00
issue43570.go cmd/compile: don't short-circuit copies whose source is volatile 2021-01-08 05:00:06 +00:00
issue43619.go cmd/compile: fix wrong complement for arm64 floating-point comparisons 2021-01-14 17:23:11 +00:00
issue43633.go [dev.regabi] cmd/compile: stop using Vargen for import/export 2021-01-12 03:15:18 +00:00
issue43677.go [dev.regabi] cmd/compile: fix ICE when initializing blank vars 2021-01-14 00:14:28 +00:00
issue43701.go [dev.regabi] cmd/compile: don't promote Byval CaptureVars if Addrtaken 2021-01-15 16:13:04 +00:00
issue43762.go [dev.typeparams] cmd/compile: make types2 report better error for invalid untyped operation 2021-06-17 02:30:22 +00:00
issue43835.go [dev.regabi] all: merge master (bf0f7c9) into dev.regabi 2021-01-25 16:14:35 -08:00
issue43908.go [dev.typeparams] go/constant: in ToFloat, convert to rational numbers, not floats 2021-01-25 23:44:22 +00:00
issue43962.go [dev.regabi] go/types: must not import a package called "init" 2021-02-09 14:00:14 +00:00
issue44266.go test: add test for findTypeLoop with symbols from other packages 2021-02-23 04:10:09 +00:00
issue44325.go cmd/compile: fix check to avoid creating new closure function when typechecking inline body 2021-02-19 19:28:53 +00:00
issue44330.go cmd/compile: import empty closure function correctly 2021-03-01 20:59:43 +00:00
issue44335.go cmd/compile: fix import of functions of multiple nested closure 2021-02-23 01:53:51 +00:00
issue44344.go cmd/compile: fix buglet in inlined info abstract function dwarf-gen 2021-02-19 14:46:21 +00:00
issue44355.go cmd/compile: declare inlined result params early for empty returns 2021-02-25 19:57:49 +00:00
issue44370.go cmd/compile: fix missing descend in Addrtaken for closures. 2021-02-26 02:11:50 +00:00
issue44378.go cmd/compile: fix panic in DWARF-gen handling obfuscated code 2021-02-21 02:25:26 +00:00
issue44383.go test: add test that caused a gofrontend internal error 2021-03-11 17:20:58 +00:00
issue44432.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue44465.go cmd/compile: reject some rare looping CFGs in shortcircuit 2021-02-22 20:27:09 +00:00
issue44732.go cmd/compile: fix width not calculated for imported type 2021-03-08 19:43:19 +00:00
issue44739.go cmd/compile/internal: improve handling of DS form offsets on ppc64x 2021-03-10 19:33:23 +00:00
issue44823.go cmd/compile: match Aux and AuxInt explicitly in store combining rule 2021-03-05 22:14:48 +00:00
issue44830.go cmd/compile: fix wrong package path for unsafe.Pointer 2021-04-27 01:16:39 +00:00
issue45045.go runtime: overwrite existing keys for mapassign_faststr variant 2021-03-28 03:27:04 +00:00
issue45175.go cmd/compile: disable shortcircuit optimization for intertwined phi values 2021-03-24 17:54:03 +00:00
issue45242.go cmd/compile: fix long RMW bit operations on AMD64 2021-03-26 19:40:37 +00:00
issue45258.go [dev.typeparams] test: rename blank functions 2021-07-28 21:41:07 +00:00
issue45323.go cmd/compile: fix bug in phiopt pass 2021-04-02 05:24:14 +00:00
issue45344.go cmd/compile: in expand calls, preserve pointer store type but decompose aggregate args 2021-04-02 00:45:56 +00:00
issue45359.go cmd/compile: fix bug of conditional instructions on arm64 2021-04-07 02:05:55 +00:00
issue45503.go cmd/compile: fix importing of method expressions 2021-04-14 04:02:01 +00:00
issue45606.go cmd/compile: set correct Defn for inlined vars 2021-04-23 05:10:41 +00:00
issue45665.go cmd/compile: allow export/import OSLICE2ARRPTR 2021-04-21 09:07:09 +00:00
issue45693.go cmd/compile: keep call's args in elim dead auto pass 2021-04-22 16:38:37 +00:00
issue45706.go cmd/compile: generalize fix for lvalue-init evaluation 2021-04-23 20:57:54 +00:00
issue45743.go cmd/compile: workaround inlining of closures with type switches 2021-04-26 21:27:41 +00:00
issue45804.go cmd/compile: fix typechecking logical operators panic with non-boolean operand 2021-04-28 00:49:58 +00:00
issue45851.go cmd/compile: make the stack allocator more careful about register args. 2021-05-03 17:46:12 +00:00
issue45913.go cmd/compile: make typecheckaste correctly report invalid use of "..." 2021-05-03 15:03:57 +00:00
issue45947.go cmd/compile: do not substitute OGOTO inside a closure when inlining 2021-05-05 18:03:32 +00:00
issue45948.go cmd/compile: handle degenerate entry blocks in -N debug gen 2021-05-05 01:47:58 +00:00
issue46234.go test: apply GO_TEST_TIMEOUT_SCALE scaling to test timeouts 2022-02-07 12:32:51 +00:00
issue46304.go cmd/compile: revert CL/316890 2021-05-22 00:51:17 +00:00
issue46386.go cmd/compile: use t.AllMethods when sorting typesByString 2021-06-08 12:17:50 +00:00
issue46525.go cmd/compile,go/types: restrict use of unsafe.{Add,Slice} to go1.17 or newer 2021-06-04 01:31:23 +00:00
issue46556.go [dev.typeparams] cmd/compile: allow nil Syms in Sym.Less 2021-06-03 20:52:22 +00:00
issue46653.go cmd/compile: make map.zero symbol content-addressable 2021-06-09 02:18:34 +00:00
issue46720.go cmd/compile: allow ir.OSLICE2ARRPTR in mayCall 2021-06-13 05:50:15 +00:00
issue46725.go cmd/compile: rewrite a, b = f() to use temporaries when type not identical 2021-06-14 07:12:37 +00:00
issue46749.go [dev.typeparams] cmd/compile: make types2 report better error for invalid untyped operation 2021-06-17 02:30:22 +00:00
issue46903.go [dev.typeparams] cmd/compile: generate wrappers within unified IR 2021-06-25 05:00:20 +00:00
issue46907.go cmd/compile: fix wrong type in SSA generation for OSLICE2ARRPTR 2021-06-24 18:58:27 +00:00
issue46938.go cmd/compile: fix checkptr false positive for (*[Big]T)(ptr)[:n:n] pattern 2021-08-25 01:57:42 +00:00
issue46957.go cmd/compile/internal/types2: report types for mismatched call and return statements 2021-11-24 20:57:46 +00:00
issue47068.go cmd/compile: do not mark arrays used for map initialization noalg 2021-08-23 19:49:23 +00:00
issue47087.go cmd/compile: remove special-casing of blank in types.sconv{,2} 2021-07-07 22:29:01 +00:00
issue47131.go test: add test case that caused a gofrontend compiler crash 2021-08-13 20:47:06 +00:00
issue47185.go cmd/{compile,link}: fix bug in map.zero handling 2021-07-19 13:27:46 +00:00
issue47201.go cmd/compile: fix lookup package of redeclared dot import symbol 2021-07-15 17:35:20 +00:00
issue47227.go [dev.typeparams] test: add regression test for go/defer wrapper 2021-07-21 00:01:12 +00:00
issue47317.go cmd/compile: do not change field offset in ABI analysis 2021-07-22 20:47:59 +00:00
issue47712.go cmd/compile: fix panic with dead hidden closures 2021-08-16 18:20:12 +00:00
issue47771.go test: add test case that gofrontend miscompiled 2021-08-25 03:12:43 +00:00
issue47928.go cmd/compile: change irgen to generate exprs/stmts after decls processed 2021-08-24 18:02:21 +00:00
issue48026.go cmd/compile: fix offset-generator for storeOneLoad 2021-08-28 17:05:43 +00:00
issue48033.go cmd/compile: workaround inlining of closures with range statements 2021-09-02 12:49:05 +00:00
issue48088.go cmd/compile: fix method expression lookup during import 2021-09-01 02:16:30 +00:00
issue48092.go cmd/compile: use the zero value for results of impossible indexing 2021-08-31 21:49:48 +00:00
issue48097.go cmd/compile: fix irgen mis-handling invalid function declaration 2021-09-01 19:51:25 +00:00
issue48230.go cmd/compile: fix irgen reports wrong error message for misuse of //go:embed 2021-10-15 01:35:56 +00:00
issue48289.go cmd/compile: fix case where init info of OAS node is dropped 2021-09-09 19:17:02 +00:00
issue48301.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue48357.go reflect: fix _faststr optimization 2021-09-13 18:38:15 +00:00
issue48459.go cmd/compile: fix missing markHiddenClosureDead in deadcode pass 2021-09-19 02:43:09 +00:00
issue48471.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue48473.go cmd/compile: fix simplification rules on arm/arm64 2021-09-20 16:27:53 +00:00
issue48476.go cmd/compile: ensure constant shift amounts are in range for arm 2021-09-20 16:26:30 +00:00
issue48536.go cmd/compile: fix unsafe.Add with small-size offsets operands 2021-09-23 00:14:22 +00:00
issue48558.go cmd/compile: restore original assignment error messages 2021-09-23 19:41:41 +00:00
issue48784.go test/fixedbugs: fix issue48784.go to pass with -G=0 2021-10-07 18:58:33 +00:00
issue48834.go cmd/compile, go/types: restore 'too many return values' error for func with no results 2022-01-18 21:43:02 +00:00
issue48835.go cmd/compile/internal/types2: report types for mismatched call and return statements 2021-11-24 20:57:46 +00:00
issue48898.go runtime: do not add open defer entry above a started open defer entry 2021-10-29 23:15:00 +00:00
issue48898.out runtime: do not add open defer entry above a started open defer entry 2021-10-29 23:15:00 +00:00
issue48916.go cmd/compile: do not reuse dead value in expand_calls pass 2021-10-12 18:00:16 +00:00
issue49003.go cmd/compile: make for loops with range statements not terminating 2021-10-15 19:54:44 +00:00
issue49005a.go cmd/compile, types2: avoid confusing follow-on error in invalid type assertion 2021-10-17 04:27:13 +00:00
issue49005b.go cmd/compile, types2: better error message for invalid type assertion 2021-10-19 17:01:35 +00:00
issue49016.go cmd/compile: fix crawling of embeddable types during inline 2021-10-20 17:26:58 +00:00
issue49029.go cmd/compile: prevent compiling closures more than once 2021-10-23 06:36:16 +00:00
issue49094.go cmd/compile: only look for struct type when crawling inline body 2021-10-22 00:57:18 +00:00
issue49100.go cmd/compile: fix inlining of labeled for loops 2021-10-21 19:08:43 +00:00
issue49100.out cmd/compile: fix inlining of labeled for loops 2021-10-21 19:08:43 +00:00
issue49100b.go cmd/compile: allow inlining of ORANGE 2021-10-28 14:25:03 +00:00
issue49100b.out cmd/compile: allow inlining of ORANGE 2021-10-28 14:25:03 +00:00
issue49110.go reflect: skip duplicate check in StructOf when the name of a field is "_" 2021-10-27 21:35:48 +00:00
issue49122.go cmd/compile: fix fuse pass to do CFG surgery correctly 2021-10-23 20:23:35 +00:00
issue49143.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue49145.go cmd/compile: fix inlining labeled switch statements 2021-10-25 16:07:11 +00:00
issue49145.out cmd/compile: fix inlining labeled switch statements 2021-10-25 16:07:11 +00:00
issue49240.go cmd/compile: fix rewriting slice literal call argument 2021-11-02 16:19:45 +00:00
issue49249.go cmd/compile: fix missing update source type in storeArgOrLoad 2021-11-04 02:12:52 +00:00
issue49282.go cmd/compile: avoid adding LECall to the entry block when has opendefers 2021-11-06 13:10:06 +00:00
issue49368.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue49378.go cmd/compile: only update source type when processing struct/array 2021-11-05 16:35:00 +00:00
issue49512.go test: add test that was miscompiled by gccgo 2021-11-11 04:02:33 +00:00
issue49592.go cmd/compile/internal/types2: add a check for nil reason in assignableTo 2021-11-15 19:24:28 +00:00
issue49611.go cmd/compile: prevent irgen crashing for empty local declaration stmt 2021-11-16 15:38:59 +00:00
issue49619.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue49665.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue49665.out cmd/compile: handle any as alias like byte and rune 2021-11-19 22:35:28 +00:00
issue49767.go cmd/compile: report channel size errors correctly for -G=3 2021-12-02 20:49:56 +00:00
issue49814.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue50169.go cmd/compile: correct type identity comparison with "any" 2021-12-15 20:26:03 +00:00
issue50190.go cmd/compile: unique LinkString for renamed, embedded fields 2022-01-13 21:37:29 +00:00
issue50372.go all: avoid use of cmd/compile -G flag in tests 2022-03-01 19:45:34 +00:00
issue50439.go test: add test of incorrect gofrontend error 2022-01-06 19:21:12 +00:00
issue50671.go cmd/compile: don't elide extension for LoadReg to FP register on MIPS64 2022-01-19 15:45:58 +00:00
issue50854.go cmd/compile: remove incorrect arm,arm64 CMP->CMN transformations 2022-01-27 19:52:52 +00:00
issue51101.go cmd/compile: correct type of pointer difference on RISCV64 2022-02-14 23:08:44 +00:00
issue51401.go cmd/compile: use AutogeneratedPos for method value wrapper 2022-03-01 21:27:42 +00:00
issue51437.go go/types, types2: fix scoping for iteration variables declared by range clause 2022-03-03 16:02:44 +00:00
issue51531.go cmd/compile/internal/types2: more consistently print "check go.mod" if language version < 1.18 2022-03-08 16:50:57 +00:00