Changeset 155494 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Sep 10, 2013, 5:35:22 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r155471 r155494 613 613 614 614 if (m_isTermination || !(m_handler = m_codeBlock->handlerForBytecodeOffset(bytecodeOffset))) { 615 if (!unwindCallFrame(visitor, m_exceptionValue)) { 616 if (LegacyProfiler* profiler = vm.enabledProfiler()) 617 profiler->exceptionUnwind(m_callFrame); 615 if (!unwindCallFrame(visitor, m_exceptionValue)) { 616 if (LegacyProfiler* profiler = vm.enabledProfiler()) 617 profiler->exceptionUnwind(m_callFrame); 618 return StackVisitor::Done; 619 } 620 } else 618 621 return StackVisitor::Done; 619 } 620 } else 621 return StackVisitor::Done; 622 623 return StackVisitor::Continue; 624 } 622 623 return StackVisitor::Continue; 624 } 625 625 626 626 private:
Note:
See TracChangeset
for help on using the changeset viewer.