]> Cypherpunks.ru repositories - gostls13.git/commitdiff
Revert "cmd/compile/internal: fix test error on loong64"
authorBryan Mills <bcmills@google.com>
Tue, 12 Apr 2022 02:53:29 +0000 (02:53 +0000)
committerGopher Robot <gobot@golang.org>
Tue, 12 Apr 2022 03:07:42 +0000 (03:07 +0000)
This reverts CL 367043.

Reason for revert: auto-submitted prematurely, breaking tests on most builders.

Change-Id: I6da319fb042b629bcd6f549be638497a357e7d28
Reviewed-on: https://go-review.googlesource.com/c/go/+/399795
Run-TryBot: Bryan Mills <bcmills@google.com>
Auto-Submit: Bryan Mills <bcmills@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>

src/cmd/compile/internal/logopt/logopt_test.go
src/cmd/compile/internal/test/inl_test.go

index 411319f9e9eff6e903b2b654b895df5116588f13..8d07a49cc0fd6041ccf8722193718c0e905d7afa 100644 (file)
@@ -155,7 +155,7 @@ func s15a8(x *[15]int64) [15]int64 {
                arches := []string{runtime.GOARCH}
                goos0 := runtime.GOOS
                if runtime.GOARCH == "amd64" { // Test many things with "linux" (wasm will get "js")
-                       arches = []string{"arm", "arm64", "386", "amd64", "mips", "mips64", "loong64", "ppc64le", "riscv64", "s390x", "wasm"}
+                       arches = []string{"arm", "arm64", "386", "amd64", "mips", "mips64", "ppc64le", "riscv64", "s390x", "wasm"}
                        goos0 = "linux"
                }
 
index 9e93cdd0c56a538d926c5cc18e57fbbd0d54cdf8..b10d37a17cfd0d242775b60ece9eaed8b30bfbb0 100644 (file)
@@ -163,10 +163,10 @@ func TestIntendedInlining(t *testing.T) {
                },
        }
 
-       if runtime.GOARCH != "386" && runtime.GOARCH != "loong64" && runtime.GOARCH != "mips64" && runtime.GOARCH != "mips64le" && runtime.GOARCH != "riscv64" {
+       if runtime.GOARCH != "386" && runtime.GOARCH != "mips64" && runtime.GOARCH != "mips64le" && runtime.GOARCH != "riscv64" {
                // nextFreeFast calls sys.Ctz64, which on 386 is implemented in asm and is not inlinable.
                // We currently don't have midstack inlining so nextFreeFast is also not inlinable on 386.
-               // On loong64, mips64x and riscv64, Ctz64 is not intrinsified and causes nextFreeFast too expensive
+               // On mips64x and riscv64, Ctz64 is not intrinsified and causes nextFreeFast too expensive
                // to inline (Issue 22239).
                want["runtime"] = append(want["runtime"], "nextFreeFast")
        }