+2012-06-07 Patrick Gansterer <paroga@webkit.org>
+
+ Unreviewed. Build fix for !ENABLE(JIT) after r119441.
+
+ * interpreter/Interpreter.cpp:
+ (JSC::Interpreter::privateExecute):
+
2012-06-07 Andy Wingo <wingo@igalia.com>
Unreviewed build fix after r119593.
*/
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);
*/
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);