diff options
author | Russ Cox <rsc@golang.org> | 2009-09-30 13:47:15 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-09-30 13:47:15 -0700 |
commit | 872a8a09080aee0bb54eddf8cbc3d57a61aec6ab (patch) | |
tree | 8e798c970bfa78770ae32e343c2b5807dcbbb2da /src/cmd/cgo/ast.go | |
parent | cea1e9d746c5013b6566fac3a06f817626fbcae1 (diff) | |
download | golang-872a8a09080aee0bb54eddf8cbc3d57a61aec6ab.tar.gz |
cgo working on linux/386
R=r
DELTA=70 (47 added, 4 deleted, 19 changed)
OCL=35167
CL=35171
Diffstat (limited to 'src/cmd/cgo/ast.go')
-rw-r--r-- | src/cmd/cgo/ast.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/cgo/ast.go b/src/cmd/cgo/ast.go index 29fe55240..9b122676c 100644 --- a/src/cmd/cgo/ast.go +++ b/src/cmd/cgo/ast.go @@ -35,6 +35,7 @@ type Prog struct { Typedef map[string]ast.Expr; Vardef map[string]*Type; Funcdef map[string]*FuncType; + PtrSize int64; } // A Type collects information about a type in both the C and Go worlds. |