Changeset 159276 in webkit for trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
- Timestamp:
- Nov 13, 2013, 11:39:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
r158751 r159276 31 31 #include "CodeBlock.h" 32 32 #include "Interpreter.h" 33 #include "JITStubs.h" 33 34 #include "JSCJSValue.h" 35 #include "LLIntThunks.h" 34 36 #include "VM.h" 35 37 #include "Operations.h" … … 50 52 catchRoutine = ExecutableBase::catchRoutineFor(handler, catchPCForInterpreter); 51 53 } else 52 catchRoutine = vm->getCTIStub(throwNotCaught).code().executableAddress();54 catchRoutine = FunctionPtr(LLInt::getCodePtr(returnFromJavaScript)).value(); 53 55 54 56 vm->callFrameForThrow = callFrame;
Note:
See TracChangeset
for help on using the changeset viewer.