Title: [95139] trunk/Source/_javascript_Core
- Revision
- 95139
- Author
- [email protected]
- Date
- 2011-09-14 16:55:44 -0700 (Wed, 14 Sep 2011)
Log Message
Unreviewed build fix for Interpreter.
* interpreter/Interpreter.cpp:
(JSC::Interpreter::privateExecute):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (95138 => 95139)
--- trunk/Source/_javascript_Core/ChangeLog 2011-09-14 23:44:05 UTC (rev 95138)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-09-14 23:55:44 UTC (rev 95139)
@@ -1,3 +1,10 @@
+2011-09-14 Filip Pizlo <[email protected]>
+
+ Unreviewed build fix for Interpreter.
+
+ * interpreter/Interpreter.cpp:
+ (JSC::Interpreter::privateExecute):
+
2011-09-14 Anders Carlsson <[email protected]>
Add wtf/threads and wtf/threads/win, so we can be sure that the EWS
Modified: trunk/Source/_javascript_Core/interpreter/Interpreter.cpp (95138 => 95139)
--- trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2011-09-14 23:44:05 UTC (rev 95138)
+++ trunk/Source/_javascript_Core/interpreter/Interpreter.cpp 2011-09-14 23:55:44 UTC (rev 95139)
@@ -3614,6 +3614,10 @@
vPC += target;
NEXT_INSTRUCTION();
}
+ DEFINE_OPCODE(op_loop_hint) {
+ // This is a no-op unless we intend on doing OSR from the interpreter.
+ NEXT_INSTRUCTION();
+ }
DEFINE_OPCODE(op_loop_if_true) {
/* loop_if_true cond(r) target(offset)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes