1// asmcheck 2 3package codegen 4 5// Copyright 2020 The Go Authors. All rights reserved. 6// Use of this source code is governed by a BSD-style 7// license that can be found in the LICENSE file. 8 9func booliface() interface{} { 10 // amd64:`LEAQ\truntime.staticuint64s\+8\(SB\)` 11 return true 12} 13 14func smallint8iface() interface{} { 15 // amd64:`LEAQ\truntime.staticuint64s\+2024\(SB\)` 16 return int8(-3) 17} 18 19func smalluint8iface() interface{} { 20 // amd64:`LEAQ\truntime.staticuint64s\+24\(SB\)` 21 return uint8(3) 22} 23