Title: [119768] trunk/Source/_javascript_Core
Revision
119768
Author
[email protected]
Date
2012-06-07 16:24:14 -0700 (Thu, 07 Jun 2012)

Log Message

Unreviewed. Build fix for !ENABLE(JIT) after r119441.

* interpreter/Interpreter.cpp:
(JSC::Interpreter::privateExecute):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (119767 => 119768)


--- trunk/Source/_javascript_Core/ChangeLog	2012-06-07 23:18:38 UTC (rev 119767)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-06-07 23:24:14 UTC (rev 119768)
@@ -1,3 +1,10 @@
+2012-06-07  Patrick Gansterer  <[email protected]>
+
+        Unreviewed. Build fix for !ENABLE(JIT) after r119441.
+
+        * interpreter/Interpreter.cpp:
+        (JSC::Interpreter::privateExecute):
+
 2012-06-07  Andy Wingo  <[email protected]>
 
         Unreviewed build fix after r119593.

Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (119767 => 119768)


--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2012-06-07 23:18:38 UTC (rev 119767)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp	2012-06-07 23:24:14 UTC (rev 119768)
@@ -5216,7 +5216,7 @@
         */
         int function = vPC[1].u.operand;
 
-        if (Profiler* profiler = globalData.enabledProfiler())
+        if (Profiler* profiler = globalData->enabledProfiler())
             profiler->willExecute(callFrame, callFrame->r(function).jsValue());
 
         vPC += OPCODE_LENGTH(op_profile_will_call);
@@ -5230,7 +5230,7 @@
         */
         int function = vPC[1].u.operand;
 
-        if (Profiler* profiler = globalData.enabledProfiler())
+        if (Profiler* profiler = globalData->enabledProfiler())
             profiler->didExecute(callFrame, callFrame->r(function).jsValue());
 
         vPC += OPCODE_LENGTH(op_profile_did_call);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to