diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-12-05 16:29:01 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-12-05 16:29:01 -0800 |
commit | 21d081fd7f83aa168ea0bef0870c7f1fed410a63 (patch) | |
tree | 23a04eef49364b1cbee204a87fd0904be2430c2e /deps/v8/src/zone.h | |
parent | e90623edc2befb06602ff8c3e01809ba0a21d593 (diff) | |
download | node-new-21d081fd7f83aa168ea0bef0870c7f1fed410a63.tar.gz |
Upgrade V8 to 3.7.12
Diffstat (limited to 'deps/v8/src/zone.h')
-rw-r--r-- | deps/v8/src/zone.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/src/zone.h b/deps/v8/src/zone.h index f60ac0d3ef..2ca3c4d369 100644 --- a/deps/v8/src/zone.h +++ b/deps/v8/src/zone.h @@ -86,7 +86,9 @@ class Zone { friend class Isolate; friend class ZoneScope; - // All pointers returned from New() have this alignment. + // All pointers returned from New() have this alignment. In addition, if the + // object being allocated has a size that is divisible by 8 then its alignment + // will be 8. static const int kAlignment = kPointerSize; // Never allocate segments smaller than this size in bytes. |