Changeset 102811 in webkit for trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
- Timestamp:
- Dec 14, 2011, 12:51:14 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r102545 r102811 796 796 } 797 797 798 DFGHandler DFG_OPERATION lookupExceptionHandler(ExecState* exec, ReturnAddressPtr faultLocation)798 DFGHandlerEncoded DFG_OPERATION lookupExceptionHandler(ExecState* exec, ReturnAddressPtr faultLocation) 799 799 { 800 800 JSValue exceptionValue = exec->exception(); … … 806 806 void* catchRoutine = handler ? handler->nativeCode.executableAddress() : (void*)ctiOpThrowNotCaught; 807 807 ASSERT(catchRoutine); 808 return DFGHandler(exec, catchRoutine);808 return dfgHandlerEncoded(exec, catchRoutine); 809 809 } 810 810
Note:
See TracChangeset
for help on using the changeset viewer.