diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-11-02 15:15:30 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-11-02 15:15:30 -0700 |
commit | a8eb1895bbc4e1d41cdd621b8eca3f3e4912a446 (patch) | |
tree | 82beaa1733f531c9f342d74a44d49f3f07d17080 | |
parent | 88cf2e93e5ca3ce0f852a0e3dfb06099777c08c0 (diff) | |
parent | 2aa474e7488d28d0184b2a2fe808b1ff0f688a0a (diff) |
Merge pull request #6805 from bradfitz:bradfitz/mipsle
PiperOrigin-RevId: 407188968
-rw-r--r-- | pkg/atomicbitops/aligned_32bit_unsafe.go | 4 | ||||
-rw-r--r-- | pkg/atomicbitops/aligned_64bit.go | 4 |
2 files changed, 4 insertions, 4 deletions
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 |