Skip to content
4 changes: 2 additions & 2 deletions internal/abi/kind.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !go1.26
// +build !go1.26
//go:build !go1.26 && !llgo
// +build !go1.26,!llgo

package abi

Expand Down
4 changes: 2 additions & 2 deletions internal/abi/kind_go126.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build go1.26
// +build go1.26
//go:build go1.26 && !llgo
// +build go1.26,!llgo

package abi

Expand Down
2 changes: 1 addition & 1 deletion internal/abi/map_noswiss.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !go1.24 && !goexperiment.swissmap
//go:build !go1.24 && !goexperiment.swissmap && !llgo

package abi

Expand Down
2 changes: 1 addition & 1 deletion internal/abi/map_swiss.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build (go1.24 && goexperiment.swissmap) || go1.25
//go:build ((go1.24 && goexperiment.swissmap) || go1.25) && !llgo

package abi

Expand Down
2 changes: 2 additions & 0 deletions internal/abi/type.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build !llgo

package abi

import (
Expand Down
Loading
Loading