Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

cpu_gccgo_s390x.go 1.0KB

1234567891011121314151617181920212223
  1. // Copyright 2019 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build gccgo
  5. // +build gccgo
  6. package cpu
  7. // haveAsmFunctions reports whether the other functions in this file can
  8. // be safely called.
  9. func haveAsmFunctions() bool { return false }
  10. // TODO(mundaym): the following feature detection functions are currently
  11. // stubs. See https://golang.org/cl/162887 for how to fix this.
  12. // They are likely to be expensive to call so the results should be cached.
  13. func stfle() facilityList { panic("not implemented for gccgo") }
  14. func kmQuery() queryResult { panic("not implemented for gccgo") }
  15. func kmcQuery() queryResult { panic("not implemented for gccgo") }
  16. func kmctrQuery() queryResult { panic("not implemented for gccgo") }
  17. func kmaQuery() queryResult { panic("not implemented for gccgo") }
  18. func kimdQuery() queryResult { panic("not implemented for gccgo") }
  19. func klmdQuery() queryResult { panic("not implemented for gccgo") }