1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
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
|