Changeset 55521 in webkit


Ignore:
Timestamp:
Mar 4, 2010 5:58:02 AM (14 years ago)
Author:
hamaji@chromium.org
Message:

2010-03-04 Shinichiro Hamaji <hamaji@chromium.org>

Unreviewed. Remove a non-ASCII character introduced in the following bug.

put_by_id does will incorrectly cache writes where a specific value exists, where at the point of caching the same value is being written.
https://bugs.webkit.org/show_bug.cgi?id=35537

  • runtime/JSObject.h: (JSC::JSObject::putDirectInternal):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r55520 r55521  
     12010-03-04  Shinichiro Hamaji  <hamaji@chromium.org>
     2
     3        Unreviewed. Remove a non-ASCII character introduced in the following bug.
     4
     5        put_by_id does will incorrectly cache writes where a specific value exists, where at the point of caching the same value is being written.
     6        https://bugs.webkit.org/show_bug.cgi?id=35537
     7
     8        * runtime/JSObject.h:
     9        (JSC::JSObject::putDirectInternal):
     10
    1112010-03-04  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
    212
  • trunk/JavaScriptCore/runtime/JSObject.h

    r55379 r55521  
    493493        // There are three possibilities here:
    494494        //  (1) There is an existing specific value set, and we're overwriting with *the same value*.
    495         //       * Do nothing no need to despecify, but that means we can't cache (a cached
     495        //       * Do nothing - no need to despecify, but that means we can't cache (a cached
    496496        //         put could write a different value). Leave the slot in an uncachable state.
    497497        //  (2) There is a specific value currently set, but we're writing a different value.
Note: See TracChangeset for help on using the changeset viewer.