Title: [126294] trunk/Source/_javascript_Core
Revision
126294
Author
[email protected]
Date
2012-08-22 06:12:17 -0700 (Wed, 22 Aug 2012)

Log Message

Fix JSC build when DFG-JIT is disabled
https://bugs.webkit.org/show_bug.cgi?id=94694

Patch by Gabor Ballabas <[email protected]> on 2012-08-22
Reviewed by Csaba Osztrogonác.

Adding an appropriate guard for fixing the build.

* bytecode/ResolveGlobalStatus.cpp:
(JSC):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (126293 => 126294)


--- trunk/Source/_javascript_Core/ChangeLog	2012-08-22 12:50:08 UTC (rev 126293)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-08-22 13:12:17 UTC (rev 126294)
@@ -1,3 +1,15 @@
+2012-08-22  Gabor Ballabas  <[email protected]>
+
+        Fix JSC build when DFG-JIT is disabled
+        https://bugs.webkit.org/show_bug.cgi?id=94694
+
+        Reviewed by Csaba Osztrogonác.
+
+        Adding an appropriate guard for fixing the build.
+
+        * bytecode/ResolveGlobalStatus.cpp:
+        (JSC):
+
 2012-08-21  Mark Lam  <[email protected]>
 
         Introducing the VMInspector for VM debugging use.

Modified: trunk/Source/_javascript_Core/bytecode/ResolveGlobalStatus.cpp (126293 => 126294)


--- trunk/Source/_javascript_Core/bytecode/ResolveGlobalStatus.cpp	2012-08-22 12:50:08 UTC (rev 126293)
+++ trunk/Source/_javascript_Core/bytecode/ResolveGlobalStatus.cpp	2012-08-22 13:12:17 UTC (rev 126294)
@@ -32,7 +32,7 @@
 
 namespace JSC {
 
-#if ENABLE(LLINT) || ENABLE(JIT)
+#if ENABLE(LLINT) || (ENABLE(JIT) && ENABLE(VALUE_PROFILER))
 static ResolveGlobalStatus computeForStructure(CodeBlock* codeBlock, Structure* structure, Identifier& identifier)
 {
     unsigned attributesIgnored;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to