Title: [250949] trunk/Source/_javascript_Core
Revision
250949
Author
[email protected]
Date
2019-10-09 18:01:58 -0700 (Wed, 09 Oct 2019)

Log Message

Unreviewed. Try to fix build for Windows C_LOOP

* llint/LowLevelInterpreter.asm:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (250948 => 250949)


--- trunk/Source/_javascript_Core/ChangeLog	2019-10-10 00:55:10 UTC (rev 250948)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-10-10 01:01:58 UTC (rev 250949)
@@ -1,3 +1,9 @@
+2019-10-09  Saam Barati  <[email protected]>
+
+        Unreviewed. Try to fix build for Windows C_LOOP
+
+        * llint/LowLevelInterpreter.asm:
+
 2019-10-09  Yusuke Suzuki  <[email protected]>
 
         Unreviewed, roll out r250878

Modified: trunk/Source/_javascript_Core/llint/LowLevelInterpreter.asm (250948 => 250949)


--- trunk/Source/_javascript_Core/llint/LowLevelInterpreter.asm	2019-10-10 00:55:10 UTC (rev 250948)
+++ trunk/Source/_javascript_Core/llint/LowLevelInterpreter.asm	2019-10-10 01:01:58 UTC (rev 250949)
@@ -931,15 +931,21 @@
 
 macro defineOSRExitReturnLabel(opcodeName, size)
     macro defineNarrow()
-        _%opcodeName%_return_location:
+        if not C_LOOP_WIN
+            _%opcodeName%_return_location:
+        end
     end
 
     macro defineWide16()
-        _%opcodeName%_return_location_wide16:
+        if not C_LOOP_WIN
+            _%opcodeName%_return_location_wide16:
+        end
     end
 
     macro defineWide32()
-        _%opcodeName%_return_location_wide32:
+        if not C_LOOP_WIN
+            _%opcodeName%_return_location_wide32:
+        end
     end
 
     size(defineNarrow, defineWide16, defineWide32, macro (f) f() end)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to