Title: [243367] trunk/Source/_javascript_Core
Revision
243367
Author
ysuz...@apple.com
Date
2019-03-22 00:39:47 -0700 (Fri, 22 Mar 2019)

Log Message

Unreviewed, build fix for Windows
https://bugs.webkit.org/show_bug.cgi?id=196122

* runtime/FunctionExecutable.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (243366 => 243367)


--- trunk/Source/_javascript_Core/ChangeLog	2019-03-22 07:28:07 UTC (rev 243366)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-03-22 07:39:47 UTC (rev 243367)
@@ -1,3 +1,10 @@
+2019-03-22  Yusuke Suzuki  <ysuz...@apple.com>
+
+        Unreviewed, build fix for Windows
+        https://bugs.webkit.org/show_bug.cgi?id=196122
+
+        * runtime/FunctionExecutable.cpp:
+
 2019-03-21  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] Shrink sizeof(FunctionExecutable) by 16bytes

Modified: trunk/Source/_javascript_Core/runtime/FunctionExecutable.cpp (243366 => 243367)


--- trunk/Source/_javascript_Core/runtime/FunctionExecutable.cpp	2019-03-22 07:28:07 UTC (rev 243366)
+++ trunk/Source/_javascript_Core/runtime/FunctionExecutable.cpp	2019-03-22 07:39:47 UTC (rev 243367)
@@ -42,8 +42,6 @@
 
 const ClassInfo FunctionExecutable::s_info = { "FunctionExecutable", &ScriptExecutable::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(FunctionExecutable) };
 
-static_assert(sizeof(FunctionExecutable) <= 128, "FunctionExecutable should fit in a 128-byte cell since it is so frequently allocated.");
-
 FunctionExecutable::FunctionExecutable(VM& vm, const SourceCode& source, UnlinkedFunctionExecutable* unlinkedExecutable, Intrinsic intrinsic)
     : ScriptExecutable(vm.functionExecutableStructure.get(), vm, source, unlinkedExecutable->isInStrictContext(), unlinkedExecutable->derivedContextType(), false, EvalContextType::None, intrinsic)
     , m_unlinkedExecutable(vm, this, unlinkedExecutable)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to