This commit is contained in:
Li Jie
2024-09-22 08:46:37 +08:00
parent 7b6fe0159f
commit 62beb73aa2

View File

@@ -592,20 +592,21 @@ type aPackage struct {
abi abi.Builder
Prog Program
di diBuilder
cu CompilationUnit
di diBuilder
cu CompilationUnit
glbDbgVars map[Expr]bool
vars map[string]Global
fns map[string]Function
stubs map[string]Function
pyobjs map[string]PyObjRef
pymods map[string]Global
strs map[string]llvm.Value
named map[types.Type]Expr
afterb unsafe.Pointer
patch func(types.Type) types.Type
fnlink func(string) string
vars map[string]Global
fns map[string]Function
stubs map[string]Function
pyobjs map[string]PyObjRef
pymods map[string]Global
strs map[string]llvm.Value
named map[types.Type]Expr
afterb unsafe.Pointer
patch func(types.Type) types.Type
fnlink func(string) string
iRoutine int
}