Title: [97432] trunk/Source/_javascript_Core
Revision
97432
Author
[email protected]
Date
2011-10-13 18:01:45 -0700 (Thu, 13 Oct 2011)

Log Message

Rubber stamped Stephanie Lewis.
        
DFG_ENABLE() macro was always returning false.

* dfg/DFGNode.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (97431 => 97432)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-14 00:57:31 UTC (rev 97431)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-14 01:01:45 UTC (rev 97432)
@@ -1,3 +1,11 @@
+2011-10-13  Filip Pizlo  <[email protected]>
+
+        Rubber stamped Stephanie Lewis.
+        
+        DFG_ENABLE() macro was always returning false.
+
+        * dfg/DFGNode.h:
+
 2011-10-13  Gavin Barraclough  <[email protected]>
 
         Speculative build fix for !DFG builds.

Modified: trunk/Source/_javascript_Core/dfg/DFGNode.h (97431 => 97432)


--- trunk/Source/_javascript_Core/dfg/DFGNode.h	2011-10-14 00:57:31 UTC (rev 97431)
+++ trunk/Source/_javascript_Core/dfg/DFGNode.h	2011-10-14 01:01:45 UTC (rev 97432)
@@ -29,7 +29,7 @@
 #if ENABLE(DFG_JIT)
 
 /* DFG_ENABLE() - turn on a specific features in the DFG JIT */
-#define DFG_ENABLE(FEATURE) (defined DFG_ENABLE_##DFG_FEATURE && DFG_ENABLE_##DFG_FEATURE)
+#define DFG_ENABLE(DFG_FEATURE) (defined DFG_ENABLE_##DFG_FEATURE && DFG_ENABLE_##DFG_FEATURE)
 
 // Emit various logging information for debugging, including dumping the dataflow graphs.
 #define DFG_ENABLE_DEBUG_VERBOSE 0
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to