Title: [157451] trunk/Source/_javascript_Core
Revision
157451
Author
[email protected]
Date
2013-10-15 10:01:10 -0700 (Tue, 15 Oct 2013)

Log Message

Fix broken C Loop LLINT build.
https://bugs.webkit.org/show_bug.cgi?id=122839.

Reviewed by Michael Saboff.

* dfg/DFGFlushedAt.cpp:
* jit/JITOperations.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (157450 => 157451)


--- trunk/Source/_javascript_Core/ChangeLog	2013-10-15 16:39:46 UTC (rev 157450)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-10-15 17:01:10 UTC (rev 157451)
@@ -1,3 +1,13 @@
+2013-10-15  Mark Lam  <[email protected]>
+
+        Fix broken C Loop LLINT build.
+        https://bugs.webkit.org/show_bug.cgi?id=122839.
+
+        Reviewed by Michael Saboff.
+
+        * dfg/DFGFlushedAt.cpp:
+        * jit/JITOperations.h:
+
 2013-10-14  Mark Lam  <[email protected]>
 
         Transition *switch* and *scope* JITStubs to JIT operations.

Modified: trunk/Source/_javascript_Core/dfg/DFGFlushedAt.cpp (157450 => 157451)


--- trunk/Source/_javascript_Core/dfg/DFGFlushedAt.cpp	2013-10-15 16:39:46 UTC (rev 157450)
+++ trunk/Source/_javascript_Core/dfg/DFGFlushedAt.cpp	2013-10-15 17:01:10 UTC (rev 157451)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "DFGFlushedAt.h"
 
+#if ENABLE(DFG_JIT)
+
 namespace JSC { namespace DFG {
 
 void FlushedAt::dump(PrintStream& out) const
@@ -43,4 +45,4 @@
 
 } } // namespace JSC::DFG
 
-
+#endif // ENABLE(DFG_JIT)

Modified: trunk/Source/_javascript_Core/jit/JITOperations.h (157450 => 157451)


--- trunk/Source/_javascript_Core/jit/JITOperations.h	2013-10-15 16:39:46 UTC (rev 157450)
+++ trunk/Source/_javascript_Core/jit/JITOperations.h	2013-10-15 17:01:10 UTC (rev 157451)
@@ -36,6 +36,8 @@
 
 namespace JSC {
 
+class ArrayAllocationProfile;
+
 #if CALLING_CONVENTION_IS_STDCALL
 #define JIT_OPERATION CDECL
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to