Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(767)

Issue 115080: X64: Serialization fixed to use intptr_t/Address where needed. (Closed)

Created:
11 years, 7 months ago by Lasse Reichstein
Modified:
9 years, 6 months ago
CC:
v8-dev
Visibility:
Public.

Description

X64: Serialization fixed to use intptr_t/Address where needed.

Patch Set 1 #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+39 lines, -25 lines) Patch
M src/serialize.h View 1 chunk +6 lines, -0 lines 0 comments Download
M src/serialize.cc View 9 chunks +33 lines, -25 lines 1 comment Download

Messages

Total messages: 3 (0 generated)
Lasse Reichstein
Review of serialization fixups.
11 years, 7 months ago (2009-05-07 11:34:36 UTC) #1
Dean McNamee
I don't really know this code, so I just looked for anything obvious. There were ...
11 years, 7 months ago (2009-05-07 11:39:18 UTC) #2
Kasper Lund
11 years, 7 months ago (2009-05-07 11:48:54 UTC) #3
LGTM.

http://codereview.chromium.org/115080/diff/1/2
File src/serialize.cc (right):

http://codereview.chromium.org/115080/diff/1/2#newcode733
Line 733: return entry == NULL ? -1 :
I would put ? and : on separate lines like this:

  return entry == NULL
      ? -1
      : ....;

Powered by Google App Engine
This is Rietveld 408576698