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

Issue 188005: Added possibility of miscompiled regexp to verfifier. (Closed)

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

Description

Added possibility of miscompiled regexp to verfifier.

Patch Set 1 #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+11 lines, -4 lines) Patch
M src/objects.h View 1 chunk +6 lines, -2 lines 0 comments Download
M src/objects-debug.cc View 1 chunk +5 lines, -2 lines 2 comments Download

Messages

Total messages: 2 (0 generated)
Lasse Reichstein
QUick review.
11 years, 3 months ago (2009-09-02 08:07:00 UTC) #1
Mads Ager (chromium)
11 years, 3 months ago (2009-09-02 08:15:14 UTC) #2
LGTM

http://codereview.chromium.org/188005/diff/1/2
File src/objects-debug.cc (right):

http://codereview.chromium.org/188005/diff/1/2#newcode776
Line 776: || (is_native ? ascii_data->IsCode() : ascii_data->IsByteArray()));
Put the || on the previous line and indent:

ASSERT(ascii_data... ||
       (is_native ...));

http://codereview.chromium.org/188005/diff/1/2#newcode779
Line 779: || (is_native ? uc16_data->IsCode() : uc16_data->IsByteArray()));
Indentation as above.

Powered by Google App Engine
This is Rietveld 408576698