You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cpu_gccgo_s390x.go 1.0KB

12345678910111213141516171819202122
  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. package cpu
  6. // haveAsmFunctions reports whether the other functions in this file can
  7. // be safely called.
  8. func haveAsmFunctions() bool { return false }
  9. // TODO(mundaym): the following feature detection functions are currently
  10. // stubs. See https://golang.org/cl/162887 for how to fix this.
  11. // They are likely to be expensive to call so the results should be cached.
  12. func stfle() facilityList { panic("not implemented for gccgo") }
  13. func kmQuery() queryResult { panic("not implemented for gccgo") }
  14. func kmcQuery() queryResult { panic("not implemented for gccgo") }
  15. func kmctrQuery() queryResult { panic("not implemented for gccgo") }
  16. func kmaQuery() queryResult { panic("not implemented for gccgo") }
  17. func kimdQuery() queryResult { panic("not implemented for gccgo") }
  18. func klmdQuery() queryResult { panic("not implemented for gccgo") }