Changeset 208912 in webkit


Ignore:
Timestamp:
Nov 18, 2016 5:40:14 PM (7 years ago)
Author:
mark.lam@apple.com
Message:

Fix exception scope verification failures in ShadowChicken.cpp.
https://bugs.webkit.org/show_bug.cgi?id=164966

Reviewed by Saam Barati.

  • interpreter/ShadowChicken.cpp:

(JSC::ShadowChicken::functionsOnStack):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r208903 r208912  
     12016-11-18  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix exception scope verification failures in ShadowChicken.cpp.
     4        https://bugs.webkit.org/show_bug.cgi?id=164966
     5
     6        Reviewed by Saam Barati.
     7
     8        * interpreter/ShadowChicken.cpp:
     9        (JSC::ShadowChicken::functionsOnStack):
     10
    1112016-11-18  Jeremy Jones  <jeremyj@apple.com>
    212
  • trunk/Source/JavaScriptCore/interpreter/ShadowChicken.cpp

    r206386 r208912  
    445445        [&] (const Frame& frame) -> bool {
    446446            result->push(exec, frame.callee);
     447            RELEASE_ASSERT(!scope.exception()); // This function is only called from tests.
    447448            return true;
    448449        });
Note: See TracChangeset for help on using the changeset viewer.