github.com/sitano/gsysint@v0.0.0-20190607084937-69a4f3233e4e/g/stack.go (about)

     1  // Copyright 2009 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  
     5  package g
     6  
     7  // Information from the compiler about the layout of stack frames.
     8  type BitVector struct {
     9  	N        int32 // # of bits
    10  	ByteData *uint8
    11  }