Title: [180613] trunk/Source/_javascript_Core
Revision
180613
Author
[email protected]
Date
2015-02-24 20:53:44 -0800 (Tue, 24 Feb 2015)

Log Message

Unreviewed build fix after r180602.

* heap/MachineStackMarker.h: Add missing 'no return'
declaration for Windows.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (180612 => 180613)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-25 04:53:43 UTC (rev 180612)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-25 04:53:44 UTC (rev 180613)
@@ -1,3 +1,10 @@
+2015-02-24  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix after r180602.
+
+        * heap/MachineStackMarker.h: Add missing 'no return'
+        declaration for Windows.
+
 2015-02-24  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r180599.

Modified: trunk/Source/_javascript_Core/heap/MachineStackMarker.h (180612 => 180613)


--- trunk/Source/_javascript_Core/heap/MachineStackMarker.h	2015-02-25 04:53:43 UTC (rev 180612)
+++ trunk/Source/_javascript_Core/heap/MachineStackMarker.h	2015-02-25 04:53:44 UTC (rev 180613)
@@ -41,7 +41,7 @@
         typedef jmp_buf RegisterState;
 
         MachineThreads();
-        ~MachineThreads();
+        NO_RETURN_DUE_TO_CRASH ~MachineThreads();
 
         void gatherConservativeRoots(ConservativeRoots&, JITStubRoutineSet&, CodeBlockSet&, void* stackCurrent, RegisterState& registers);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to