File tree 3 files changed +0
-10
lines changed
3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ func TestTableGroupCount(t *testing.T) {
50
50
var testCases = []struct {
51
51
n int // n is the number of map elements
52
52
escape mapCase // expected values for escaping map
53
- // TODO(go.dev/issue/54766): implement stack allocated maps
54
53
}{
55
54
{
56
55
n : - (1 << 30 ),
Original file line number Diff line number Diff line change @@ -674,10 +674,6 @@ func TestIgnoreBogusMapHint(t *testing.T) {
674
674
var testNonEscapingMapVariable int = 8
675
675
676
676
func TestNonEscapingMap (t * testing.T ) {
677
- if goexperiment .SwissMap {
678
- t .Skip ("TODO(go.dev/issue/54766): implement stack allocated maps" )
679
- }
680
-
681
677
n := testing .AllocsPerRun (1000 , func () {
682
678
m := map [int ]int {}
683
679
m [0 ] = 0
Original file line number Diff line number Diff line change 4
4
// Use of this source code is governed by a BSD-style
5
5
// license that can be found in the LICENSE file.
6
6
7
- // TODO(#54766): Temporarily disable for swissmap, which have fast variants
8
- // disabled. This test expects fast variants.
9
- //
10
- //go:build !goexperiment.swissmap
11
-
12
7
package codegen
13
8
14
9
// This file contains code generation tests related to the handling of
You can’t perform that action at this time.
0 commit comments