Title: [160175] trunk/Source/_javascript_Core
Revision
160175
Author
[email protected]
Date
2013-12-05 08:27:21 -0800 (Thu, 05 Dec 2013)

Log Message

Fix _javascript_Core build if cloop is enabled after r160094
https://bugs.webkit.org/show_bug.cgi?id=125292

Patch by Laszlo Vidacs <[email protected]> on 2013-12-05
Reviewed by Michael Saboff.

Move ProtoCallFrame outside the JIT guard.

* jit/JITCode.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (160174 => 160175)


--- trunk/Source/_javascript_Core/ChangeLog	2013-12-05 14:50:57 UTC (rev 160174)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-12-05 16:27:21 UTC (rev 160175)
@@ -1,3 +1,14 @@
+2013-12-05  Laszlo Vidacs  <[email protected]>
+
+        Fix _javascript_Core build if cloop is enabled after r160094
+        https://bugs.webkit.org/show_bug.cgi?id=125292
+
+        Reviewed by Michael Saboff.
+
+        Move ProtoCallFrame outside the JIT guard.
+
+        * jit/JITCode.h:
+
 2013-12-04  Filip Pizlo  <[email protected]>
 
         Fold constant typed arrays

Modified: trunk/Source/_javascript_Core/jit/JITCode.h (160174 => 160175)


--- trunk/Source/_javascript_Core/jit/JITCode.h	2013-12-05 14:50:57 UTC (rev 160174)
+++ trunk/Source/_javascript_Core/jit/JITCode.h	2013-12-05 16:27:21 UTC (rev 160175)
@@ -46,10 +46,11 @@
 class JITCode;
 }
 
+struct ProtoCallFrame;
+
 #if ENABLE(JIT)
 class VM;
 class JSStack;
-struct ProtoCallFrame;
 #endif
 
 class JITCode : public ThreadSafeRefCounted<JITCode> {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to