Title: [271586] trunk/Source/_javascript_Core
- Revision
- 271586
- Author
- [email protected]
- Date
- 2021-01-18 13:49:43 -0800 (Mon, 18 Jan 2021)
Log Message
[AppleWin 32bit] LLInt C Loop: LowLevelInterpreter.cpp(90,7): error C2653: 'WebConfig': is not a class or namespace name
https://bugs.webkit.org/show_bug.cgi?id=220405
Reviewed by Fujii Hironori.
Add a missing #if ENABLE(UNIFIED_AND_FREEZABLE_CONFIG_RECORD).
* llint/LowLevelInterpreter.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (271585 => 271586)
--- trunk/Source/_javascript_Core/ChangeLog 2021-01-18 21:11:57 UTC (rev 271585)
+++ trunk/Source/_javascript_Core/ChangeLog 2021-01-18 21:49:43 UTC (rev 271586)
@@ -1,3 +1,14 @@
+2021-01-18 Mark Lam <[email protected]>
+
+ [AppleWin 32bit] LLInt C Loop: LowLevelInterpreter.cpp(90,7): error C2653: 'WebConfig': is not a class or namespace name
+ https://bugs.webkit.org/show_bug.cgi?id=220405
+
+ Reviewed by Fujii Hironori.
+
+ Add a missing #if ENABLE(UNIFIED_AND_FREEZABLE_CONFIG_RECORD).
+
+ * llint/LowLevelInterpreter.cpp:
+
2021-01-18 Michael Catanzaro <[email protected]>
[GTK] Multilib conflicts in gir files
Modified: trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp (271585 => 271586)
--- trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp 2021-01-18 21:11:57 UTC (rev 271585)
+++ trunk/Source/_javascript_Core/llint/LowLevelInterpreter.cpp 2021-01-18 21:49:43 UTC (rev 271586)
@@ -87,7 +87,9 @@
// Define the opcode dispatch mechanism when using the C loop:
//
+#if ENABLE(UNIFIED_AND_FREEZABLE_CONFIG_RECORD)
using WebConfig::g_config;
+#endif
// These are for building a C Loop interpreter:
#define OFFLINE_ASM_BEGIN
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes