pkg/atomicbitops: support 32-bit GOARCH value "mipsle"

mips was supported, but mipsle had been forgotten.

Fixes google/gvisor#6804
This commit is contained in:
Brad Fitzpatrick 2021-11-01 08:22:07 -07:00
parent b822923b70
commit 2aa474e748
2 changed files with 4 additions and 4 deletions

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
//go:build arm || mips || 386 //go:build arm || mips || mipsle || 386
// +build arm mips 386 // +build arm mips mipsle 386
package atomicbitops package atomicbitops

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
//go:build !arm && !mips && !386 //go:build !arm && !mips && !mipsle && !386
// +build !arm,!mips,!386 // +build !arm,!mips,!mipsle,!386
package atomicbitops package atomicbitops