Title: [160003] trunk/Source/_javascript_Core
Revision
160003
Author
[email protected]
Date
2013-12-03 07:53:32 -0800 (Tue, 03 Dec 2013)

Log Message

Guard JIT include.
https://bugs.webkit.org/show_bug.cgi?id=125063

Patch by László Langó <[email protected]> on 2013-12-03
Reviewed by Filip Pizlo.

* llint/LLIntThunks.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (160002 => 160003)


--- trunk/Source/_javascript_Core/ChangeLog	2013-12-03 15:02:03 UTC (rev 160002)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-12-03 15:53:32 UTC (rev 160003)
@@ -1,3 +1,12 @@
+2013-12-03  László Langó  <[email protected]>
+
+        Guard JIT include.
+        https://bugs.webkit.org/show_bug.cgi?id=125063
+
+        Reviewed by Filip Pizlo.
+
+        * llint/LLIntThunks.cpp:
+
 2013-12-03  Julien Brianceau  <[email protected]>
 
         Merge mips and arm/sh4 paths in nativeForGenerator and privateCompileCTINativeCall functions.

Modified: trunk/Source/_javascript_Core/llint/LLIntThunks.cpp (160002 => 160003)


--- trunk/Source/_javascript_Core/llint/LLIntThunks.cpp	2013-12-03 15:02:03 UTC (rev 160002)
+++ trunk/Source/_javascript_Core/llint/LLIntThunks.cpp	2013-12-03 15:53:32 UTC (rev 160003)
@@ -26,7 +26,7 @@
 #include "config.h"
 #include "LLIntThunks.h"
 
-#if ENABLE(LLINT)
+#if ENABLE(LLINT) && ENABLE(JIT)
 
 #include "JSInterfaceJIT.h"
 #include "JSObject.h"
@@ -36,8 +36,6 @@
 
 namespace JSC { namespace LLInt {
 
-#if !ENABLE(LLINT_C_LOOP)
-
 static MacroAssemblerCodeRef generateThunkWithJumpTo(VM* vm, void (*target)(), const char *thunkKind)
 {
     JSInterfaceJIT jit(vm);
@@ -80,8 +78,6 @@
     return generateThunkWithJumpTo(vm, llint_program_prologue, "program");
 }
 
-#endif // !ENABLE(LLINT_C_LOOP)
-
 } } // namespace JSC::LLInt
 
-#endif // ENABLE(LLINT)
+#endif // ENABLE(LLINT) && ENABLE(JIT)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to