Title: [227644] trunk/Source/_javascript_Core
- Revision
- 227644
- Author
- [email protected]
- Date
- 2018-01-25 16:41:39 -0800 (Thu, 25 Jan 2018)
Log Message
Gardening: fix 32-bit build after r227643.
https://bugs.webkit.org/show_bug.cgi?id=182086
Not reviewed.
* jit/AssemblyHelpers.cpp:
(JSC::AssemblyHelpers::emitDynamicPoisonOnLoadedType):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (227643 => 227644)
--- trunk/Source/_javascript_Core/ChangeLog 2018-01-26 00:05:57 UTC (rev 227643)
+++ trunk/Source/_javascript_Core/ChangeLog 2018-01-26 00:41:39 UTC (rev 227644)
@@ -1,3 +1,13 @@
+2018-01-25 Mark Lam <[email protected]>
+
+ Gardening: fix 32-bit build after r227643.
+ https://bugs.webkit.org/show_bug.cgi?id=182086
+
+ Not reviewed.
+
+ * jit/AssemblyHelpers.cpp:
+ (JSC::AssemblyHelpers::emitDynamicPoisonOnLoadedType):
+
2018-01-24 Filip Pizlo <[email protected]>
DirectArguments should protect itself using dynamic poisoning and precise index masking
Modified: trunk/Source/_javascript_Core/jit/AssemblyHelpers.cpp (227643 => 227644)
--- trunk/Source/_javascript_Core/jit/AssemblyHelpers.cpp 2018-01-26 00:05:57 UTC (rev 227643)
+++ trunk/Source/_javascript_Core/jit/AssemblyHelpers.cpp 2018-01-26 00:41:39 UTC (rev 227644)
@@ -1046,7 +1046,7 @@
emitDynamicPoison(base, actualType);
#else
UNUSED_PARAM(base);
- UNUSED_PARAM(actualValue);
+ UNUSED_PARAM(actualType);
UNUSED_PARAM(expectedType);
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes