Changeset 155494 in webkit
- Timestamp:
- Sep 10, 2013, 5:35:22 PM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r155487 r155494 1 2013-09-10 Mark Lam <mark.lam@apple.com> 2 3 Fix some indentation in Interpreter.cpp. 4 https://bugs.webkit.org/show_bug.cgi?id=121136. 5 6 Reviewed by Darin Adler. 7 8 * interpreter/Interpreter.cpp: 9 (JSC::UnwindFunctor::operator()): 10 1 11 2013-09-10 Mark Hahnenberg <mhahnenberg@apple.com> 2 12 -
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.