diff --git a/pkg/atomicbitops/aligned_32bit_unsafe.go b/pkg/atomicbitops/aligned_32bit_unsafe.go index 0e4765c48..a143c027d 100644 --- a/pkg/atomicbitops/aligned_32bit_unsafe.go +++ b/pkg/atomicbitops/aligned_32bit_unsafe.go @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build arm || mips || 386 -// +build arm mips 386 +//go:build arm || mips || mipsle || 386 +// +build arm mips mipsle 386 package atomicbitops diff --git a/pkg/atomicbitops/aligned_64bit.go b/pkg/atomicbitops/aligned_64bit.go index 2c421d920..634f0ed2c 100644 --- a/pkg/atomicbitops/aligned_64bit.go +++ b/pkg/atomicbitops/aligned_64bit.go @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build !arm && !mips && !386 -// +build !arm,!mips,!386 +//go:build !arm && !mips && !mipsle && !386 +// +build !arm,!mips,!mipsle,!386 package atomicbitops