Title: [168340] trunk/Source/_javascript_Core
- Revision
- 168340
- Author
- [email protected]
- Date
- 2014-05-05 18:22:02 -0700 (Mon, 05 May 2014)
Log Message
Fix debug build.
* runtime/JSCellInlines.h:
(JSC::JSCell::fastGetOwnProperty):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (168339 => 168340)
--- trunk/Source/_javascript_Core/ChangeLog 2014-05-06 01:14:02 UTC (rev 168339)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-05-06 01:22:02 UTC (rev 168340)
@@ -1,5 +1,12 @@
2014-05-05 Andreas Kling <[email protected]>
+ Fix debug build.
+
+ * runtime/JSCellInlines.h:
+ (JSC::JSCell::fastGetOwnProperty):
+
+2014-05-05 Andreas Kling <[email protected]>
+
Optimize GetByVal when subscript is a rope string.
<https://webkit.org/b/132590>
Modified: trunk/Source/_javascript_Core/runtime/JSCellInlines.h (168339 => 168340)
--- trunk/Source/_javascript_Core/runtime/JSCellInlines.h 2014-05-06 01:14:02 UTC (rev 168339)
+++ trunk/Source/_javascript_Core/runtime/JSCellInlines.h 2014-05-06 01:22:02 UTC (rev 168340)
@@ -215,7 +215,7 @@
// case by checking whether the hash has yet been set for this string.
ALWAYS_INLINE JSValue JSCell::fastGetOwnProperty(VM& vm, Structure& structure, const String& name)
{
- ASSERT(canUseFastGetOwnProperty(vm));
+ ASSERT(canUseFastGetOwnProperty(structure));
PropertyOffset offset = name.impl()->hasHash()
? structure.get(vm, Identifier(&vm, name))
: structure.get(vm, name);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes