Title: [193423] trunk/Source/_javascript_Core
Revision
193423
Author
[email protected]
Date
2015-12-04 10:08:27 -0800 (Fri, 04 Dec 2015)

Log Message

Fix the !ENABLE(DFG_JIT) build after r190735
https://bugs.webkit.org/show_bug.cgi?id=151617

Reviewed by Filip Pizlo.

* jit/GCAwareJITStubRoutine.cpp:
(JSC::GCAwareJITStubRoutineWithExceptionHandler::observeZeroRefCount):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (193422 => 193423)


--- trunk/Source/_javascript_Core/ChangeLog	2015-12-04 17:11:14 UTC (rev 193422)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-12-04 18:08:27 UTC (rev 193423)
@@ -1,5 +1,15 @@
 2015-12-04  Csaba Osztrogonác  <[email protected]>
 
+        Fix the !ENABLE(DFG_JIT) build after r190735
+        https://bugs.webkit.org/show_bug.cgi?id=151617
+
+        Reviewed by Filip Pizlo.
+
+        * jit/GCAwareJITStubRoutine.cpp:
+        (JSC::GCAwareJITStubRoutineWithExceptionHandler::observeZeroRefCount):
+
+2015-12-04  Csaba Osztrogonác  <[email protected]>
+
         [cmake] Fix the B3 build after r192946
         https://bugs.webkit.org/show_bug.cgi?id=151857
 

Modified: trunk/Source/_javascript_Core/jit/GCAwareJITStubRoutine.cpp (193422 => 193423)


--- trunk/Source/_javascript_Core/jit/GCAwareJITStubRoutine.cpp	2015-12-04 17:11:14 UTC (rev 193422)
+++ trunk/Source/_javascript_Core/jit/GCAwareJITStubRoutine.cpp	2015-12-04 18:08:27 UTC (rev 193423)
@@ -115,11 +115,13 @@
 
 void GCAwareJITStubRoutineWithExceptionHandler::observeZeroRefCount()
 {
+#if ENABLE(DFG_JIT)
     if (m_codeBlockWithExceptionHandler) {
         m_codeBlockWithExceptionHandler->jitCode()->dfgCommon()->removeCallSiteIndex(m_exceptionHandlerCallSiteIndex);
         m_codeBlockWithExceptionHandler->removeExceptionHandlerForCallSite(m_exceptionHandlerCallSiteIndex);
         m_codeBlockWithExceptionHandler = nullptr;
     }
+#endif
 
     Base::observeZeroRefCount();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to