| commit | 484ba939d2b6848531ee64eae428721b9ae8fac0 | [log] [tgz] |
|---|---|---|
| author | Russ Cox <rsc@golang.org> | Fri Jan 09 00:17:46 2009 -0800 |
| committer | Russ Cox <rsc@golang.org> | Fri Jan 09 00:17:46 2009 -0800 |
| tree | 8294974762ab403e555ab47cfa23caed71af1549 | |
| parent | 51c3ac7e3fabaaeb551bb1d287c840d5208e5be4 [diff] [blame] |
update sys.reflect and sys.unreflect to accomodate the possibility of large objects in interface values. R=r DELTA=171 (97 added, 22 deleted, 52 changed) OCL=22382 CL=22382
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h index 687e4e0..ba210ae 100644 --- a/src/runtime/runtime.h +++ b/src/runtime/runtime.h
@@ -110,7 +110,7 @@ struct Iface { Itype *type; - void *data[1]; // could make bigger later, but must be in sync with compilers + void *data; }; struct Array