Description: The alignment tests should special case all 32-bit architectures,
 but mips/mipsle are missing.

--- a/go/analysis/passes/atomicalign/testdata/src/a/a.go
+++ b/go/analysis/passes/atomicalign/testdata/src/a/a.go
@@ -4,7 +4,7 @@
 
 // This file contains tests for the atomic alignment checker.
 
-// +build arm 386
+// +build arm 386 mips mipsle
 
 package testdata
 
--- a/go/analysis/passes/atomicalign/testdata/src/b/b.go
+++ b/go/analysis/passes/atomicalign/testdata/src/b/b.go
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// +build !arm,!386
+// +build !arm,!386,!mips,!mipsle
 
 package testdata
 
