Title: [252243] trunk/Source/_javascript_Core
Revision
252243
Author
ross.kirsl...@sony.com
Date
2019-11-08 10:37:53 -0800 (Fri, 08 Nov 2019)

Log Message

[PlayStation][JSC] Unreviewed build fix.

* shell/playstation/TestShell.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (252242 => 252243)


--- trunk/Source/_javascript_Core/ChangeLog	2019-11-08 18:24:23 UTC (rev 252242)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-11-08 18:37:53 UTC (rev 252243)
@@ -1,3 +1,9 @@
+2019-11-08  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        [PlayStation][JSC] Unreviewed build fix.
+
+        * shell/playstation/TestShell.cpp:
+
 2019-11-07  Mark Lam  <mark....@apple.com>
 
         Add a stack overflow check in Yarr::ByteCompiler::emitDisjunction().

Modified: trunk/Source/_javascript_Core/shell/playstation/TestShell.cpp (252242 => 252243)


--- trunk/Source/_javascript_Core/shell/playstation/TestShell.cpp	2019-11-08 18:24:23 UTC (rev 252242)
+++ trunk/Source/_javascript_Core/shell/playstation/TestShell.cpp	2019-11-08 18:37:53 UTC (rev 252243)
@@ -33,7 +33,7 @@
     WTF::initializeThreading();
 
     // Need to override and enable restricted options before we start parsing options below.
-    Options::enableRestrictedOptions(true);
+    Config::enableRestrictedOptions();
 
     // Initialize JSC before getting VM.
     WTF::initializeMainThread();
@@ -42,15 +42,15 @@
 #if ENABLE(WEBASSEMBLY)
     JSC::Wasm::enableFastMemory();
 #endif
-    Gigacage::disableDisablingPrimitiveGigacageIfShouldBeEnabled();
+    Gigacage::forbidDisablingPrimitiveGigacage();
 }
 
 extern "C" void preTest()
 {
-#define FOR_EACH_OPTION(type_, name_, defaultValue_, availability_, description_) \
+#define INIT_OPTION(type_, name_, defaultValue_, availability_, description_) \
     JSC::Options::name_() = JSC::Options::name_##Default();
-    JSC_OPTIONS(FOR_EACH_OPTION)
-#undef FOR_EACH_OPTION
+    FOR_EACH_JSC_OPTION(INIT_OPTION)
+#undef INIT_OPTION
 }
 
 extern "C" int runTest(int argc, char* argv[])
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to