Title: [159643] trunk/Source/_javascript_Core
- Revision
- 159643
- Author
- [email protected]
- Date
- 2013-11-21 13:11:06 -0800 (Thu, 21 Nov 2013)
Log Message
Unreviewed, preemptive build fix.
* runtime/StackAlignment.h:
(JSC::stackAlignmentBytes):
(JSC::stackAlignmentRegisters):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (159642 => 159643)
--- trunk/Source/_javascript_Core/ChangeLog 2013-11-21 21:07:59 UTC (rev 159642)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-11-21 21:11:06 UTC (rev 159643)
@@ -1,5 +1,13 @@
2013-11-21 Filip Pizlo <[email protected]>
+ Unreviewed, preemptive build fix.
+
+ * runtime/StackAlignment.h:
+ (JSC::stackAlignmentBytes):
+ (JSC::stackAlignmentRegisters):
+
+2013-11-21 Filip Pizlo <[email protected]>
+
JSC should know what the stack alignment conventions are
https://bugs.webkit.org/show_bug.cgi?id=124736
Modified: trunk/Source/_javascript_Core/runtime/StackAlignment.h (159642 => 159643)
--- trunk/Source/_javascript_Core/runtime/StackAlignment.h 2013-11-21 21:07:59 UTC (rev 159642)
+++ trunk/Source/_javascript_Core/runtime/StackAlignment.h 2013-11-21 21:11:06 UTC (rev 159643)
@@ -31,9 +31,9 @@
namespace JSC {
// NB. Different platforms may have different requriements here. But 16 bytes is very common.
-unsigned stackAlignmentBytes() { return 16; }
+inline unsigned stackAlignmentBytes() { return 16; }
-unsigned stackAlignmentRegisters()
+inline unsigned stackAlignmentRegisters()
{
return stackAlignmentBytes() / sizeof(EncodedJSValue);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes